OpenCV 4.10.0
开源计算机视觉
加载中...
搜索中...
无匹配项
公有成员函数 | 静态公有成员函数 | 所有成员列表
cv::BRISK 类参考abstract

实现 BRISK 关键点检测器和描述符提取器,在 [158] 中描述。 更多...

#include <opencv2/features2d.hpp>

cv::BRISK 的协作图

公有成员函数

virtual String getDefaultName () const CV_OVERRIDE
 
virtual int getOctaves () const =0
 
virtual float getPatternScale () const =0
 
virtual int getThreshold () const =0
 
virtual void setOctaves (int octaves)=0
 设置检测八度。
 
virtual void setPatternScale (float patternScale)=0
 设置检测模式比例。
 
virtual void setThreshold (int threshold)=0
 设置检测阈值。
 
- 从 cv::Feature2D 继承的公有成员函数
virtual ~Feature2D ()
 
virtual void compute (InputArray image, std::vector< KeyPoint > &keypoints, OutputArray descriptors)
 计算图像(第一个变体)或图像集(第二个变体)中检测到的关键点集的描述符。
 
virtual void compute (InputArrayOfArrays images, std::vector< std::vector< KeyPoint > > &keypoints, OutputArrayOfArrays descriptors)
 
virtual int defaultNorm () const
 
virtual int descriptorSize () const
 
virtual int descriptorType () const
 
virtual void detect (InputArray image, std::vector< KeyPoint > &keypoints, InputArray mask=noArray())
 在图像(第一个变体)或图像集(第二个变体)中检测关键点。
 
virtual void detect (InputArrayOfArrays images, std::vector< std::vector< KeyPoint > > &keypoints, InputArrayOfArrays masks=noArray())
 
virtual void detectAndCompute (InputArray image, InputArray mask, std::vector< KeyPoint > &keypoints, OutputArray descriptors, bool useProvidedKeypoints=false)
 
virtual bool empty () const CV_OVERRIDE
 如果检测器对象为空,则返回 true。
 
virtual void read (const FileNode &) CV_OVERRIDE
 从文件存储中读取算法参数。
 
void read (const String &fileName)
 
void write (const Ptr< FileStorage > &fs, const String &name) const
 
void write (const String &fileName) const
 
virtual void write (FileStorage &) const CV_OVERRIDE
 将算法参数存储在文件存储中。
 
void write (FileStorage &fs, const String &name) const
 
- 从 cv::Algorithm 继承的公有成员函数
 Algorithm ()
 
virtual ~Algorithm ()
 
virtual void clear ()
 清除算法状态。
 
virtual void save (const String &filename) const
 
void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 
void write (FileStorage &fs, const String &name) const
 

静态公有成员函数

static Ptr< BRISKcreate (const std::vector< float > &radiusList, const std::vector< int > &numberList, float dMax=5.85f, float dMin=8.2f, const std::vector< int > &indexChange=std::vector< int >())
 用于自定义模式的 BRISK 构造函数。
 
static Ptr< BRISKcreate (int thresh, int octaves, const std::vector< float > &radiusList, const std::vector< int > &numberList, float dMax=5.85f, float dMin=8.2f, const std::vector< int > &indexChange=std::vector< int >())
 用于自定义模式、检测阈值和八度的 BRISK 构造函数。
 
static Ptr< BRISKcreate (int thresh=30, int octaves=3, float patternScale=1.0f)
 The BRISK 构造函数。
 
- 从 cv::Algorithm 继承的静态公有成员函数
template<typename _Tp >
static Ptr< _Tpload (const String &filename, const String &objname=String())
 从文件中加载算法。
 
template<typename _Tp >
static Ptr< _TploadFromString (const String &strModel, const String &objname=String())
 从字符串中加载算法。
 
template<typename _Tp >
static Ptr< _Tpread (const FileNode &fn)
 从文件节点读取算法。
 

其他继承成员

- 从 cv::Algorithm 继承的受保护成员函数
void writeFormat (FileStorage &fs) const
 

详细描述

实现 BRISK 关键点检测器和描述符提取器,在 [158] 中描述。

成员函数文档

◆ create() [1/3]

