OpenCV 4.11.0
开源计算机视觉
|
#include "opencv2/core.hpp"
命名空间 | |
命名空间 | cv |
命名空间 | cv::ximgproc |
枚举 | |
枚举 | cv::ximgproc::AngleRangeOption { cv::ximgproc::ARO_0_45 = 0 , cv::ximgproc::ARO_45_90 = 1 , cv::ximgproc::ARO_90_135 = 2 , cv::ximgproc::ARO_315_0 = 3 , cv::ximgproc::ARO_315_45 = 4 , cv::ximgproc::ARO_45_135 = 5 , cv::ximgproc::ARO_315_135 = 6 , cv::ximgproc::ARO_CTR_HOR = 7 , cv::ximgproc::ARO_CTR_VER = 8 } |
指定要计算的 Hough 空间部分。更多… | |
枚举 | cv::ximgproc::HoughDeskewOption { cv::ximgproc::HDO_RAW = 0 , cv::ximgproc::HDO_DESKEW = 1 } |
指定是否对 Hough 变换图像进行倾斜校正。更多… | |
枚举 | cv::ximgproc::HoughOp { cv::ximgproc::FHT_MIN = 0 , cv::ximgproc::FHT_MAX = 1 , cv::ximgproc::FHT_ADD = 2 , cv::ximgproc::FHT_AVE = 3 } |
指定二元运算。更多… | |
枚举 | cv::ximgproc::RulesOption { cv::ximgproc::RO_STRICT = 0x00 , cv::ximgproc::RO_IGNORE_BORDERS = 0x01 } |
指定规则验证的程度。更多… | |
函数 | |
void | cv::ximgproc::FastHoughTransform (InputArray src, OutputArray dst, int dstMatDepth, int angleRange=ARO_315_135, int op=FHT_ADD, int makeSkew=HDO_DESKEW) |
计算图像的二维快速 Hough 变换。 | |
Vec4i | cv::ximgproc::HoughPoint2Line (const Point &houghPoint, InputArray srcImgInfo, int angleRange=ARO_315_135, int makeSkew=HDO_DESKEW, int rules=RO_IGNORE_BORDERS) |
计算Hough空间中点对应的线段坐标。 | |