creating a Random Number Generator object (RNG): RNG rng( 0xFFFFFFFF ); 创建并初始化随机数生成子 create a matrix initialized to zeros (which means that it will ap...
分类:
其他好文 时间:
2014-11-17 10:33:52
阅读次数:
350
Point It represents a 2D point, specified by its image coordinates and . We can define it as: Point pt;pt.x = 10;pt.y = 8; or Point pt = Point(10, 8);...
Brightness and contrast adjustments Two commonly used point processes are multiplication and addition with a constant: The parameters and are often ca...
分类:
其他好文 时间:
2014-11-16 21:24:27
阅读次数:
263
An interesting dyadic (two-input) operator is thelinear blend operator: #include #include #include using namespace cv; int main( int argc, char** argv...
分类:
其他好文 时间:
2014-11-16 21:23:44
阅读次数:
181
color space reduction divide the color space current value with a new input value to end up with fewer colors. For instance every value between zero a...
分类:
其他好文 时间:
2014-11-16 17:08:55
阅读次数:
169
Mask operations on matrices are quite simple. The idea is that we recalculate each pixels value in an image according to a mask matrix (also known as ...
分类:
其他好文 时间:
2014-11-16 17:07:47
阅读次数:
212
3种边缘检测算子灰度或结构等信息的突变位置是图像的边缘,图像的边缘有幅度和方向属性,沿边缘方向像素变化缓慢,垂直边缘方向像素变化剧烈。因此,边缘上的变化能通过梯度计算出来。一阶导数的梯度算子对于二维的图像,梯度定义为一个向量,Gx对于x方向的梯度,Gy对应y方向的梯度,向量的幅值本来是 mag(f)?=?(Gx2?+?Gy2)1/2,为简化计算,一般用mag(f)=|Gx|+|Gy|近似,幅值同时...
分类:
其他好文 时间:
2014-11-16 15:59:55
阅读次数:
1526
参考:
Single Image Haze Removal Using Dark Channel Prior CVPR...
分类:
其他好文 时间:
2014-11-16 14:47:30
阅读次数:
417
基于OpenCV和C++底层实现的高斯滤波、中值滤波、均值滤波...
分类:
其他好文 时间:
2014-11-16 10:44:14
阅读次数:
251
先上图,有图有真相,当课题重新回归到嵌入式搭载的老问题上时,我还一度各种担心,发现最新的A9板4412能用Android了,还想着偷懒买块现成的只做最顶层开发就好,结果找遍工业相机厂家没见到有提供Android驱动的,一了解才明白,Android驱动是基于linux驱动的貌似,于是乎,又尝试着回归到移植opencv到嵌入式linux的老路上来。
想当初,零linux基础的我对着借来的6410...
分类:
其他好文 时间:
2014-11-15 23:19:52
阅读次数:
452