OpenCV453
静的公開メンバ関数 | 全メンバ一覧
cv::xfeatures2d::HarrisLaplaceFeatureDetector クラス

Class implementing the Harris-Laplace feature detector as described in [Mikolajczyk2004]. [詳解]

#include <xfeatures2d.hpp>

cv::Feature2Dを継承しています。

静的公開メンバ関数

static CV_WRAP Ptr< HarrisLaplaceFeatureDetectorcreate (int numOctaves=6, float corn_thresh=0.01f, float DOG_thresh=0.01f, int maxCorners=5000, int num_layers=4)
 Creates a new implementation instance. [詳解]
 
- 基底クラス cv::Algorithm に属する継承静的公開メンバ関数
template<typename _Tp >
static Ptr< _Tp > read (const FileNode &fn)
 Reads algorithm from the file node [詳解]
 
template<typename _Tp >
static Ptr< _Tp > load (const String &filename, const String &objname=String())
 Loads algorithm from the file [詳解]
 
template<typename _Tp >
static Ptr< _Tp > loadFromString (const String &strModel, const String &objname=String())
 Loads algorithm from a String [詳解]
 

その他の継承メンバ

- 基底クラス cv::Feature2D に属する継承公開メンバ関数
virtual CV_WRAP void detect (InputArray image, CV_OUT std::vector< KeyPoint > &keypoints, InputArray mask=noArray())
 Detects keypoints in an image (first variant) or image set (second variant). [詳解]
 
virtual CV_WRAP void detect (InputArrayOfArrays images, CV_OUT std::vector< std::vector< KeyPoint > > &keypoints, InputArrayOfArrays masks=noArray())
 
virtual CV_WRAP void compute (InputArray image, CV_OUT CV_IN_OUT std::vector< KeyPoint > &keypoints, OutputArray descriptors)
 Computes the descriptors for a set of keypoints detected in an image (first variant) or image set (second variant). [詳解]
 
virtual CV_WRAP void compute (InputArrayOfArrays images, CV_OUT CV_IN_OUT std::vector< std::vector< KeyPoint > > &keypoints, OutputArrayOfArrays descriptors)
 
virtual CV_WRAP void detectAndCompute (InputArray image, InputArray mask, CV_OUT std::vector< KeyPoint > &keypoints, OutputArray descriptors, bool useProvidedKeypoints=false)
 
virtual CV_WRAP int descriptorSize () const
 
virtual CV_WRAP int descriptorType () const
 
virtual CV_WRAP int defaultNorm () const
 
CV_WRAP void write (const String &fileName) const
 
CV_WRAP void read (const String &fileName)
 
virtual void write (FileStorage &) const CV_OVERRIDE
 Stores algorithm parameters in a file storage [詳解]
 
virtual CV_WRAP void read (const FileNode &) CV_OVERRIDE
 Reads algorithm parameters from a file storage [詳解]
 
virtual CV_WRAP bool empty () const CV_OVERRIDE
 Return true if detector object is empty [詳解]
 
virtual CV_WRAP String getDefaultName () const CV_OVERRIDE
 
CV_WRAP void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 
- 基底クラス cv::Algorithm に属する継承公開メンバ関数
virtual CV_WRAP void clear ()
 Clears the algorithm state [詳解]
 
CV_WRAP void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 simplified API for language bindings これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。
 
virtual CV_WRAP void save (const String &filename) const
 
- 基底クラス cv::Algorithm に属する継承限定公開メンバ関数
void writeFormat (FileStorage &fs) const
 

詳解

Class implementing the Harris-Laplace feature detector as described in [Mikolajczyk2004].

関数詳解

◆ create()

static CV_WRAP Ptr< HarrisLaplaceFeatureDetector > cv::xfeatures2d::HarrisLaplaceFeatureDetector::create ( int  numOctaves = 6,
float  corn_thresh = 0.01f,
float  DOG_thresh = 0.01f,
int  maxCorners = 5000,
int  num_layers = 4 
)
static

Creates a new implementation instance.

引数
numOctavesthe number of octaves in the scale-space pyramid
corn_threshthe threshold for the Harris cornerness measure
DOG_threshthe threshold for the Difference-of-Gaussians scale selection
maxCornersthe maximum number of corners to consider
num_layersthe number of intermediate scales per octave

このクラス詳解は次のファイルから抽出されました: