Home
last modified time | relevance | path

Searched refs:SimpleBlobDetector (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/samples/cpp/
Ddetect_blob.cpp19 static String Legende(SimpleBlobDetector::Params &pAct) in Legende()
92 SimpleBlobDetector::Params pDefaultBLOB; in main()
116 vector<SimpleBlobDetector::Params> pBLOB; in main()
117 vector<SimpleBlobDetector::Params>::iterator itBLOB; in main()
173 b = SimpleBlobDetector::create(*itBLOB); in main()
184 if (b.dynamicCast<SimpleBlobDetector>() != NULL) in main()
186 Ptr<SimpleBlobDetector> sbd = b.dynamicCast<SimpleBlobDetector>(); in main()
/external/opencv3/modules/features2d/src/
Dblobdetector.cpp61 class CV_EXPORTS_W SimpleBlobDetectorImpl : public SimpleBlobDetector
65 …explicit SimpleBlobDetectorImpl(const SimpleBlobDetector::Params &parameters = SimpleBlobDetector:…
87 SimpleBlobDetector::Params::Params() in Params()
117 void SimpleBlobDetector::Params::read(const cv::FileNode& fn ) in read()
146 void SimpleBlobDetector::Params::write(cv::FileStorage& fs) const in write()
175 SimpleBlobDetectorImpl::SimpleBlobDetectorImpl(const SimpleBlobDetector::Params &parameters) : in SimpleBlobDetectorImpl()
368 Ptr<SimpleBlobDetector> SimpleBlobDetector::create(const SimpleBlobDetector::Params& params) in create()
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp519 class CV_EXPORTS_W SimpleBlobDetector : public Feature2D class
550 CV_WRAP static Ptr<SimpleBlobDetector>
551 create(const SimpleBlobDetector::Params &parameters = SimpleBlobDetector::Params());
/external/opencv3/modules/features2d/misc/java/src/cpp/
Dfeatures2d_manual.hpp143 fd = SimpleBlobDetector::create(); in CV_EXPORTS_AS()
/external/opencv3/modules/calib3d/include/opencv2/
Dcalib3d.hpp696 … const Ptr<FeatureDetector> &blobDetector = SimpleBlobDetector::create());
/external/opencv3/modules/python/src2/
Dcv2.cpp113 typedef SimpleBlobDetector::Params SimpleBlobDetector_Params;
/external/opencv3/modules/java/src/
Dcalib3d.cpp2272 …al_ = cv::findCirclesGrid( image, patternSize, centers, (int)flags, SimpleBlobDetector::create() ); in Java_org_opencv_calib3d_Calib3d_findCirclesGrid_10()