opencv--ORB::create

简介: opencv--ORB::create
static Ptr<ORB> cv::ORB::create (
                        int nfeatures = 500,
                         float scaleFactor = 1.2f,
                        int nlevels = 8,
                        int edgeThreshold = 31,
                        int firstLevel = 0,
                         int WTA_K = 2,
                         int scoreType = ORB::HARRIS_SCORE,
                         int patchSize = 31,
                         int fastThreshold = 20
                     ) 


nfeatures:表示取的特征点数量


float scaleFactor = 1.2f   :表示每一层与上一层的比例关系


int nlevels = 8,:图像金字塔的层数


edgeThreshold = 31,默认吧,看不懂解释


firstLevel = 0,  默认吧,看不懂解释


int WTA_K = 2, 表示描述符随机数的范围,2表示描述符的数字随机取0,1。3表示随机取0,1,2。一般都是2


scoreType = ORB::HARRIS_SCORE,这表示用harris特征来给定分数。一般默认用这个。

patchSize = 31,默认吧,看不懂解释


fastThreshold = 20默认吧,看不懂解释


相关文章
|
计算机视觉
OpenCV-计算自然对数cv::log
OpenCV-计算自然对数cv::log
171 0
|
计算机视觉
YOLO环境搭建报错:module 'cv2' has no attribute 'gapi wip_ gst GStreamerPipeline'
报错:module 'cv2' has no attribute 'gapi wip_ gst GStreamerPipeline'
2465 0
|
2月前
|
计算机视觉 Python
Opencv学习笔记(十):opencv和base64之间的转换
本文介绍了如何使用Python和OpenCV库将图像在Base64编码和OpenCV可读格式之间进行转换。
50 0
|
6月前
|
存储 算法 API
OpenCV 3.1.0中的Mat对象使用
OpenCV 3.1.0中的Mat对象使用
40 2
|
6月前
|
算法 计算机视觉
如何判断点在多边形内部:OpenCV--cv2.pointPolygonTest()方法详解
如何判断点在多边形内部:OpenCV--cv2.pointPolygonTest()方法详解
|
计算机视觉 Python
成功解决Python导入opencv报错“DLL load failed while importing cv2: 找不到指定的模”
成功解决Python导入opencv报错“DLL load failed while importing cv2: 找不到指定的模”
499 0
ORB_SLAM2_CUDA : Make failed - Compiling examples - Undefined References
ORB_SLAM2_CUDA : Make failed - Compiling examples - Undefined References
109 0
|
计算机视觉
成功解决cv2.error: OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\imgproc\src\color.cpp:182: err
成功解决cv2.error: OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\imgproc\src\color.cpp:182: err
|
TensorFlow 算法框架/工具
TensorFlow修改图像尺寸:AttributeError: module ‘tensorflow._api.v2.image‘ has no attribute ‘image‘
TensorFlow修改图像尺寸:AttributeError: module ‘tensorflow._api.v2.image‘ has no attribute ‘image‘
134 0
TensorFlow修改图像尺寸:AttributeError: module ‘tensorflow._api.v2.image‘ has no attribute ‘image‘
|
API C语言 计算机视觉
三天学会opencv(三)——Mat对象
三天学会opencv(三)——Mat对象
141 0
三天学会opencv(三)——Mat对象