上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页
摘要: #include #include using namespace std; class String { public: String(const char *pdata); String(const String &rhs); String &operator = (const String &rhs); ~String(); private: ... 阅读全文
posted @ 2018-11-19 11:11 洛笔达 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1.赋值构造函数 右值引用 左值引用 m.u store data m store u cols rows and so on. 2. 拷贝构造函数 右值引用 左值引用 阅读全文
posted @ 2018-11-14 13:19 洛笔达 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: void yuv420_to_rgb24_sse3(uint8_t *yp, uint8_t *up, uint8_t *vp, int sy, int suv, int width, int height, uint8_t *rgb, int srgb) { //定义空间 __m128i y0r0, y0r1, u0, v0; __m128i y00r0, y0... 阅读全文
posted @ 2018-11-09 16:24 洛笔达 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 1. stack(栈) heap(堆) 和全局区 测试BGR转YUV 的表在stack 和 heap 2. 查找表 部分查找表 和3D查找表 速度比较 3. 查找表放在堆上和栈上的速度比较 4. BGR转YUV 使用三种加速方法的比较 TBB, 部分查表法, 3D查表法, SSE指令集,shared 阅读全文
posted @ 2018-11-07 13:53 洛笔达 阅读(838) 评论(0) 推荐(0) 编辑
摘要: parallel_for 阅读全文
posted @ 2018-11-06 10:57 洛笔达 阅读(341) 评论(0) 推荐(0) 编辑
摘要: // //_kernel : 形态学滤波的核 //anchor: 锚点再滤波核的位置 //iterations: 迭代次数 static void morphOp( int op, InputArray _src, OutputArray _dst, InputArray _kernel, Point ancho... 阅读全文
posted @ 2018-11-06 10:43 洛笔达 阅读(954) 评论(0) 推荐(0) 编辑
摘要: PS 笔记 PS调色人像步骤-by李涛: 色阶- 追饱和度- 色彩平衡- 中间调不动,阴影偏青,偏绿,偏蓝 , 高光偏红,偏一点蓝 锐化 1. 冷暖对比-by狼族摄影: 高光和阴影设置为偏青色,蓝色, 中间调反之, 保持亮度打钩 2. 素描效果 混合更改为颜色减淡 2. 去皱 新建图层-内容识别-内 阅读全文
posted @ 2018-10-21 18:06 洛笔达 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1. 编译X265,生成静态库 mkdir -p source/build && cd source/build && cmake -DENABLE_SHARED=OFF -DHIGH_BIT_DEPTH=ON -DCMAKE_INSTALL_PREFIX=./install .. && make 阅读全文
posted @ 2018-10-19 11:14 洛笔达 阅读(2308) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-10-11 17:47 洛笔达 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 1. 画函数 >> x = [-4:0.5:6] >> y = x.^2 - x - 6 >> plot(y) 阅读全文
posted @ 2018-10-10 18:25 洛笔达 阅读(131) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页