#include <opencv2/line_descriptor/descriptor.hpp>
|
| LSDDetector () |
|
| LSDDetector (LSDParam _params) |
|
void | detect (const Mat &image, std::vector< KeyLine > &keypoints, int scale, int numOctaves, const Mat &mask=Mat()) |
| 检测图像内的线条。
|
|
void | detect (const std::vector< Mat > &images, std::vector< std::vector< KeyLine > > &keylines, int scale, int numOctaves, const std::vector< Mat > &masks=std::vector< Mat >()) const |
|
| Algorithm () |
|
virtual | ~Algorithm () |
|
virtual void | clear () |
| 清除算法状态。
|
|
virtual bool | empty () const |
| 如果 Algorithm 为空(例如,在开始时或读取失败后),则返回 true。
|
|
virtual String | getDefaultName () const |
|
virtual void | read (const FileNode &fn) |
| 从文件存储中读取算法参数。
|
|
virtual void | save (const String &filename) const |
|
void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
|
virtual void | write (FileStorage &fs) const |
| 将算法参数存储到文件存储中。
|
|
void | write (FileStorage &fs, const String &name) const |
|
◆ LSDDetector() [1/2]
cv::line_descriptor::LSDDetector::LSDDetector |
( |
| ) |
|
|
inline |
Python |
---|
| cv.line_descriptor.LSDDetector( | _params | ) -> | <line_descriptor_LSDDetector 对象> |
◆ LSDDetector() [2/2]
cv::line_descriptor::LSDDetector::LSDDetector |
( |
LSDParam | _params | ) |
|
|
inline |
Python |
---|
| cv.line_descriptor.LSDDetector( | _params | ) -> | <line_descriptor_LSDDetector 对象> |
◆ createLSDDetector() [1/2]
static Ptr< LSDDetector > cv::line_descriptor::LSDDetector::createLSDDetector |
( |
| ) |
|
|
static |
Python |
---|
| cv.line_descriptor.LSDDetector.createLSDDetector( | | ) -> | retval |
| cv.line_descriptor.LSDDetector.createLSDDetectorWithParams( | params | ) -> | retval |
| cv.line_descriptor.LSDDetector_createLSDDetector( | | ) -> | retval |
| cv.line_descriptor.LSDDetector_createLSDDetectorWithParams( | params | ) -> | retval |
◆ createLSDDetector() [2/2]
Python |
---|
| cv.line_descriptor.LSDDetector.createLSDDetector( | | ) -> | retval |
| cv.line_descriptor.LSDDetector.createLSDDetectorWithParams( | params | ) -> | retval |
| cv.line_descriptor.LSDDetector_createLSDDetector( | | ) -> | retval |
| cv.line_descriptor.LSDDetector_createLSDDetectorWithParams( | params | ) -> | retval |
◆ detect() [1/2]
void cv::line_descriptor::LSDDetector::detect |
( |
const Mat & | image, |
|
|
std::vector< KeyLine > & | keypoints, |
|
|
int | scale, |
|
|
int | numOctaves, |
|
|
const Mat & | mask = Mat() ) |
Python |
---|
| cv.line_descriptor.LSDDetector.detect( | image, scale, numOctaves[, mask] | ) -> | keypoints |
| cv.line_descriptor.LSDDetector.detect( | images, keylines, scale, numOctaves[, masks] | ) -> | None |
检测图像内的线条。
- 参数
-
image | 输入图像 |
keypoints | 将存储一幅或多幅图像的提取线的向量 |
scale | 金字塔生成中使用的比例因子 |
numOctaves | 金字塔内的八度数 |
掩码 | 掩码矩阵,用于仅检测感兴趣的关键线 |
◆ detect() [2/2]
void cv::line_descriptor::LSDDetector::detect |
( |
const std::vector< Mat > & | 图像, |
|
|
std::vector< std::vector< KeyLine > > & | 关键线, |
|
|
int | scale, |
|
|
int | numOctaves, |
|
|
const std::vector< Mat > & | masks = std::vector< Mat >() ) const |
Python |
---|
| cv.line_descriptor.LSDDetector.detect( | image, scale, numOctaves[, mask] | ) -> | keypoints |
| cv.line_descriptor.LSDDetector.detect( | images, keylines, scale, numOctaves[, masks] | ) -> | None |
这是一个重载的成员函数,为了方便提供。它与上面的函数唯一的区别在于它接受的参数。
- 参数
-
图像 | 输入图像 |
关键线 | 一组向量,用于存储一个或多个图像的提取线 |
scale | 金字塔生成中使用的比例因子 |
numOctaves | 金字塔内的八度数 |
掩码 | 掩码矩阵向量,用于仅从每个输入图像中检测感兴趣的关键线 |
此类的文档是从以下文件生成的