|
| void | cv::accumulate (InputArray src, InputOutputArray dst, InputArray mask=noArray()) |
| | 将图像添加到累加器图像中。
|
| |
| void | cv::accumulateProduct (InputArray src1, InputArray src2, InputOutputArray dst, InputArray mask=noArray()) |
| | 将两个输入图像的逐元素乘积添加到累加器图像中。
|
| |
| void | cv::accumulateSquare (InputArray src, InputOutputArray dst, InputArray mask=noArray()) |
| | 将源图像的平方添加到累加器图像中。
|
| |
| void | cv::accumulateWeighted (InputArray src, InputOutputArray dst, double alpha, InputArray mask=noArray()) |
| | 更新运行平均值。
|
| |
| void | cv::adaptiveThreshold (InputArray src, OutputArray dst, double maxValue, int adaptiveMethod, int thresholdType, int blockSize, double C) |
| | 对数组应用自适应阈值。
|
| |
| void | cv::applyColorMap (InputArray src, OutputArray dst, InputArray userColor) |
| | 在给定图像上应用用户自定义的颜色映射表。
|
| |
| void | cv::applyColorMap (InputArray src, OutputArray dst, int colormap) |
| | 在给定图像上应用等同于 GNU Octave/MATLAB 的颜色映射表。
|
| |
| void | cv::approxPolyDP (InputArray curve, OutputArray approxCurve, double epsilon, bool closed) |
| | 以指定的精度逼近多边形曲线。
|
| |
| void | cv::approxPolyN (InputArray curve, OutputArray approxCurve, int nsides, float epsilon_percentage=-1.0, bool ensure_convex=true) |
| | 以指定的精度和边数逼近凸包多边形。
|
| |
| double | cv::arcLength (InputArray curve, bool closed) |
| | 计算轮廓周长或曲线长度。
|
| |
| void | cv::arrowedLine (InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int line_type=8, int shift=0, double tipLength=0.1) |
| | 绘制一个从第一个点指向第二个点的箭头线段。
|
| |
| void | cv::bilateralFilter (InputArray src, OutputArray dst, int d, double sigmaColor, double sigmaSpace, int borderType=BORDER_DEFAULT) |
| | 对图像应用双边滤波。
|
| |
| void | cv::blendLinear (InputArray src1, InputArray src2, InputArray weights1, InputArray weights2, OutputArray dst) |
| |
| void | cv::blur (InputArray src, OutputArray dst, Size ksize, Point anchor=Point(-1,-1), int borderType=BORDER_DEFAULT) |
| | 使用归一化框式滤波(normalized box filter)模糊图像。
|
| |
| Rect | cv::boundingRect (InputArray array) |
| | 计算点集或灰度图像中非零像素的正外接矩形。
|
| |
| void | cv::boxFilter (InputArray src, OutputArray dst, int ddepth, Size ksize, Point anchor=Point(-1,-1), bool normalize=true, int borderType=BORDER_DEFAULT) |
| | 使用框式滤波模糊图像。
|
| |
| void | cv::boxPoints (RotatedRect box, OutputArray points) |
| | 查找旋转矩形的四个顶点。常用于绘制旋转矩形。
|
| |
| void | cv::buildPyramid (InputArray src, OutputArrayOfArrays dst, int maxlevel, int borderType=BORDER_DEFAULT) |
| | 构建图像的高斯金字塔。
|
| |
| void | cv::calcBackProject (const Mat *images, int nimages, const int *channels, const SparseMat &hist, OutputArray backProject, const float **ranges, double scale=1, bool uniform=true) |
| |
| void | cv::calcBackProject (const Mat *images, int nimages, const int *channels, InputArray hist, OutputArray backProject, const float **ranges, double scale=1, bool uniform=true) |
| | 计算直方图的反向投影。
|
| |
| void | cv::calcBackProject (InputArrayOfArrays images, const std::vector< int > &channels, InputArray hist, OutputArray dst, const std::vector< float > &ranges, double scale) |
| |
| void | cv::calcHist (const Mat *images, int nimages, const int *channels, InputArray mask, OutputArray hist, int dims, const int *histSize, const float **ranges, bool uniform=true, bool accumulate=false) |
| | 计算一组数组的直方图。
|
| |
| void | cv::calcHist (const Mat *images, int nimages, const int *channels, InputArray mask, SparseMat &hist, int dims, const int *histSize, const float **ranges, bool uniform=true, bool accumulate=false) |
| |
| void | cv::calcHist (InputArrayOfArrays images, const std::vector< int > &channels, InputArray mask, OutputArray hist, const std::vector< int > &histSize, const std::vector< float > &ranges, bool accumulate=false) |
| |
| void | cv::Canny (InputArray dx, InputArray dy, OutputArray edges, double threshold1, double threshold2, bool L2gradient=false) |
| |
| void | cv::Canny (InputArray image, OutputArray edges, double threshold1, double threshold2, int apertureSize=3, bool L2gradient=false) |
| | 使用 Canny 算法查找图像中的边缘 [50]。
|
| |
| void | cv::circle (InputOutputArray img, Point center, int radius, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| | 绘制一个圆。
|
| |
| bool | cv::clipLine (Rect imgRect, Point &pt1, Point &pt2) |
| |
| bool | cv::clipLine (Size imgSize, Point &pt1, Point &pt2) |
| | 根据图像矩形裁剪直线。
|
| |
| bool | cv::clipLine (Size2l imgSize, Point2l &pt1, Point2l &pt2) |
| |
| double | cv::compareHist (const SparseMat &H1, const SparseMat &H2, int method) |
| |
| double | cv::compareHist (InputArray H1, InputArray H2, int method) |
| | 比较两个直方图。
|
| |
| int | cv::connectedComponents (InputArray image, OutputArray labels, int connectivity, int ltype, int ccltype) |
| | 计算二值图像的连通域标记图像
|
| |
| int | cv::connectedComponents (InputArray image, OutputArray labels, int connectivity=8, int ltype=CV_32S) |
| |
| int | cv::connectedComponentsWithStats (InputArray image, OutputArray labels, OutputArray stats, OutputArray centroids, int connectivity, int ltype, int ccltype) |
| | 计算二值图像的连通域标记图像,并输出每个标记的统计信息
|
| |
| int | cv::connectedComponentsWithStats (InputArray image, OutputArray labels, OutputArray stats, OutputArray centroids, int connectivity=8, int ltype=CV_32S) |
| |
| double | cv::contourArea (InputArray contour, bool oriented=false) |
| | 计算轮廓面积。
|
| |
| void | cv::convertMaps (InputArray map1, InputArray map2, OutputArray dstmap1, OutputArray dstmap2, int dstmap1type, bool nninterpolation=false) |
| | 将图像变换映射从一种表示形式转换为另一种。
|
| |
| void | cv::convexHull (InputArray points, OutputArray hull, bool clockwise=false, bool returnPoints=true) |
| | 查找点集的凸包。
|
| |
| void | cv::convexityDefects (InputArray contour, InputArray convexhull, OutputArray convexityDefects) |
| | 查找轮廓的凸性缺陷。
|
| |
| void | cv::cornerEigenValsAndVecs (InputArray src, OutputArray dst, int blockSize, int ksize, int borderType=BORDER_DEFAULT) |
| | 计算用于角点检测的图像块的特征值和特征向量。
|
| |
| void | cv::cornerHarris (InputArray src, OutputArray dst, int blockSize, int ksize, double k, int borderType=BORDER_DEFAULT) |
| | Harris 角点检测器。
|
| |
| void | cv::cornerMinEigenVal (InputArray src, OutputArray dst, int blockSize, int ksize=3, int borderType=BORDER_DEFAULT) |
| | 计算用于角点检测的梯度矩阵的最小特征值。
|
| |
| void | cv::cornerSubPix (InputArray image, InputOutputArray corners, Size winSize, Size zeroZone, TermCriteria criteria) |
| | 优化角点位置(亚像素精度)。
|
| |
| Ptr< CLAHE > | cv::createCLAHE (double clipLimit=40.0, Size tileGridSize=Size(8, 8)) |
| | 创建一个指向 cv::CLAHE 类的智能指针并初始化。
|
| |
| Ptr< GeneralizedHoughBallard > | cv::createGeneralizedHoughBallard () |
| | 创建一个指向 cv::GeneralizedHoughBallard 类的智能指针并初始化。
|
| |
| Ptr< GeneralizedHoughGuil > | cv::createGeneralizedHoughGuil () |
| | 创建一个指向 cv::GeneralizedHoughGuil 类的智能指针并初始化。
|
| |
| void | cv::createHanningWindow (OutputArray dst, Size winSize, int type) |
| | 该函数计算二维 Hanning 窗系数。
|
| |
| Ptr< LineSegmentDetector > | cv::createLineSegmentDetector (int refine=LSD_REFINE_STD, double scale=0.8, double sigma_scale=0.6, double quant=2.0, double ang_th=22.5, double log_eps=0, double density_th=0.7, int n_bins=1024) |
| | 创建一个指向 LineSegmentDetector 对象的智能指针并初始化。
|
| |
| void | cv::cvtColor (InputArray src, OutputArray dst, int code, int dstCn=0, AlgorithmHint hint=cv::ALGO_HINT_DEFAULT) |
| | 将图像从一种颜色空间转换为另一种。
|
| |
| void | cv::cvtColorTwoPlane (InputArray src1, InputArray src2, OutputArray dst, int code, AlgorithmHint hint=cv::ALGO_HINT_DEFAULT) |
| | 将图像从一种颜色空间转换为另一种,源图像存储在两个平面(planes)中。
|
| |
| void | cv::demosaicing (InputArray src, OutputArray dst, int code, int dstCn=0) |
| | 所有去马赛克(demosaicing)处理的主函数
|
| |
| void | cv::dilate (InputArray src, OutputArray dst, InputArray kernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| | 使用特定的结构元素膨胀图像。
|
| |
| void | cv::distanceTransform (InputArray src, OutputArray dst, int distanceType, int maskSize, int dstType=CV_32F) |
| |
| void | cv::distanceTransform (InputArray src, OutputArray dst, OutputArray labels, int distanceType, int maskSize, int labelType=DIST_LABEL_CCOMP) |
| | 计算源图像中每个像素到最近零像素的距离。
|
| |
| void | cv::divSpectrums (InputArray a, InputArray b, OutputArray c, int flags, bool conjB=false) |
| | 执行第一个傅里叶频谱与第二个傅里叶频谱的逐元素除法。
|
| |
| void | cv::drawContours (InputOutputArray image, InputArrayOfArrays contours, int contourIdx, const Scalar &color, int thickness=1, int lineType=LINE_8, InputArray hierarchy=noArray(), int maxLevel=INT_MAX, Point offset=Point()) |
| | 绘制轮廓外框或填充轮廓。
|
| |
| void | cv::drawMarker (InputOutputArray img, Point position, const Scalar &color, int markerType=MARKER_CROSS, int markerSize=20, int thickness=1, int line_type=8) |
| | 在图像预定义位置绘制标记。
|
| |
| void | cv::ellipse (InputOutputArray img, const RotatedRect &box, const Scalar &color, int thickness=1, int lineType=LINE_8) |
| |
| void | cv::ellipse (InputOutputArray img, Point center, Size axes, double angle, double startAngle, double endAngle, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| | 绘制简单或加厚的椭圆弧,或填充椭圆扇区。
|
| |
| void | cv::ellipse2Poly (Point center, Size axes, int angle, int arcStart, int arcEnd, int delta, std::vector< Point > &pts) |
| | 用折线逼近椭圆弧。
|
| |
| void | cv::ellipse2Poly (Point2d center, Size2d axes, int angle, int arcStart, int arcEnd, int delta, std::vector< Point2d > &pts) |
| |
| float | cv::EMD (InputArray signature1, InputArray signature2, int distType, InputArray cost=noArray(), float *lowerBound=0, OutputArray flow=noArray()) |
| | 计算两个加权点配置之间的“最小工作量”距离(Earth Mover's Distance)。
|
| |
| void | cv::equalizeHist (InputArray src, OutputArray dst) |
| | 对灰度图像进行直方图均衡化。
|
| |
| void | cv::erode (InputArray src, OutputArray dst, InputArray kernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| | 使用特定的结构元素腐蚀图像。
|
| |
| void | cv::fillConvexPoly (InputOutputArray img, const Point *pts, int npts, const Scalar &color, int lineType=LINE_8, int shift=0) |
| |
| void | cv::fillConvexPoly (InputOutputArray img, InputArray points, const Scalar &color, int lineType=LINE_8, int shift=0) |
| | 填充凸多边形。
|
| |
| void | cv::fillPoly (InputOutputArray img, const Point **pts, const int *npts, int ncontours, const Scalar &color, int lineType=LINE_8, int shift=0, Point offset=Point()) |
| |
| void | cv::fillPoly (InputOutputArray img, InputArrayOfArrays pts, const Scalar &color, int lineType=LINE_8, int shift=0, Point offset=Point()) |
| | 填充一个或多个多边形包围的区域。
|
| |
| void | cv::filter2D (InputArray src, OutputArray dst, int ddepth, InputArray kernel, Point anchor=Point(-1,-1), double delta=0, int borderType=BORDER_DEFAULT) |
| | 将图像与卷积核进行卷积。
|
| |
| void | cv::findContours (InputArray image, OutputArrayOfArrays contours, int mode, int method, Point offset=Point()) |
| |
| void | cv::findContours (InputArray image, OutputArrayOfArrays contours, OutputArray hierarchy, int mode, int method, Point offset=Point()) |
| | 在二值图像中查找轮廓。
|
| |
| void | cv::findContoursLinkRuns (InputArray image, OutputArrayOfArrays contours) |
| | 这是一个重载的成员函数,为方便起见而提供。它与上述函数的区别仅在于所接受的参数不同。
|
| |
| void | cv::findContoursLinkRuns (InputArray image, OutputArrayOfArrays contours, OutputArray hierarchy) |
| | 使用 link runs 算法查找轮廓。
|
| |
| RotatedRect | cv::fitEllipse (InputArray points) |
| | 围绕一组二维点拟合椭圆。
|
| |
| RotatedRect | cv::fitEllipseAMS (InputArray points) |
| | 围绕一组二维点拟合椭圆。
|
| |
| RotatedRect | cv::fitEllipseDirect (InputArray points) |
| | 围绕一组二维点拟合椭圆。
|
| |
| void | cv::fitLine (InputArray points, OutputArray line, int distType, double param, double reps, double aeps) |
| | 对二维或三维点集进行直线拟合。
|
| |
| int | cv::floodFill (InputOutputArray image, InputOutputArray mask, Point seedPoint, Scalar newVal, Rect *rect=0, Scalar loDiff=Scalar(), Scalar upDiff=Scalar(), int flags=4) |
| | 使用给定颜色填充连通域。
|
| |
| int | cv::floodFill (InputOutputArray image, Point seedPoint, Scalar newVal, Rect *rect=0, Scalar loDiff=Scalar(), Scalar upDiff=Scalar(), int flags=4) |
| |
| void | cv::GaussianBlur (InputArray src, OutputArray dst, Size ksize, double sigmaX, double sigmaY=0, int borderType=BORDER_DEFAULT, AlgorithmHint hint=cv::ALGO_HINT_DEFAULT) |
| | 使用高斯滤波器模糊图像。
|
| |
| Mat | cv::getAffineTransform (const Point2f src[], const Point2f dst[]) |
| | 通过三对对应点计算仿射变换矩阵。
|
| |
| Mat | cv::getAffineTransform (InputArray src, InputArray dst) |
| |
| void | cv::getClosestEllipsePoints (const RotatedRect &ellipse_params, InputArray points, OutputArray closest_pts) |
| | 为每个二维点计算其在给定椭圆上最近的二维点。
|
| |
| void | cv::getDerivKernels (OutputArray kx, OutputArray ky, int dx, int dy, int ksize, bool normalize=false, int ktype=CV_32F) |
| | 返回用于计算图像空间导数的滤波器系数。
|
| |
| double | cv::getFontScaleFromHeight (const int fontFace, const int pixelHeight, const int thickness=1) |
| | 计算为达到给定像素高度所需的特定字体缩放比例。
|
| |
| Mat | cv::getGaborKernel (Size ksize, double sigma, double theta, double lambd, double gamma, double psi=CV_PI *0.5, int ktype=CV_64F) |
| | 返回 Gabor 滤波器系数。
|
| |
| Mat | cv::getGaussianKernel (int ksize, double sigma, int ktype=CV_64F) |
| | 返回高斯滤波器系数。
|
| |
| Mat | cv::getPerspectiveTransform (const Point2f src[], const Point2f dst[], int solveMethod=DECOMP_LU) |
| |
| Mat | cv::getPerspectiveTransform (InputArray src, InputArray dst, int solveMethod=DECOMP_LU) |
| | 通过四对对应点计算透视变换矩阵。
|
| |
| void | cv::getRectSubPix (InputArray image, Size patchSize, Point2f center, OutputArray patch, int patchType=-1) |
| | 以亚像素精度从图像中提取像素矩形。
|
| |
| Mat | cv::getRotationMatrix2D (Point2f center, double angle, double scale) |
| | 计算二维旋转的仿射矩阵。
|
| |
| Matx23d | cv::getRotationMatrix2D_ (Point2f center, double angle, double scale) |
| |
| Mat | cv::getStructuringElement (int shape, Size ksize, Point anchor=Point(-1,-1)) |
| | 返回用于形态学操作的指定大小和形状的结构元素。
|
| |
| Size | cv::getTextSize (const String &text, int fontFace, double fontScale, int thickness, int *baseLine) |
| | 计算文本字符串的宽度和高度。
|
| |
| void | cv::goodFeaturesToTrack (InputArray image, OutputArray corners, int maxCorners, double qualityLevel, double minDistance, InputArray mask, int blockSize, int gradientSize, bool useHarrisDetector=false, double k=0.04) |
| |
| void | cv::goodFeaturesToTrack (InputArray image, OutputArray corners, int maxCorners, double qualityLevel, double minDistance, InputArray mask, OutputArray cornersQuality, int blockSize=3, int gradientSize=3, bool useHarrisDetector=false, double k=0.04) |
| | 与上述相同,但同时返回检测到的角点的质量度量。
|
| |
| void | cv::goodFeaturesToTrack (InputArray image, OutputArray corners, int maxCorners, double qualityLevel, double minDistance, InputArray mask=noArray(), int blockSize=3, bool useHarrisDetector=false, double k=0.04) |
| | 在图像上确定强角点。
|
| |
| void | cv::grabCut (InputArray img, InputOutputArray mask, Rect rect, InputOutputArray bgdModel, InputOutputArray fgdModel, int iterCount, int mode=GC_EVAL) |
| | 运行 GrabCut 算法。
|
| |
| void | cv::HoughCircles (InputArray image, OutputArray circles, int method, double dp, double minDist, double param1=100, double param2=100, int minRadius=0, int maxRadius=0) |
| | 使用霍夫变换在灰度图像中查找圆。
|
| |
| void | cv::HoughLines (InputArray image, OutputArray lines, double rho, double theta, int threshold, double srn=0, double stn=0, double min_theta=0, double max_theta=CV_PI, bool use_edgeval=false) |
| | 使用标准霍夫变换在二值图像中查找直线。
|
| |
| void | cv::HoughLinesP (InputArray image, OutputArray lines, double rho, double theta, int threshold, double minLineLength=0, double maxLineGap=0) |
| | 使用概率霍夫变换在二值图像中查找线段。
|
| |
| void | cv::HoughLinesPointSet (InputArray point, OutputArray lines, int lines_max, int threshold, double min_rho, double max_rho, double rho_step, double min_theta, double max_theta, double theta_step) |
| | 使用标准霍夫变换在点集中查找直线。
|
| |
| void | cv::HuMoments (const Moments &m, OutputArray hu) |
| |
| void | cv::HuMoments (const Moments &moments, double hu[7]) |
| | 计算七个 Hu 不变量。
|
| |
| void | cv::integral (InputArray src, OutputArray sum, int sdepth=-1) |
| |
| void | cv::integral (InputArray src, OutputArray sum, OutputArray sqsum, int sdepth=-1, int sqdepth=-1) |
| |
| void | cv::integral (InputArray src, OutputArray sum, OutputArray sqsum, OutputArray tilted, int sdepth=-1, int sqdepth=-1) |
| | 计算图像的积分图。
|
| |
| float | cv::intersectConvexConvex (InputArray p1, InputArray p2, OutputArray p12, bool handleNested=true) |
| | 查找两个凸多边形的交集。
|
| |
| void | cv::invertAffineTransform (InputArray M, OutputArray iM) |
| | 计算仿射变换的逆变换。
|
| |
| bool | cv::isContourConvex (InputArray contour) |
| | 测试轮廓的凸性。
|
| |
| void | cv::Laplacian (InputArray src, OutputArray dst, int ddepth, int ksize=1, double scale=1, double delta=0, int borderType=BORDER_DEFAULT) |
| | 计算图像的拉普拉斯算子。
|
| |
| void | cv::line (InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| | 绘制连接两个点的线段。
|
| |
| void | cv::linearPolar (InputArray src, OutputArray dst, Point2f center, double maxRadius, int flags) |
| | 将图像重映射到极坐标空间。
|
| |
| void | cv::logPolar (InputArray src, OutputArray dst, Point2f center, double M, int flags) |
| | 将图像重映射到对数极坐标空间。
|
| |
| double | cv::matchShapes (InputArray contour1, InputArray contour2, int method, double parameter) |
| | 比较两个形状。
|
| |
| void | cv::matchTemplate (InputArray image, InputArray templ, OutputArray result, int method, InputArray mask=noArray()) |
| | 在重叠的图像区域中匹配模板。
|
| |
| void | cv::medianBlur (InputArray src, OutputArray dst, int ksize) |
| | 使用中值滤波器模糊图像。
|
| |
| RotatedRect | cv::minAreaRect (InputArray points) |
| | 查找包围输入二维点集的最小面积旋转矩形。
|
| |
| void | cv::minEnclosingCircle (InputArray points, Point2f ¢er, float &radius) |
| | 查找包围二维点集的最小面积圆。
|
| |
| double | cv::minEnclosingConvexPolygon (InputArray points, OutputArray polygon, int k) |
| | 查找包围二维点集的最小面积凸多边形并返回其面积。
|
| |
| double | cv::minEnclosingTriangle (InputArray points, OutputArray triangle) |
| | 查找包围二维点集的最小面积三角形并返回其面积。
|
| |
| Moments | cv::moments (InputArray array, bool binaryImage=false) |
| | 计算多边形或光栅化形状的所有三阶以内矩。
|
| |
| static Scalar | cv::morphologyDefaultBorderValue () |
| | 返回腐蚀和膨胀的“魔术”边界值。在膨胀操作中,它会自动转换为 Scalar::all(-DBL_MAX)。
|
| |
| void | cv::morphologyEx (InputArray src, OutputArray dst, int op, InputArray kernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| | 执行高级形态学变换。
|
| |
| Point2d | cv::phaseCorrelate (InputArray src1, InputArray src2, noArray(), double *response=0) |
| | 该函数用于检测两幅图像之间发生的平移偏差。
|
| |
| Point2d | cv::phaseCorrelateIterative (InputArray src1, InputArray src2, int L2size=7, int maxIters=10) |
| | 迭代地检测两幅图像之间的平移偏差。
|
| |
| double | cv::pointPolygonTest (InputArray contour, Point2f pt, bool measureDist) |
| | 执行点与轮廓的位置关系测试。
|
| |
| void | cv::polylines (InputOutputArray img, const Point *const *pts, const int *npts, int ncontours, bool isClosed, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| |
| void | cv::polylines (InputOutputArray img, InputArrayOfArrays pts, bool isClosed, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| | 绘制多条多边形曲线。
|
| |
| void | cv::preCornerDetect (InputArray src, OutputArray dst, int ksize, int borderType=BORDER_DEFAULT) |
| | 计算用于角点检测的特征图。
|
| |
| void | cv::putText (InputOutputArray img, const String &text, Point org, int fontFace, double fontScale, Scalar color, int thickness=1, int lineType=LINE_8, bool bottomLeftOrigin=false) |
| | 绘制文本字符串。
|
| |
| void | cv::pyrDown (InputArray src, OutputArray dst, const Size &dstsize=Size(), int borderType=BORDER_DEFAULT) |
| | 模糊并下采样图像。
|
| |
| void | cv::pyrMeanShiftFiltering (InputArray src, OutputArray dst, double sp, double sr, int maxLevel=1, TermCriteria termcrit=TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS, 5, 1)) |
| | 执行图像均值漂移分割的初始步骤。
|
| |
| void | cv::pyrUp (InputArray src, OutputArray dst, const Size &dstsize=Size(), int borderType=BORDER_DEFAULT) |
| | 上采样并模糊图像。
|
| |
| void | cv::rectangle (InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| | 绘制一个简单的、粗线条的或填充的正矩形。
|
| |
| void | cv::rectangle (InputOutputArray img, Rect rec, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| |
| void | cv::remap (InputArray src, OutputArray dst, InputArray map1, InputArray map2, int interpolation, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar()) |
| | 对图像应用通用的几何变换。
|
| |
| void | cv::resize (InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation=INTER_LINEAR) |
| | 调整图像大小。
|
| |
| int | cv::rotatedRectangleIntersection (const RotatedRect &rect1, const RotatedRect &rect2, OutputArray intersectingRegion) |
| | 查找两个旋转矩形之间是否存在交集。
|
| |
| void | cv::Scharr (InputArray src, OutputArray dst, int ddepth, int dx, int dy, double scale=1, double delta=0, int borderType=BORDER_DEFAULT) |
| | 使用 Scharr 算子计算图像的一阶 x 或 y 导数。
|
| |
| void | cv::sepFilter2D (InputArray src, OutputArray dst, int ddepth, InputArray kernelX, InputArray kernelY, Point anchor=Point(-1,-1), double delta=0, int borderType=BORDER_DEFAULT) |
| | 对图像应用可分离线性滤波器。
|
| |
| void | cv::Sobel (InputArray src, OutputArray dst, int ddepth, int dx, int dy, int ksize=3, double scale=1, double delta=0, int borderType=BORDER_DEFAULT) |
| | 使用扩展 Sobel 算子计算图像的一阶、二阶、三阶或混合导数。
|
| |
| void | cv::spatialGradient (InputArray src, OutputArray dx, OutputArray dy, int ksize=3, int borderType=BORDER_DEFAULT) |
| | 使用 Sobel 算子同时计算 x 和 y 方向的一阶图像导数。
|
| |
| void | cv::sqrBoxFilter (InputArray src, OutputArray dst, int ddepth, Size ksize, Point anchor=Point(-1, -1), bool normalize=true, int borderType=BORDER_DEFAULT) |
| | 计算与滤波器重叠的像素值的归一化平方和。
|
| |
| void | cv::stackBlur (InputArray src, OutputArray dst, Size ksize) |
| | 使用 stackBlur 模糊图像。
|
| |
| double | cv::threshold (InputArray src, OutputArray dst, double thresh, double maxval, int type) |
| | 对数组的每个元素应用固定阈值操作。
|
| |
| double | cv::thresholdWithMask (InputArray src, InputOutputArray dst, InputArray mask, double thresh, double maxval, int type) |
| | 与 threshold 相同,但带有一个可选掩码。
|
| |
| void | cv::warpAffine (InputArray src, OutputArray dst, InputArray M, Size dsize, int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar()) |
| | 对图像应用仿射变换。
|
| |
| void | cv::warpPerspective (InputArray src, OutputArray dst, InputArray M, Size dsize, int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar()) |
| | 对图像应用透视变换。
|
| |
| void | cv::warpPolar (InputArray src, OutputArray dst, Size dsize, Point2f center, double maxRadius, int flags) |
| | 将图像重映射到极坐标或对数极坐标空间。
|
| |
| void | cv::watershed (InputArray image, InputOutputArray markers) |
| | 使用分水岭算法执行基于标记的图像分割。
|
| |
| float | cv::wrapperEMD (InputArray signature1, InputArray signature2, int distType, InputArray cost=noArray(), Ptr< float > lowerBound=Ptr< float >(), OutputArray flow=noArray()) |
| |