|
| virtual void | detect (InputArray image, std::vector< Elliptic_KeyPoint > &keypoints, InputArray mask=noArray())=0 |
| | 使用封装的检测器在图像中检测关键点,并进行仿射适应以增强它们的椭圆区域。
|
| |
| 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< Elliptic_KeyPoint > &keypoints, OutputArray descriptors, bool useProvidedKeypoints=false)=0 |
| | 检测关键点并计算它们周围区域的描述符,在将其扭曲成圆之后再进行。
|
| |
| virtual void | detectAndCompute (InputArray image, InputArray mask, std::vector< KeyPoint > &keypoints, OutputArray descriptors, bool useProvidedKeypoints=false) |
| |
| 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) |
| |
| 虚 int | defaultNorm () const |
| |
| 虚 int | descriptorSize () const |
| |
| 虚 int | descriptorType () const |
| |
| 虚 bool | empty () const CV_OVERRIDE |
| | 返回 true 如果检测对象为空。
|
| |
| 虚 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 (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 |
| |