#include <features2d.hpp>
Inherits cv::FeatureDetector.
Classes | |
struct | Center |
struct | Params |
Public Member Functions | |
SimpleBlobDetector (const SimpleBlobDetector::Params ¶meters=SimpleBlobDetector::Params()) | |
void | detect (const Mat &image, vector< KeyPoint > &keypoints, const Mat &mask=Mat()) const |
void | detect (const vector< Mat > &images, vector< vector< KeyPoint > > &keypoints, const vector< Mat > &masks=vector< Mat >()) const |
virtual void | read (const FileNode &) |
virtual void | write (FileStorage &) const |
virtual bool | empty () const |
Static Public Member Functions | |
static Ptr< FeatureDetector > | create (const string &detectorType) |
Protected Member Functions | |
virtual void | detectImpl (const Mat &image, vector< KeyPoint > &keypoints, const Mat &mask=Mat()) const |
virtual void | findBlobs (const cv::Mat &image, const cv::Mat &binaryImage, std::vector< Center > ¢ers) const |
Static Protected Member Functions | |
static void | removeInvalidPoints (const Mat &mask, vector< KeyPoint > &keypoints) |
Protected Attributes | |
Params | params |
cv::SimpleBlobDetector::SimpleBlobDetector | ( | const SimpleBlobDetector::Params & | parameters = SimpleBlobDetector::Params() | ) |
virtual void cv::SimpleBlobDetector::detectImpl | ( | const Mat & | image, |
vector< KeyPoint > & | keypoints, | ||
const Mat & | mask = Mat() |
||
) | const [protected, virtual] |
Implements cv::FeatureDetector.
virtual void cv::SimpleBlobDetector::findBlobs | ( | const cv::Mat & | image, |
const cv::Mat & | binaryImage, | ||
std::vector< Center > & | centers | ||
) | const [protected, virtual] |
void cv::FeatureDetector::detect | ( | const Mat & | image, |
vector< KeyPoint > & | keypoints, | ||
const Mat & | mask = Mat() |
||
) | const [inherited] |
void cv::FeatureDetector::detect | ( | const vector< Mat > & | images, |
vector< vector< KeyPoint > > & | keypoints, | ||
const vector< Mat > & | masks = vector< Mat >() |
||
) | const [inherited] |
virtual void cv::FeatureDetector::read | ( | const FileNode & | ) | [virtual, inherited] |
virtual void cv::FeatureDetector::write | ( | FileStorage & | ) | const [virtual, inherited] |
virtual bool cv::FeatureDetector::empty | ( | ) | const [virtual, inherited] |
Reimplemented in cv::DynamicAdaptedFeatureDetector, cv::PyramidAdaptedFeatureDetector, and cv::GridAdaptedFeatureDetector.
static Ptr<FeatureDetector> cv::FeatureDetector::create | ( | const string & | detectorType | ) | [static, inherited] |
Reimplemented in cv::AdjusterAdapter.
static void cv::FeatureDetector::removeInvalidPoints | ( | const Mat & | mask, |
vector< KeyPoint > & | keypoints | ||
) | [static, protected, inherited] |
Params cv::SimpleBlobDetector::params [protected] |