static Ptr< BRISK > cv::BRISK::create ( const std::vector< float > &  radiusList,
const std::vector< int > &  numberList,
float  dMax = 5.85f,
float  dMin = 8.2f,
const std::vector< int > &  indexChange = std::vector< int >() 
)
static
Python
cv.BRISK.create([, thresh[, octaves[, patternScale]]]) -> retval
cv.BRISK.create(radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK.create(thresh, octaves, radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK_create([, thresh[, octaves[, patternScale]]]) -> retval
cv.BRISK_create(radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK_create(thresh, octaves, radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval

用于自定义模式的 BRISK 构造函数。

参数
radiusList定义关键点周围采样点(对于关键点尺度 1)的半径(以像素为单位)。
numberList定义采样圆上的采样点数。必须与 radiusList 大小相同。
dMax用于描述符形成的短配对的阈值(对于关键点尺度 1 的像素)。
dMin用于方向确定的长配对的阈值(对于关键点尺度 1 的像素)。
indexChange位的索引重映射。

◆ create() [2/3]

static Ptr< BRISK > cv::BRISK::create ( int  thresh,
int  octaves,
const std::vector< float > &  radiusList,
const std::vector< int > &  numberList,
float  dMax = 5.85f,
float  dMin = 8.2f,
const std::vector< int > &  indexChange = std::vector< int >() 
)
static
Python
cv.BRISK.create([, thresh[, octaves[, patternScale]]]) -> retval
cv.BRISK.create(radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK.create(thresh, octaves, radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK_create([, thresh[, octaves[, patternScale]]]) -> retval
cv.BRISK_create(radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK_create(thresh, octaves, radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval

用于自定义模式、检测阈值和八度的 BRISK 构造函数。

参数
threshAGAST 检测阈值分数。
octaves检测八度。使用 0 执行单尺度。
radiusList定义关键点周围采样点(对于关键点尺度 1)的半径(以像素为单位)。
numberList定义采样圆上的采样点数。必须与 radiusList 大小相同。
dMax用于描述符形成的短配对的阈值(对于关键点尺度 1 的像素)。
dMin用于方向确定的长配对的阈值(对于关键点尺度 1 的像素)。
indexChange位的索引重映射。

◆ create() [3/3]

static Ptr< BRISK > cv::BRISK::create ( int  thresh = 30,
int  octaves = 3,
float  patternScale = 1.0f 
)
static
Python
cv.BRISK.create([, thresh[, octaves[, patternScale]]]) -> retval
cv.BRISK.create(radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK.create(thresh, octaves, radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK_create([, thresh[, octaves[, patternScale]]]) -> retval
cv.BRISK_create(radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval
cv.BRISK_create(thresh, octaves, radiusList, numberList[, dMax[, dMin[, indexChange]]]) -> retval

The BRISK 构造函数。

参数
threshAGAST 检测阈值分数。
octaves检测八度。使用 0 执行单尺度。
patternScale将此比例应用于用于对关键点邻域进行采样的模式。

◆ getDefaultName()

virtual String cv::BRISK::getDefaultName ( ) const
virtual
Python
cv.BRISK.getDefaultName() -> retval

返回算法字符串标识符。当对象保存到文件或字符串时,此字符串用作顶层 xml/yml 节点标签。

cv::Feature2D 重新实现。

◆ getOctaves()

virtual int cv::BRISK::getOctaves ( ) const
纯虚函数
Python
cv.BRISK.getOctaves() -> retval

◆ getPatternScale()

virtual float cv::BRISK::getPatternScale ( ) const
纯虚函数
Python
cv.BRISK.getPatternScale() -> retval

◆ getThreshold()

virtual int cv::BRISK::getThreshold ( ) const
纯虚函数
Python
cv.BRISK.getThreshold() -> retval

◆ setOctaves()

virtual void cv::BRISK::setOctaves ( int  octaves)
纯虚函数
Python
cv.BRISK.setOctaves(octaves) ->

设置检测八度。

参数
octaves检测八度。使用 0 执行单尺度。

◆ setPatternScale()

virtual void cv::BRISK::setPatternScale ( float  patternScale)
纯虚函数
Python
cv.BRISK.setPatternScale(patternScale) ->

设置检测模式比例。

参数
patternScale将此比例应用于用于对关键点邻域进行采样的模式。

◆ setThreshold()

virtual void cv::BRISK::setThreshold ( int  threshold)
纯虚函数
Python
cv.BRISK.setThreshold(threshold) ->

设置检测阈值。

参数
thresholdAGAST 检测阈值分数。

此类的文档从以下文件生成