OpenCV函数
东西北
机器视觉
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
RandArr 随机数填充数组
RandArr用随机数填充数组并更新 RNG 状态 void cvRandArr( CvRNG* rng, CvArr* arr, int dist_type, CvScalar param1, CvScalar param2 );rng 被 cvRNG 初始化的 RNG 状态. arr 输出数组 dist_type 分布类型:CV_RAND_UNI - 均匀分布 CV_RAN转载 2012-12-20 11:53:20 · 1933 阅读 · 0 评论 -
cvApproxPoly 多边形逼近轮廓
CVAPI(CvSeq*) cvApproxPoly( const void* src_seq, int header_size, CvMemStorage* storage, int method, double parameter,原创 2012-12-21 13:32:05 · 5693 阅读 · 0 评论 -
CvSeq 序列
CvSeq 内存存储器中可以存储的一种对象。定义如下:#define CV_TREE_NODE_FIELDS(node_type) \ int flags; /* micsellaneous flags */ \ int header_size; /* size原创 2012-12-21 11:36:49 · 1250 阅读 · 0 评论 -
CvTermCriteria 迭代终止规则
CvTermCriteria 迭代算法的终止准则 #define CV_TERMCRIT_ITER 1 #define CV_TERMCRIT_NUMBER CV_TERMCRIT_ITER #define CV_TERMCRIT_EPS 2 typedef struct CvTermCriteria { int type; /* CV_TERMCR转载 2012-12-20 13:45:45 · 8137 阅读 · 0 评论 -
CvMemStorage 内存储存器
CvMemStorage 内存储存器,双向链表,OpenCV以此统一管理动态内存。/* Creates new memory storage. block_size == 0 means that default, somewhat optimal size, is used (currently, it is 64K) */CVAPI(CvMemStorage*) c原创 2012-12-21 08:54:28 · 2902 阅读 · 0 评论 -
边缘检测函数 cvCanny
边缘检测函数cvCanny/* Runs canny edge detector */CVAPI(void) cvCanny( const CvArr* image, CvArr* edges, double threshold1, double threshold2, int aperture_size CV_DEFAULT(3) )原创 2013-01-04 14:18:18 · 944 阅读 · 0 评论 -
IplConvKernel 自定义核
typedef struct _IplConvKernel{ int nCols; int nRows; int anchorX; int anchorY; int *values; int nShiftR;}IplConvKernel; /* creates structuring element used原创 2012-12-23 00:00:18 · 1081 阅读 · 0 评论 -
自适应阈值 cvAdaptiveThreshold
void cvAdaptiveThreshold(const CvArr* src,CvArr* dst,double max_value,int adaptive_method=CV_ADAPTIVE_THRESH_MEAN_C,int threshold_type=CV_THRESH_BINARY,int block_size=3,double param1=5 )原创 2013-01-07 16:04:49 · 1001 阅读 · 0 评论
分享