grid-adapted feature detector made a proper Algorithm (ticket #1874)
This commit is contained in:
parent
6206908868
commit
2990f23e0c
@ -508,13 +508,15 @@ public:
|
|||||||
* gridRows Grid rows count.
|
* gridRows Grid rows count.
|
||||||
* gridCols Grid column count.
|
* gridCols Grid column count.
|
||||||
*/
|
*/
|
||||||
CV_WRAP GridAdaptedFeatureDetector( const Ptr<FeatureDetector>& detector,
|
CV_WRAP GridAdaptedFeatureDetector( const Ptr<FeatureDetector>& detector=0,
|
||||||
int maxTotalKeypoints=1000,
|
int maxTotalKeypoints=1000,
|
||||||
int gridRows=4, int gridCols=4 );
|
int gridRows=4, int gridCols=4 );
|
||||||
|
|
||||||
// TODO implement read/write
|
// TODO implement read/write
|
||||||
virtual bool empty() const;
|
virtual bool empty() const;
|
||||||
|
|
||||||
|
AlgorithmInfo* info() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void detectImpl( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
|
virtual void detectImpl( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
|
||||||
|
|
||||||
|
@ -133,15 +133,22 @@ CV_INIT_ALGORITHM(DenseFeatureDetector, "Feature2D.Dense",
|
|||||||
obj.info()->addParam(obj, "varyXyStepWithScale", obj.varyXyStepWithScale);
|
obj.info()->addParam(obj, "varyXyStepWithScale", obj.varyXyStepWithScale);
|
||||||
obj.info()->addParam(obj, "varyImgBoundWithScale", obj.varyImgBoundWithScale));
|
obj.info()->addParam(obj, "varyImgBoundWithScale", obj.varyImgBoundWithScale));
|
||||||
|
|
||||||
|
CV_INIT_ALGORITHM(GridAdaptedFeatureDetector, "Feature2D.Grid",
|
||||||
|
obj.info()->addParam(obj, "detector", (Ptr<Algorithm>&)obj.detector);
|
||||||
|
obj.info()->addParam(obj, "maxTotalKeypoints", obj.maxTotalKeypoints);
|
||||||
|
obj.info()->addParam(obj, "gridRows", obj.gridRows);
|
||||||
|
obj.info()->addParam(obj, "gridCols", obj.gridCols));
|
||||||
|
|
||||||
bool initModule_features2d(void)
|
bool initModule_features2d(void)
|
||||||
{
|
{
|
||||||
Ptr<Algorithm> brief = createBriefDescriptorExtractor(), orb = createORB(),
|
Ptr<Algorithm> brief = createBriefDescriptorExtractor(), orb = createORB(),
|
||||||
star = createStarDetector(), fastd = createFastFeatureDetector(), mser = createMSER(),
|
star = createStarDetector(), fastd = createFastFeatureDetector(), mser = createMSER(),
|
||||||
dense = createDenseFeatureDetector(), gftt = createGFTTDetector(), harris = createHarrisDetector();
|
dense = createDenseFeatureDetector(), gftt = createGFTTDetector(),
|
||||||
|
harris = createHarrisDetector(), grid = createGridAdaptedFeatureDetector();
|
||||||
|
|
||||||
return brief->info() != 0 && orb->info() != 0 && star->info() != 0 &&
|
return brief->info() != 0 && orb->info() != 0 && star->info() != 0 &&
|
||||||
fastd->info() != 0 && mser->info() != 0 && dense->info() != 0 &&
|
fastd->info() != 0 && mser->info() != 0 && dense->info() != 0 &&
|
||||||
gftt->info() != 0 && harris->info() != 0;
|
gftt->info() != 0 && harris->info() != 0 && grid->info() != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user