
openCV API
wanglang3081
这个作者很懒,什么都没留下…
展开
-
threshold
Applies a fixed-level threshold to each array element.C++: double threshold(InputArraysrc, OutputArray dst, double thresh, doublemaxval, int type)Python:cv2.threshold(src, thresh, maxval转载 2013-12-21 16:52:23 · 1870 阅读 · 0 评论 -
erode
Erodes an image by using a specific structuring element.C++: void erode(InputArraysrc, OutputArray dst, InputArray kernel, Pointanchor=Point(-1,-1), int iterations=1, int borderType=BORDER_C转载 2013-12-22 21:15:51 · 1144 阅读 · 0 评论 -
cvtColor
Converts an image from one color space to another.C++: void cvtColor(InputArraysrc, OutputArray dst, int code, intdstCn=0 )Python:cv2.cvtColor(src, code[, dst[, dstCn]]) → dstC:转载 2013-12-22 13:19:22 · 14608 阅读 · 1 评论 -
dilate
Dilates an image by using a specific structuring element.C++: void dilate(InputArraysrc, OutputArray dst, InputArray kernel, Pointanchor=Point(-1,-1), int iterations=1, int borderType=BORDER转载 2013-12-22 21:16:22 · 1125 阅读 · 0 评论 -
meanShift
Finds an object on a back projection image.C++: int meanShift(InputArrayprobImage, Rect& window, TermCriteria criteria)Python:cv2.meanShift(probImage, window, criteria) → retval, window转载 2013-12-22 13:54:05 · 1159 阅读 · 0 评论 -
morphologyEx
Performs advanced morphological transformations.C++: void morphologyEx(InputArraysrc, OutputArray dst, int op, InputArraykernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=B转载 2013-12-22 21:15:19 · 5781 阅读 · 0 评论 -
Mat::create
Allocates new array data if needed.C++:void Mat::create(introws, int cols, int type)C++:void Mat::create(Sizesize, int type)C++: void Mat::create(intndims, const int* sizes, int转载 2013-12-22 08:59:10 · 8002 阅读 · 1 评论 -
Face Detection and Tracking Using the KLT Algorithm
http://cn.mathworks.com/examples/matlab-computer-vision/732-face-detection-and-tracking-using-the-klt-algorithmThis example shows how to automatically detect and track a face using feature points.转载 2015-02-28 20:32:58 · 3436 阅读 · 0 评论