二维图像特征检测器和描述符提取器的抽象基类。 更多…
#include <opencv2/features2d.hpp>
|
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 String | getDefaultName () const CV_OVERRIDE |
|
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 |
|
| 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 |
|
◆ ~Feature2D()
virtual cv::Feature2D::~Feature2D |
( |
| ) |
|
|
虚函数 |
◆ compute() [1/2]
Python |
---|
| cv.Feature2D.compute( | image, keypoints[, descriptors] | ) -> | keypoints, descriptors |
| cv.Feature2D.compute( | images, keypoints[, descriptors] | ) -> | keypoints, descriptors |
计算在一幅图像(第一种变体)或图像集(第二种变体)中检测到的一组关键点的描述符。
- 参数
-
图像 | 图像。 |
关键点 | 输入关键点集合。无法计算描述符的关键点将被移除。有时可能会添加新的关键点,例如:SIFT会复制具有多个主要方向的关键点(对于每个方向)。 |
描述符 | 计算出的描述符。在该方法的第二个变体中,descriptors[i] 是为 keypoints[i] 计算的描述符。第 j 行是关键点(或 keypoints[i])是第 j 个关键点的描述符。 |
在 cv::xfeatures2d::DAISY 中重新实现。
◆ compute() [2/2]
Python |
---|
| cv.Feature2D.compute( | image, keypoints[, descriptors] | ) -> | keypoints, descriptors |
| cv.Feature2D.compute( | images, keypoints[, descriptors] | ) -> | keypoints, descriptors |
这是一个重载的成员函数,为了方便提供。它与上面的函数唯一的区别在于它接受的参数。
- 参数
-
图像集 | 图像集。 |
关键点 | 输入关键点集合。无法计算描述符的关键点将被移除。有时可能会添加新的关键点,例如:SIFT会复制具有多个主要方向的关键点(对于每个方向)。 |
描述符 | 计算出的描述符。在该方法的第二个变体中,descriptors[i] 是为 keypoints[i] 计算的描述符。第 j 行是关键点(或 keypoints[i])是第 j 个关键点的描述符。 |
在 cv::xfeatures2d::DAISY 中重新实现。
◆ defaultNorm()
virtual int cv::Feature2D::defaultNorm |
( |
| ) |
const |
|
虚函数 |
Python |
---|
| cv.Feature2D.defaultNorm( | | ) -> | 返回值 |
◆ descriptorSize()
virtual int cv::Feature2D::descriptorSize |
( |
| ) |
const |
|
虚函数 |
Python |
---|
| cv.Feature2D.descriptorSize( | | ) -> | 返回值 |
◆ descriptorType()
virtual int cv::Feature2D::descriptorType |
( |
| ) |
const |
|
虚函数 |
Python |
---|
| cv.Feature2D.descriptorType( | | ) -> | 返回值 |
◆ detect() [1/2]
Python |
---|
| cv.Feature2D.detect( | image[, mask] | ) -> | 关键点 |
| cv.Feature2D.detect( | images[, masks] | ) -> | 关键点 |
检测图像(第一种变体)或图像集(第二种变体)中的关键点。
- 参数
-
图像 | 图像。 |
关键点 | 检测到的关键点。在该方法的第二个变体中,keypoints[i] 是在 images[i] 中检测到的关键点集。 |
mask | 指定在哪里查找关键点的掩码(可选)。它必须是一个 8 位整型矩阵,感兴趣区域中的值不为零。 |
在 cv::xfeatures2d::AffineFeature2D 中重新实现。
◆ detect() [2/2]
Python |
---|
| cv.Feature2D.detect( | image[, mask] | ) -> | 关键点 |
| cv.Feature2D.detect( | images[, masks] | ) -> | 关键点 |
这是一个重载的成员函数,为了方便提供。它与上面的函数唯一的区别在于它接受的参数。
- 参数
-
图像集 | 图像集。 |
关键点 | 检测到的关键点。在该方法的第二个变体中,keypoints[i] 是在 images[i] 中检测到的关键点集。 |
masks | 每个输入图像的掩码,用于指定在哪里查找关键点(可选)。masks[i] 是 images[i] 的掩码。 |
在 cv::xfeatures2d::AffineFeature2D 中重新实现。
◆ detectAndCompute()
Python |
---|
| cv.Feature2D.detectAndCompute( | image, mask[, descriptors[, useProvidedKeypoints]] | ) -> | keypoints, descriptors |
◆ empty()
virtual bool cv::Feature2D::empty |
( |
| ) |
const |
|
虚函数 |
Python |
---|
| cv.Feature2D.empty( | | ) -> | 返回值 |
◆ getDefaultName()
virtual String cv::Feature2D::getDefaultName |
( |
| ) |
const |
|
虚函数 |
Python |
---|
| cv.Feature2D.getDefaultName( | | ) -> | 返回值 |
返回算法字符串标识符。将对象保存到文件或字符串时,此字符串用作顶级 xml/yml 节点标签。
从 cv::Algorithm 重新实现。
在 cv::AffineFeature, cv::AgastFeatureDetector, cv::AKAZE, cv::BRISK, cv::FastFeatureDetector, cv::GFTTDetector, cv::KAZE, cv::MSER, cv::ORB, cv::SIFT, cv::SimpleBlobDetector, cv::xfeatures2d::BEBLID, cv::xfeatures2d::BoostDesc, cv::xfeatures2d::BriefDescriptorExtractor, cv::xfeatures2d::DAISY, cv::xfeatures2d::FREAK, cv::xfeatures2d::HarrisLaplaceFeatureDetector, cv::xfeatures2d::LATCH, cv::xfeatures2d::LUCID, cv::xfeatures2d::MSDDetector, cv::xfeatures2d::StarDetector, cv::xfeatures2d::SURF, cv::xfeatures2d::TBMR, cv::xfeatures2d::TEBLID 和 cv::xfeatures2d::VGG 中重新实现。
◆ read() [1/2]
virtual void cv::Feature2D::read |
( |
const FileNode & | fn | ) |
|
|
虚函数 |
Python |
---|
| cv.Feature2D.read( | fileName | ) -> | None |
| cv.Feature2D.read( | arg1 | ) -> | None |
◆ read() [2/2]
void cv::Feature2D::read |
( |
const String & | fileName | ) |
|
Python |
---|
| cv.Feature2D.read( | fileName | ) -> | None |
| cv.Feature2D.read( | arg1 | ) -> | None |
◆ write() [1/4]
Python |
---|
| cv.Feature2D.write( | fileName | ) -> | None |
| cv.Feature2D.write( | fs, name | ) -> | None |
◆ write() [2/4]
void cv::Feature2D::write |
( |
const String & | fileName | ) |
const |
Python |
---|
| cv.Feature2D.write( | fileName | ) -> | None |
| cv.Feature2D.write( | fs, name | ) -> | None |
◆ write() [3/4]
virtual void cv::Feature2D::write |
( |
FileStorage & | fs | ) |
const |
|
虚函数 |
Python |
---|
| cv.Feature2D.write( | fileName | ) -> | None |
| cv.Feature2D.write( | fs, name | ) -> | None |
◆ write() [4/4]
Python |
---|
| cv.Feature2D.write( | fileName | ) -> | None |
| cv.Feature2D.write( | fs, name | ) -> | None |
此类的文档是从以下文件生成的: