
计算机视觉
l1905
这个作者很懒,什么都没留下…
展开
-
cvFindContours函数使用
CV_IMPL int cvFindContours( void* img, CvMemStorage* storage, CvSeq** firstContour, int cntHeaderSize, int mode, int method, CvPoint offset ) { CvContourScanner scanner = 0; CvSeq *转载 2012-10-29 09:04:39 · 1551 阅读 · 0 评论 -
opencv 中对一个像素的rgb值进行操作的几个常用小办法
You can access the Image pixels in many ways: 1. One using the Inbuilt macro 2. One using the pointer to the image data 3. Getting the raw data from the image. ==================================转载 2012-12-04 17:33:11 · 4169 阅读 · 0 评论 -
CImage与OpenCV兼容问题
CImage类和OpenCV中的某个类冲突,在配置了OpenCV后,如果创建CImage类,会有如下问题: error C2872: 'CvvImage' : ambiguous symbol could be 'c:\program files\opencv\otherlibs\highgui\highgui.h(438) : CvvImage' or 'd转载 2012-12-06 16:14:03 · 1468 阅读 · 0 评论 -
opencv----cvDilate()膨胀 cvErode()腐蚀函数
原文地址:http://blog.youkuaiyun.com/shandianling/article/details/6401486 void cvDilate( const CvArr* src, CvArr* dst, IplConvKernel* element=NULL, int iterations=1 ); void cvErode( const CvArr* src, CvA转载 2013-01-09 20:24:09 · 1962 阅读 · 0 评论