features2d.hpp 58 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
  14. // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
  15. // Third party copyrights are property of their respective owners.
  16. //
  17. // Redistribution and use in source and binary forms, with or without modification,
  18. // are permitted provided that the following conditions are met:
  19. //
  20. // * Redistribution's of source code must retain the above copyright notice,
  21. // this list of conditions and the following disclaimer.
  22. //
  23. // * Redistribution's in binary form must reproduce the above copyright notice,
  24. // this list of conditions and the following disclaimer in the documentation
  25. // and/or other materials provided with the distribution.
  26. //
  27. // * The name of the copyright holders may not be used to endorse or promote products
  28. // derived from this software without specific prior written permission.
  29. //
  30. // This software is provided by the copyright holders and contributors "as is" and
  31. // any express or implied warranties, including, but not limited to, the implied
  32. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  33. // In no event shall the Intel Corporation or contributors be liable for any direct,
  34. // indirect, incidental, special, exemplary, or consequential damages
  35. // (including, but not limited to, procurement of substitute goods or services;
  36. // loss of use, data, or profits; or business interruption) however caused
  37. // and on any theory of liability, whether in contract, strict liability,
  38. // or tort (including negligence or otherwise) arising in any way out of
  39. // the use of this software, even if advised of the possibility of such damage.
  40. //
  41. //M*/
  42. #ifndef __OPENCV_FEATURES_2D_HPP__
  43. #define __OPENCV_FEATURES_2D_HPP__
  44. #include "opencv2/core.hpp"
  45. #include "opencv2/flann/miniflann.hpp"
  46. /**
  47. @defgroup features2d 2D Features Framework
  48. @{
  49. @defgroup features2d_main Feature Detection and Description
  50. @defgroup features2d_match Descriptor Matchers
  51. Matchers of keypoint descriptors in OpenCV have wrappers with a common interface that enables you to
  52. easily switch between different algorithms solving the same problem. This section is devoted to
  53. matching descriptors that are represented as vectors in a multidimensional space. All objects that
  54. implement vector descriptor matchers inherit the DescriptorMatcher interface.
  55. @note
  56. - An example explaining keypoint matching can be found at
  57. opencv_source_code/samples/cpp/descriptor_extractor_matcher.cpp
  58. - An example on descriptor matching evaluation can be found at
  59. opencv_source_code/samples/cpp/detector_descriptor_matcher_evaluation.cpp
  60. - An example on one to many image matching can be found at
  61. opencv_source_code/samples/cpp/matching_to_many_images.cpp
  62. @defgroup features2d_draw Drawing Function of Keypoints and Matches
  63. @defgroup features2d_category Object Categorization
  64. This section describes approaches based on local 2D features and used to categorize objects.
  65. @note
  66. - A complete Bag-Of-Words sample can be found at
  67. opencv_source_code/samples/cpp/bagofwords_classification.cpp
  68. - (Python) An example using the features2D framework to perform object categorization can be
  69. found at opencv_source_code/samples/python/find_obj.py
  70. @}
  71. */
  72. namespace cv
  73. {
  74. //! @addtogroup features2d
  75. //! @{
  76. // //! writes vector of keypoints to the file storage
  77. // CV_EXPORTS void write(FileStorage& fs, const String& name, const std::vector<KeyPoint>& keypoints);
  78. // //! reads vector of keypoints from the specified file storage node
  79. // CV_EXPORTS void read(const FileNode& node, CV_OUT std::vector<KeyPoint>& keypoints);
  80. /** @brief A class filters a vector of keypoints.
  81. Because now it is difficult to provide a convenient interface for all usage scenarios of the
  82. keypoints filter class, it has only several needed by now static methods.
  83. */
  84. class CV_EXPORTS KeyPointsFilter
  85. {
  86. public:
  87. KeyPointsFilter(){}
  88. /*
  89. * Remove keypoints within borderPixels of an image edge.
  90. */
  91. static void runByImageBorder( std::vector<KeyPoint>& keypoints, Size imageSize, int borderSize );
  92. /*
  93. * Remove keypoints of sizes out of range.
  94. */
  95. static void runByKeypointSize( std::vector<KeyPoint>& keypoints, float minSize,
  96. float maxSize=FLT_MAX );
  97. /*
  98. * Remove keypoints from some image by mask for pixels of this image.
  99. */
  100. static void runByPixelsMask( std::vector<KeyPoint>& keypoints, const Mat& mask );
  101. /*
  102. * Remove duplicated keypoints.
  103. */
  104. static void removeDuplicated( std::vector<KeyPoint>& keypoints );
  105. /*
  106. * Retain the specified number of the best keypoints (according to the response)
  107. */
  108. static void retainBest( std::vector<KeyPoint>& keypoints, int npoints );
  109. };
  110. /************************************ Base Classes ************************************/
  111. /** @brief Abstract base class for 2D image feature detectors and descriptor extractors
  112. */
  113. class CV_EXPORTS_W Feature2D : public virtual Algorithm
  114. {
  115. public:
  116. virtual ~Feature2D();
  117. /** @brief Detects keypoints in an image (first variant) or image set (second variant).
  118. @param image Image.
  119. @param keypoints The detected keypoints. In the second variant of the method keypoints[i] is a set
  120. of keypoints detected in images[i] .
  121. @param mask Mask specifying where to look for keypoints (optional). It must be a 8-bit integer
  122. matrix with non-zero values in the region of interest.
  123. */
  124. CV_WRAP virtual void detect( InputArray image,
  125. CV_OUT std::vector<KeyPoint>& keypoints,
  126. InputArray mask=noArray() );
  127. /** @overload
  128. @param images Image set.
  129. @param keypoints The detected keypoints. In the second variant of the method keypoints[i] is a set
  130. of keypoints detected in images[i] .
  131. @param masks Masks for each input image specifying where to look for keypoints (optional).
  132. masks[i] is a mask for images[i].
  133. */
  134. virtual void detect( InputArrayOfArrays images,
  135. std::vector<std::vector<KeyPoint> >& keypoints,
  136. InputArrayOfArrays masks=noArray() );
  137. /** @brief Computes the descriptors for a set of keypoints detected in an image (first variant) or image set
  138. (second variant).
  139. @param image Image.
  140. @param keypoints Input collection of keypoints. Keypoints for which a descriptor cannot be
  141. computed are removed. Sometimes new keypoints can be added, for example: SIFT duplicates keypoint
  142. with several dominant orientations (for each orientation).
  143. @param descriptors Computed descriptors. In the second variant of the method descriptors[i] are
  144. descriptors computed for a keypoints[i]. Row j is the keypoints (or keypoints[i]) is the
  145. descriptor for keypoint j-th keypoint.
  146. */
  147. CV_WRAP virtual void compute( InputArray image,
  148. CV_OUT CV_IN_OUT std::vector<KeyPoint>& keypoints,
  149. OutputArray descriptors );
  150. /** @overload
  151. @param images Image set.
  152. @param keypoints Input collection of keypoints. Keypoints for which a descriptor cannot be
  153. computed are removed. Sometimes new keypoints can be added, for example: SIFT duplicates keypoint
  154. with several dominant orientations (for each orientation).
  155. @param descriptors Computed descriptors. In the second variant of the method descriptors[i] are
  156. descriptors computed for a keypoints[i]. Row j is the keypoints (or keypoints[i]) is the
  157. descriptor for keypoint j-th keypoint.
  158. */
  159. virtual void compute( InputArrayOfArrays images,
  160. std::vector<std::vector<KeyPoint> >& keypoints,
  161. OutputArrayOfArrays descriptors );
  162. /** Detects keypoints and computes the descriptors */
  163. CV_WRAP virtual void detectAndCompute( InputArray image, InputArray mask,
  164. CV_OUT std::vector<KeyPoint>& keypoints,
  165. OutputArray descriptors,
  166. bool useProvidedKeypoints=false );
  167. CV_WRAP virtual int descriptorSize() const;
  168. CV_WRAP virtual int descriptorType() const;
  169. CV_WRAP virtual int defaultNorm() const;
  170. //! Return true if detector object is empty
  171. CV_WRAP virtual bool empty() const;
  172. };
  173. /** Feature detectors in OpenCV have wrappers with a common interface that enables you to easily switch
  174. between different algorithms solving the same problem. All objects that implement keypoint detectors
  175. inherit the FeatureDetector interface. */
  176. typedef Feature2D FeatureDetector;
  177. /** Extractors of keypoint descriptors in OpenCV have wrappers with a common interface that enables you
  178. to easily switch between different algorithms solving the same problem. This section is devoted to
  179. computing descriptors represented as vectors in a multidimensional space. All objects that implement
  180. the vector descriptor extractors inherit the DescriptorExtractor interface.
  181. */
  182. typedef Feature2D DescriptorExtractor;
  183. //! @addtogroup features2d_main
  184. //! @{
  185. /** @brief Class implementing the BRISK keypoint detector and descriptor extractor, described in @cite LCS11 .
  186. */
  187. class CV_EXPORTS_W BRISK : public Feature2D
  188. {
  189. public:
  190. /** @brief The BRISK constructor
  191. @param thresh AGAST detection threshold score.
  192. @param octaves detection octaves. Use 0 to do single scale.
  193. @param patternScale apply this scale to the pattern used for sampling the neighbourhood of a
  194. keypoint.
  195. */
  196. CV_WRAP static Ptr<BRISK> create(int thresh=30, int octaves=3, float patternScale=1.0f);
  197. /** @brief The BRISK constructor for a custom pattern
  198. @param radiusList defines the radii (in pixels) where the samples around a keypoint are taken (for
  199. keypoint scale 1).
  200. @param numberList defines the number of sampling points on the sampling circle. Must be the same
  201. size as radiusList..
  202. @param dMax threshold for the short pairings used for descriptor formation (in pixels for keypoint
  203. scale 1).
  204. @param dMin threshold for the long pairings used for orientation determination (in pixels for
  205. keypoint scale 1).
  206. @param indexChange index remapping of the bits. */
  207. CV_WRAP static Ptr<BRISK> create(const std::vector<float> &radiusList, const std::vector<int> &numberList,
  208. float dMax=5.85f, float dMin=8.2f, const std::vector<int>& indexChange=std::vector<int>());
  209. };
  210. /** @brief Class implementing the ORB (*oriented BRIEF*) keypoint detector and descriptor extractor
  211. described in @cite RRKB11 . The algorithm uses FAST in pyramids to detect stable keypoints, selects
  212. the strongest features using FAST or Harris response, finds their orientation using first-order
  213. moments and computes the descriptors using BRIEF (where the coordinates of random point pairs (or
  214. k-tuples) are rotated according to the measured orientation).
  215. */
  216. class CV_EXPORTS_W ORB : public Feature2D
  217. {
  218. public:
  219. enum { kBytes = 32, HARRIS_SCORE=0, FAST_SCORE=1 };
  220. /** @brief The ORB constructor
  221. @param nfeatures The maximum number of features to retain.
  222. @param scaleFactor Pyramid decimation ratio, greater than 1. scaleFactor==2 means the classical
  223. pyramid, where each next level has 4x less pixels than the previous, but such a big scale factor
  224. will degrade feature matching scores dramatically. On the other hand, too close to 1 scale factor
  225. will mean that to cover certain scale range you will need more pyramid levels and so the speed
  226. will suffer.
  227. @param nlevels The number of pyramid levels. The smallest level will have linear size equal to
  228. input_image_linear_size/pow(scaleFactor, nlevels).
  229. @param edgeThreshold This is size of the border where the features are not detected. It should
  230. roughly match the patchSize parameter.
  231. @param firstLevel It should be 0 in the current implementation.
  232. @param WTA_K The number of points that produce each element of the oriented BRIEF descriptor. The
  233. default value 2 means the BRIEF where we take a random point pair and compare their brightnesses,
  234. so we get 0/1 response. Other possible values are 3 and 4. For example, 3 means that we take 3
  235. random points (of course, those point coordinates are random, but they are generated from the
  236. pre-defined seed, so each element of BRIEF descriptor is computed deterministically from the pixel
  237. rectangle), find point of maximum brightness and output index of the winner (0, 1 or 2). Such
  238. output will occupy 2 bits, and therefore it will need a special variant of Hamming distance,
  239. denoted as NORM_HAMMING2 (2 bits per bin). When WTA_K=4, we take 4 random points to compute each
  240. bin (that will also occupy 2 bits with possible values 0, 1, 2 or 3).
  241. @param scoreType The default HARRIS_SCORE means that Harris algorithm is used to rank features
  242. (the score is written to KeyPoint::score and is used to retain best nfeatures features);
  243. FAST_SCORE is alternative value of the parameter that produces slightly less stable keypoints,
  244. but it is a little faster to compute.
  245. @param patchSize size of the patch used by the oriented BRIEF descriptor. Of course, on smaller
  246. pyramid layers the perceived image area covered by a feature will be larger.
  247. @param fastThreshold
  248. */
  249. CV_WRAP static Ptr<ORB> create(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeThreshold=31,
  250. int firstLevel=0, int WTA_K=2, int scoreType=ORB::HARRIS_SCORE, int patchSize=31, int fastThreshold=20);
  251. CV_WRAP virtual void setMaxFeatures(int maxFeatures) = 0;
  252. CV_WRAP virtual int getMaxFeatures() const = 0;
  253. CV_WRAP virtual void setScaleFactor(double scaleFactor) = 0;
  254. CV_WRAP virtual double getScaleFactor() const = 0;
  255. CV_WRAP virtual void setNLevels(int nlevels) = 0;
  256. CV_WRAP virtual int getNLevels() const = 0;
  257. CV_WRAP virtual void setEdgeThreshold(int edgeThreshold) = 0;
  258. CV_WRAP virtual int getEdgeThreshold() const = 0;
  259. CV_WRAP virtual void setFirstLevel(int firstLevel) = 0;
  260. CV_WRAP virtual int getFirstLevel() const = 0;
  261. CV_WRAP virtual void setWTA_K(int wta_k) = 0;
  262. CV_WRAP virtual int getWTA_K() const = 0;
  263. CV_WRAP virtual void setScoreType(int scoreType) = 0;
  264. CV_WRAP virtual int getScoreType() const = 0;
  265. CV_WRAP virtual void setPatchSize(int patchSize) = 0;
  266. CV_WRAP virtual int getPatchSize() const = 0;
  267. CV_WRAP virtual void setFastThreshold(int fastThreshold) = 0;
  268. CV_WRAP virtual int getFastThreshold() const = 0;
  269. };
  270. /** @brief Maximally stable extremal region extractor
  271. The class encapsulates all the parameters of the %MSER extraction algorithm (see [wiki
  272. article](http://en.wikipedia.org/wiki/Maximally_stable_extremal_regions)).
  273. - there are two different implementation of %MSER: one for grey image, one for color image
  274. - the grey image algorithm is taken from: @cite nister2008linear ; the paper claims to be faster
  275. than union-find method; it actually get 1.5~2m/s on my centrino L7200 1.2GHz laptop.
  276. - the color image algorithm is taken from: @cite forssen2007maximally ; it should be much slower
  277. than grey image method ( 3~4 times ); the chi_table.h file is taken directly from paper's source
  278. code which is distributed under GPL.
  279. - (Python) A complete example showing the use of the %MSER detector can be found at samples/python/mser.py
  280. */
  281. class CV_EXPORTS_W MSER : public Feature2D
  282. {
  283. public:
  284. /** @brief Full consturctor for %MSER detector
  285. @param _delta it compares \f$(size_{i}-size_{i-delta})/size_{i-delta}\f$
  286. @param _min_area prune the area which smaller than minArea
  287. @param _max_area prune the area which bigger than maxArea
  288. @param _max_variation prune the area have simliar size to its children
  289. @param _min_diversity for color image, trace back to cut off mser with diversity less than min_diversity
  290. @param _max_evolution for color image, the evolution steps
  291. @param _area_threshold for color image, the area threshold to cause re-initialize
  292. @param _min_margin for color image, ignore too small margin
  293. @param _edge_blur_size for color image, the aperture size for edge blur
  294. */
  295. CV_WRAP static Ptr<MSER> create( int _delta=5, int _min_area=60, int _max_area=14400,
  296. double _max_variation=0.25, double _min_diversity=.2,
  297. int _max_evolution=200, double _area_threshold=1.01,
  298. double _min_margin=0.003, int _edge_blur_size=5 );
  299. /** @brief Detect %MSER regions
  300. @param image input image (8UC1, 8UC3 or 8UC4)
  301. @param msers resulting list of point sets
  302. @param bboxes resulting bounding boxes
  303. */
  304. CV_WRAP virtual void detectRegions( InputArray image,
  305. CV_OUT std::vector<std::vector<Point> >& msers,
  306. std::vector<Rect>& bboxes ) = 0;
  307. CV_WRAP virtual void setDelta(int delta) = 0;
  308. CV_WRAP virtual int getDelta() const = 0;
  309. CV_WRAP virtual void setMinArea(int minArea) = 0;
  310. CV_WRAP virtual int getMinArea() const = 0;
  311. CV_WRAP virtual void setMaxArea(int maxArea) = 0;
  312. CV_WRAP virtual int getMaxArea() const = 0;
  313. CV_WRAP virtual void setPass2Only(bool f) = 0;
  314. CV_WRAP virtual bool getPass2Only() const = 0;
  315. };
  316. /** @overload */
  317. CV_EXPORTS void FAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
  318. int threshold, bool nonmaxSuppression=true );
  319. /** @brief Detects corners using the FAST algorithm
  320. @param image grayscale image where keypoints (corners) are detected.
  321. @param keypoints keypoints detected on the image.
  322. @param threshold threshold on difference between intensity of the central pixel and pixels of a
  323. circle around this pixel.
  324. @param nonmaxSuppression if true, non-maximum suppression is applied to detected corners
  325. (keypoints).
  326. @param type one of the three neighborhoods as defined in the paper:
  327. FastFeatureDetector::TYPE_9_16, FastFeatureDetector::TYPE_7_12,
  328. FastFeatureDetector::TYPE_5_8
  329. Detects corners using the FAST algorithm by @cite Rosten06 .
  330. @note In Python API, types are given as cv2.FAST_FEATURE_DETECTOR_TYPE_5_8,
  331. cv2.FAST_FEATURE_DETECTOR_TYPE_7_12 and cv2.FAST_FEATURE_DETECTOR_TYPE_9_16. For corner
  332. detection, use cv2.FAST.detect() method.
  333. */
  334. CV_EXPORTS void FAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
  335. int threshold, bool nonmaxSuppression, int type );
  336. //! @} features2d_main
  337. //! @addtogroup features2d_main
  338. //! @{
  339. /** @brief Wrapping class for feature detection using the FAST method. :
  340. */
  341. class CV_EXPORTS_W FastFeatureDetector : public Feature2D
  342. {
  343. public:
  344. enum
  345. {
  346. TYPE_5_8 = 0, TYPE_7_12 = 1, TYPE_9_16 = 2,
  347. THRESHOLD = 10000, NONMAX_SUPPRESSION=10001, FAST_N=10002,
  348. };
  349. CV_WRAP static Ptr<FastFeatureDetector> create( int threshold=10,
  350. bool nonmaxSuppression=true,
  351. int type=FastFeatureDetector::TYPE_9_16 );
  352. CV_WRAP virtual void setThreshold(int threshold) = 0;
  353. CV_WRAP virtual int getThreshold() const = 0;
  354. CV_WRAP virtual void setNonmaxSuppression(bool f) = 0;
  355. CV_WRAP virtual bool getNonmaxSuppression() const = 0;
  356. CV_WRAP virtual void setType(int type) = 0;
  357. CV_WRAP virtual int getType() const = 0;
  358. };
  359. /** @overload */
  360. CV_EXPORTS void AGAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
  361. int threshold, bool nonmaxSuppression=true );
  362. /** @brief Detects corners using the AGAST algorithm
  363. @param image grayscale image where keypoints (corners) are detected.
  364. @param keypoints keypoints detected on the image.
  365. @param threshold threshold on difference between intensity of the central pixel and pixels of a
  366. circle around this pixel.
  367. @param nonmaxSuppression if true, non-maximum suppression is applied to detected corners
  368. (keypoints).
  369. @param type one of the four neighborhoods as defined in the paper:
  370. AgastFeatureDetector::AGAST_5_8, AgastFeatureDetector::AGAST_7_12d,
  371. AgastFeatureDetector::AGAST_7_12s, AgastFeatureDetector::OAST_9_16
  372. For non-Intel platforms, there is a tree optimised variant of AGAST with same numerical results.
  373. The 32-bit binary tree tables were generated automatically from original code using perl script.
  374. The perl script and examples of tree generation are placed in features2d/doc folder.
  375. Detects corners using the AGAST algorithm by @cite mair2010_agast .
  376. */
  377. CV_EXPORTS void AGAST( InputArray image, CV_OUT std::vector<KeyPoint>& keypoints,
  378. int threshold, bool nonmaxSuppression, int type );
  379. //! @} features2d_main
  380. //! @addtogroup features2d_main
  381. //! @{
  382. /** @brief Wrapping class for feature detection using the AGAST method. :
  383. */
  384. class CV_EXPORTS_W AgastFeatureDetector : public Feature2D
  385. {
  386. public:
  387. enum
  388. {
  389. AGAST_5_8 = 0, AGAST_7_12d = 1, AGAST_7_12s = 2, OAST_9_16 = 3,
  390. THRESHOLD = 10000, NONMAX_SUPPRESSION = 10001,
  391. };
  392. CV_WRAP static Ptr<AgastFeatureDetector> create( int threshold=10,
  393. bool nonmaxSuppression=true,
  394. int type=AgastFeatureDetector::OAST_9_16 );
  395. CV_WRAP virtual void setThreshold(int threshold) = 0;
  396. CV_WRAP virtual int getThreshold() const = 0;
  397. CV_WRAP virtual void setNonmaxSuppression(bool f) = 0;
  398. CV_WRAP virtual bool getNonmaxSuppression() const = 0;
  399. CV_WRAP virtual void setType(int type) = 0;
  400. CV_WRAP virtual int getType() const = 0;
  401. };
  402. /** @brief Wrapping class for feature detection using the goodFeaturesToTrack function. :
  403. */
  404. class CV_EXPORTS_W GFTTDetector : public Feature2D
  405. {
  406. public:
  407. CV_WRAP static Ptr<GFTTDetector> create( int maxCorners=1000, double qualityLevel=0.01, double minDistance=1,
  408. int blockSize=3, bool useHarrisDetector=false, double k=0.04 );
  409. CV_WRAP virtual void setMaxFeatures(int maxFeatures) = 0;
  410. CV_WRAP virtual int getMaxFeatures() const = 0;
  411. CV_WRAP virtual void setQualityLevel(double qlevel) = 0;
  412. CV_WRAP virtual double getQualityLevel() const = 0;
  413. CV_WRAP virtual void setMinDistance(double minDistance) = 0;
  414. CV_WRAP virtual double getMinDistance() const = 0;
  415. CV_WRAP virtual void setBlockSize(int blockSize) = 0;
  416. CV_WRAP virtual int getBlockSize() const = 0;
  417. CV_WRAP virtual void setHarrisDetector(bool val) = 0;
  418. CV_WRAP virtual bool getHarrisDetector() const = 0;
  419. CV_WRAP virtual void setK(double k) = 0;
  420. CV_WRAP virtual double getK() const = 0;
  421. };
  422. /** @brief Class for extracting blobs from an image. :
  423. The class implements a simple algorithm for extracting blobs from an image:
  424. 1. Convert the source image to binary images by applying thresholding with several thresholds from
  425. minThreshold (inclusive) to maxThreshold (exclusive) with distance thresholdStep between
  426. neighboring thresholds.
  427. 2. Extract connected components from every binary image by findContours and calculate their
  428. centers.
  429. 3. Group centers from several binary images by their coordinates. Close centers form one group that
  430. corresponds to one blob, which is controlled by the minDistBetweenBlobs parameter.
  431. 4. From the groups, estimate final centers of blobs and their radiuses and return as locations and
  432. sizes of keypoints.
  433. This class performs several filtrations of returned blobs. You should set filterBy\* to true/false
  434. to turn on/off corresponding filtration. Available filtrations:
  435. - **By color**. This filter compares the intensity of a binary image at the center of a blob to
  436. blobColor. If they differ, the blob is filtered out. Use blobColor = 0 to extract dark blobs
  437. and blobColor = 255 to extract light blobs.
  438. - **By area**. Extracted blobs have an area between minArea (inclusive) and maxArea (exclusive).
  439. - **By circularity**. Extracted blobs have circularity
  440. (\f$\frac{4*\pi*Area}{perimeter * perimeter}\f$) between minCircularity (inclusive) and
  441. maxCircularity (exclusive).
  442. - **By ratio of the minimum inertia to maximum inertia**. Extracted blobs have this ratio
  443. between minInertiaRatio (inclusive) and maxInertiaRatio (exclusive).
  444. - **By convexity**. Extracted blobs have convexity (area / area of blob convex hull) between
  445. minConvexity (inclusive) and maxConvexity (exclusive).
  446. Default values of parameters are tuned to extract dark circular blobs.
  447. */
  448. class CV_EXPORTS_W SimpleBlobDetector : public Feature2D
  449. {
  450. public:
  451. struct CV_EXPORTS_W_SIMPLE Params
  452. {
  453. CV_WRAP Params();
  454. CV_PROP_RW float thresholdStep;
  455. CV_PROP_RW float minThreshold;
  456. CV_PROP_RW float maxThreshold;
  457. CV_PROP_RW size_t minRepeatability;
  458. CV_PROP_RW float minDistBetweenBlobs;
  459. CV_PROP_RW bool filterByColor;
  460. CV_PROP_RW uchar blobColor;
  461. CV_PROP_RW bool filterByArea;
  462. CV_PROP_RW float minArea, maxArea;
  463. CV_PROP_RW bool filterByCircularity;
  464. CV_PROP_RW float minCircularity, maxCircularity;
  465. CV_PROP_RW bool filterByInertia;
  466. CV_PROP_RW float minInertiaRatio, maxInertiaRatio;
  467. CV_PROP_RW bool filterByConvexity;
  468. CV_PROP_RW float minConvexity, maxConvexity;
  469. void read( const FileNode& fn );
  470. void write( FileStorage& fs ) const;
  471. };
  472. CV_WRAP static Ptr<SimpleBlobDetector>
  473. create(const SimpleBlobDetector::Params &parameters = SimpleBlobDetector::Params());
  474. };
  475. //! @} features2d_main
  476. //! @addtogroup features2d_main
  477. //! @{
  478. /** @brief Class implementing the KAZE keypoint detector and descriptor extractor, described in @cite ABD12 .
  479. @note AKAZE descriptor can only be used with KAZE or AKAZE keypoints .. [ABD12] KAZE Features. Pablo
  480. F. Alcantarilla, Adrien Bartoli and Andrew J. Davison. In European Conference on Computer Vision
  481. (ECCV), Fiorenze, Italy, October 2012.
  482. */
  483. class CV_EXPORTS_W KAZE : public Feature2D
  484. {
  485. public:
  486. enum
  487. {
  488. DIFF_PM_G1 = 0,
  489. DIFF_PM_G2 = 1,
  490. DIFF_WEICKERT = 2,
  491. DIFF_CHARBONNIER = 3
  492. };
  493. /** @brief The KAZE constructor
  494. @param extended Set to enable extraction of extended (128-byte) descriptor.
  495. @param upright Set to enable use of upright descriptors (non rotation-invariant).
  496. @param threshold Detector response threshold to accept point
  497. @param nOctaves Maximum octave evolution of the image
  498. @param nOctaveLayers Default number of sublevels per scale level
  499. @param diffusivity Diffusivity type. DIFF_PM_G1, DIFF_PM_G2, DIFF_WEICKERT or
  500. DIFF_CHARBONNIER
  501. */
  502. CV_WRAP static Ptr<KAZE> create(bool extended=false, bool upright=false,
  503. float threshold = 0.001f,
  504. int nOctaves = 4, int nOctaveLayers = 4,
  505. int diffusivity = KAZE::DIFF_PM_G2);
  506. CV_WRAP virtual void setExtended(bool extended) = 0;
  507. CV_WRAP virtual bool getExtended() const = 0;
  508. CV_WRAP virtual void setUpright(bool upright) = 0;
  509. CV_WRAP virtual bool getUpright() const = 0;
  510. CV_WRAP virtual void setThreshold(double threshold) = 0;
  511. CV_WRAP virtual double getThreshold() const = 0;
  512. CV_WRAP virtual void setNOctaves(int octaves) = 0;
  513. CV_WRAP virtual int getNOctaves() const = 0;
  514. CV_WRAP virtual void setNOctaveLayers(int octaveLayers) = 0;
  515. CV_WRAP virtual int getNOctaveLayers() const = 0;
  516. CV_WRAP virtual void setDiffusivity(int diff) = 0;
  517. CV_WRAP virtual int getDiffusivity() const = 0;
  518. };
  519. /** @brief Class implementing the AKAZE keypoint detector and descriptor extractor, described in @cite ANB13 . :
  520. @note AKAZE descriptors can only be used with KAZE or AKAZE keypoints. Try to avoid using *extract*
  521. and *detect* instead of *operator()* due to performance reasons. .. [ANB13] Fast Explicit Diffusion
  522. for Accelerated Features in Nonlinear Scale Spaces. Pablo F. Alcantarilla, Jesús Nuevo and Adrien
  523. Bartoli. In British Machine Vision Conference (BMVC), Bristol, UK, September 2013.
  524. */
  525. class CV_EXPORTS_W AKAZE : public Feature2D
  526. {
  527. public:
  528. // AKAZE descriptor type
  529. enum
  530. {
  531. DESCRIPTOR_KAZE_UPRIGHT = 2, ///< Upright descriptors, not invariant to rotation
  532. DESCRIPTOR_KAZE = 3,
  533. DESCRIPTOR_MLDB_UPRIGHT = 4, ///< Upright descriptors, not invariant to rotation
  534. DESCRIPTOR_MLDB = 5
  535. };
  536. /** @brief The AKAZE constructor
  537. @param descriptor_type Type of the extracted descriptor: DESCRIPTOR_KAZE,
  538. DESCRIPTOR_KAZE_UPRIGHT, DESCRIPTOR_MLDB or DESCRIPTOR_MLDB_UPRIGHT.
  539. @param descriptor_size Size of the descriptor in bits. 0 -\> Full size
  540. @param descriptor_channels Number of channels in the descriptor (1, 2, 3)
  541. @param threshold Detector response threshold to accept point
  542. @param nOctaves Maximum octave evolution of the image
  543. @param nOctaveLayers Default number of sublevels per scale level
  544. @param diffusivity Diffusivity type. DIFF_PM_G1, DIFF_PM_G2, DIFF_WEICKERT or
  545. DIFF_CHARBONNIER
  546. */
  547. CV_WRAP static Ptr<AKAZE> create(int descriptor_type=AKAZE::DESCRIPTOR_MLDB,
  548. int descriptor_size = 0, int descriptor_channels = 3,
  549. float threshold = 0.001f, int nOctaves = 4,
  550. int nOctaveLayers = 4, int diffusivity = KAZE::DIFF_PM_G2);
  551. CV_WRAP virtual void setDescriptorType(int dtype) = 0;
  552. CV_WRAP virtual int getDescriptorType() const = 0;
  553. CV_WRAP virtual void setDescriptorSize(int dsize) = 0;
  554. CV_WRAP virtual int getDescriptorSize() const = 0;
  555. CV_WRAP virtual void setDescriptorChannels(int dch) = 0;
  556. CV_WRAP virtual int getDescriptorChannels() const = 0;
  557. CV_WRAP virtual void setThreshold(double threshold) = 0;
  558. CV_WRAP virtual double getThreshold() const = 0;
  559. CV_WRAP virtual void setNOctaves(int octaves) = 0;
  560. CV_WRAP virtual int getNOctaves() const = 0;
  561. CV_WRAP virtual void setNOctaveLayers(int octaveLayers) = 0;
  562. CV_WRAP virtual int getNOctaveLayers() const = 0;
  563. CV_WRAP virtual void setDiffusivity(int diff) = 0;
  564. CV_WRAP virtual int getDiffusivity() const = 0;
  565. };
  566. //! @} features2d_main
  567. /****************************************************************************************\
  568. * Distance *
  569. \****************************************************************************************/
  570. template<typename T>
  571. struct CV_EXPORTS Accumulator
  572. {
  573. typedef T Type;
  574. };
  575. template<> struct Accumulator<unsigned char> { typedef float Type; };
  576. template<> struct Accumulator<unsigned short> { typedef float Type; };
  577. template<> struct Accumulator<char> { typedef float Type; };
  578. template<> struct Accumulator<short> { typedef float Type; };
  579. /*
  580. * Squared Euclidean distance functor
  581. */
  582. template<class T>
  583. struct CV_EXPORTS SL2
  584. {
  585. enum { normType = NORM_L2SQR };
  586. typedef T ValueType;
  587. typedef typename Accumulator<T>::Type ResultType;
  588. ResultType operator()( const T* a, const T* b, int size ) const
  589. {
  590. return normL2Sqr<ValueType, ResultType>(a, b, size);
  591. }
  592. };
  593. /*
  594. * Euclidean distance functor
  595. */
  596. template<class T>
  597. struct CV_EXPORTS L2
  598. {
  599. enum { normType = NORM_L2 };
  600. typedef T ValueType;
  601. typedef typename Accumulator<T>::Type ResultType;
  602. ResultType operator()( const T* a, const T* b, int size ) const
  603. {
  604. return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size));
  605. }
  606. };
  607. /*
  608. * Manhattan distance (city block distance) functor
  609. */
  610. template<class T>
  611. struct CV_EXPORTS L1
  612. {
  613. enum { normType = NORM_L1 };
  614. typedef T ValueType;
  615. typedef typename Accumulator<T>::Type ResultType;
  616. ResultType operator()( const T* a, const T* b, int size ) const
  617. {
  618. return normL1<ValueType, ResultType>(a, b, size);
  619. }
  620. };
  621. /****************************************************************************************\
  622. * DescriptorMatcher *
  623. \****************************************************************************************/
  624. //! @addtogroup features2d_match
  625. //! @{
  626. /** @brief Abstract base class for matching keypoint descriptors.
  627. It has two groups of match methods: for matching descriptors of an image with another image or with
  628. an image set.
  629. */
  630. class CV_EXPORTS_W DescriptorMatcher : public Algorithm
  631. {
  632. public:
  633. virtual ~DescriptorMatcher();
  634. /** @brief Adds descriptors to train a CPU(trainDescCollectionis) or GPU(utrainDescCollectionis) descriptor
  635. collection.
  636. If the collection is not empty, the new descriptors are added to existing train descriptors.
  637. @param descriptors Descriptors to add. Each descriptors[i] is a set of descriptors from the same
  638. train image.
  639. */
  640. CV_WRAP virtual void add( InputArrayOfArrays descriptors );
  641. /** @brief Returns a constant link to the train descriptor collection trainDescCollection .
  642. */
  643. CV_WRAP const std::vector<Mat>& getTrainDescriptors() const;
  644. /** @brief Clears the train descriptor collections.
  645. */
  646. CV_WRAP virtual void clear();
  647. /** @brief Returns true if there are no train descriptors in the both collections.
  648. */
  649. CV_WRAP virtual bool empty() const;
  650. /** @brief Returns true if the descriptor matcher supports masking permissible matches.
  651. */
  652. CV_WRAP virtual bool isMaskSupported() const = 0;
  653. /** @brief Trains a descriptor matcher
  654. Trains a descriptor matcher (for example, the flann index). In all methods to match, the method
  655. train() is run every time before matching. Some descriptor matchers (for example, BruteForceMatcher)
  656. have an empty implementation of this method. Other matchers really train their inner structures (for
  657. example, FlannBasedMatcher trains flann::Index ).
  658. */
  659. CV_WRAP virtual void train();
  660. /** @brief Finds the best match for each descriptor from a query set.
  661. @param queryDescriptors Query set of descriptors.
  662. @param trainDescriptors Train set of descriptors. This set is not added to the train descriptors
  663. collection stored in the class object.
  664. @param matches Matches. If a query descriptor is masked out in mask , no match is added for this
  665. descriptor. So, matches size may be smaller than the query descriptors count.
  666. @param mask Mask specifying permissible matches between an input query and train matrices of
  667. descriptors.
  668. In the first variant of this method, the train descriptors are passed as an input argument. In the
  669. second variant of the method, train descriptors collection that was set by DescriptorMatcher::add is
  670. used. Optional mask (or masks) can be passed to specify which query and training descriptors can be
  671. matched. Namely, queryDescriptors[i] can be matched with trainDescriptors[j] only if
  672. mask.at\<uchar\>(i,j) is non-zero.
  673. */
  674. CV_WRAP void match( InputArray queryDescriptors, InputArray trainDescriptors,
  675. CV_OUT std::vector<DMatch>& matches, InputArray mask=noArray() ) const;
  676. /** @brief Finds the k best matches for each descriptor from a query set.
  677. @param queryDescriptors Query set of descriptors.
  678. @param trainDescriptors Train set of descriptors. This set is not added to the train descriptors
  679. collection stored in the class object.
  680. @param mask Mask specifying permissible matches between an input query and train matrices of
  681. descriptors.
  682. @param matches Matches. Each matches[i] is k or less matches for the same query descriptor.
  683. @param k Count of best matches found per each query descriptor or less if a query descriptor has
  684. less than k possible matches in total.
  685. @param compactResult Parameter used when the mask (or masks) is not empty. If compactResult is
  686. false, the matches vector has the same size as queryDescriptors rows. If compactResult is true,
  687. the matches vector does not contain matches for fully masked-out query descriptors.
  688. These extended variants of DescriptorMatcher::match methods find several best matches for each query
  689. descriptor. The matches are returned in the distance increasing order. See DescriptorMatcher::match
  690. for the details about query and train descriptors.
  691. */
  692. CV_WRAP void knnMatch( InputArray queryDescriptors, InputArray trainDescriptors,
  693. CV_OUT std::vector<std::vector<DMatch> >& matches, int k,
  694. InputArray mask=noArray(), bool compactResult=false ) const;
  695. /** @brief For each query descriptor, finds the training descriptors not farther than the specified distance.
  696. @param queryDescriptors Query set of descriptors.
  697. @param trainDescriptors Train set of descriptors. This set is not added to the train descriptors
  698. collection stored in the class object.
  699. @param matches Found matches.
  700. @param compactResult Parameter used when the mask (or masks) is not empty. If compactResult is
  701. false, the matches vector has the same size as queryDescriptors rows. If compactResult is true,
  702. the matches vector does not contain matches for fully masked-out query descriptors.
  703. @param maxDistance Threshold for the distance between matched descriptors. Distance means here
  704. metric distance (e.g. Hamming distance), not the distance between coordinates (which is measured
  705. in Pixels)!
  706. @param mask Mask specifying permissible matches between an input query and train matrices of
  707. descriptors.
  708. For each query descriptor, the methods find such training descriptors that the distance between the
  709. query descriptor and the training descriptor is equal or smaller than maxDistance. Found matches are
  710. returned in the distance increasing order.
  711. */
  712. void radiusMatch( InputArray queryDescriptors, InputArray trainDescriptors,
  713. std::vector<std::vector<DMatch> >& matches, float maxDistance,
  714. InputArray mask=noArray(), bool compactResult=false ) const;
  715. /** @overload
  716. @param queryDescriptors Query set of descriptors.
  717. @param matches Matches. If a query descriptor is masked out in mask , no match is added for this
  718. descriptor. So, matches size may be smaller than the query descriptors count.
  719. @param masks Set of masks. Each masks[i] specifies permissible matches between the input query
  720. descriptors and stored train descriptors from the i-th image trainDescCollection[i].
  721. */
  722. CV_WRAP void match( InputArray queryDescriptors, CV_OUT std::vector<DMatch>& matches,
  723. InputArrayOfArrays masks=noArray() );
  724. /** @overload
  725. @param queryDescriptors Query set of descriptors.
  726. @param matches Matches. Each matches[i] is k or less matches for the same query descriptor.
  727. @param k Count of best matches found per each query descriptor or less if a query descriptor has
  728. less than k possible matches in total.
  729. @param masks Set of masks. Each masks[i] specifies permissible matches between the input query
  730. descriptors and stored train descriptors from the i-th image trainDescCollection[i].
  731. @param compactResult Parameter used when the mask (or masks) is not empty. If compactResult is
  732. false, the matches vector has the same size as queryDescriptors rows. If compactResult is true,
  733. the matches vector does not contain matches for fully masked-out query descriptors.
  734. */
  735. CV_WRAP void knnMatch( InputArray queryDescriptors, CV_OUT std::vector<std::vector<DMatch> >& matches, int k,
  736. InputArrayOfArrays masks=noArray(), bool compactResult=false );
  737. /** @overload
  738. @param queryDescriptors Query set of descriptors.
  739. @param matches Found matches.
  740. @param maxDistance Threshold for the distance between matched descriptors. Distance means here
  741. metric distance (e.g. Hamming distance), not the distance between coordinates (which is measured
  742. in Pixels)!
  743. @param masks Set of masks. Each masks[i] specifies permissible matches between the input query
  744. descriptors and stored train descriptors from the i-th image trainDescCollection[i].
  745. @param compactResult Parameter used when the mask (or masks) is not empty. If compactResult is
  746. false, the matches vector has the same size as queryDescriptors rows. If compactResult is true,
  747. the matches vector does not contain matches for fully masked-out query descriptors.
  748. */
  749. void radiusMatch( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
  750. InputArrayOfArrays masks=noArray(), bool compactResult=false );
  751. // Reads matcher object from a file node
  752. virtual void read( const FileNode& );
  753. // Writes matcher object to a file storage
  754. virtual void write( FileStorage& ) const;
  755. /** @brief Clones the matcher.
  756. @param emptyTrainData If emptyTrainData is false, the method creates a deep copy of the object,
  757. that is, copies both parameters and train data. If emptyTrainData is true, the method creates an
  758. object copy with the current parameters but with empty train data.
  759. */
  760. virtual Ptr<DescriptorMatcher> clone( bool emptyTrainData=false ) const = 0;
  761. /** @brief Creates a descriptor matcher of a given type with the default parameters (using default
  762. constructor).
  763. @param descriptorMatcherType Descriptor matcher type. Now the following matcher types are
  764. supported:
  765. - `BruteForce` (it uses L2 )
  766. - `BruteForce-L1`
  767. - `BruteForce-Hamming`
  768. - `BruteForce-Hamming(2)`
  769. - `FlannBased`
  770. */
  771. CV_WRAP static Ptr<DescriptorMatcher> create( const String& descriptorMatcherType );
  772. protected:
  773. /**
  774. * Class to work with descriptors from several images as with one merged matrix.
  775. * It is used e.g. in FlannBasedMatcher.
  776. */
  777. class CV_EXPORTS DescriptorCollection
  778. {
  779. public:
  780. DescriptorCollection();
  781. DescriptorCollection( const DescriptorCollection& collection );
  782. virtual ~DescriptorCollection();
  783. // Vector of matrices "descriptors" will be merged to one matrix "mergedDescriptors" here.
  784. void set( const std::vector<Mat>& descriptors );
  785. virtual void clear();
  786. const Mat& getDescriptors() const;
  787. const Mat getDescriptor( int imgIdx, int localDescIdx ) const;
  788. const Mat getDescriptor( int globalDescIdx ) const;
  789. void getLocalIdx( int globalDescIdx, int& imgIdx, int& localDescIdx ) const;
  790. int size() const;
  791. protected:
  792. Mat mergedDescriptors;
  793. std::vector<int> startIdxs;
  794. };
  795. //! In fact the matching is implemented only by the following two methods. These methods suppose
  796. //! that the class object has been trained already. Public match methods call these methods
  797. //! after calling train().
  798. virtual void knnMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k,
  799. InputArrayOfArrays masks=noArray(), bool compactResult=false ) = 0;
  800. virtual void radiusMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
  801. InputArrayOfArrays masks=noArray(), bool compactResult=false ) = 0;
  802. static bool isPossibleMatch( InputArray mask, int queryIdx, int trainIdx );
  803. static bool isMaskedOut( InputArrayOfArrays masks, int queryIdx );
  804. static Mat clone_op( Mat m ) { return m.clone(); }
  805. void checkMasks( InputArrayOfArrays masks, int queryDescriptorsCount ) const;
  806. //! Collection of descriptors from train images.
  807. std::vector<Mat> trainDescCollection;
  808. std::vector<UMat> utrainDescCollection;
  809. };
  810. /** @brief Brute-force descriptor matcher.
  811. For each descriptor in the first set, this matcher finds the closest descriptor in the second set
  812. by trying each one. This descriptor matcher supports masking permissible matches of descriptor
  813. sets.
  814. */
  815. class CV_EXPORTS_W BFMatcher : public DescriptorMatcher
  816. {
  817. public:
  818. /** @brief Brute-force matcher constructor.
  819. @param normType One of NORM_L1, NORM_L2, NORM_HAMMING, NORM_HAMMING2. L1 and L2 norms are
  820. preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and
  821. BRIEF, NORM_HAMMING2 should be used with ORB when WTA_K==3 or 4 (see ORB::ORB constructor
  822. description).
  823. @param crossCheck If it is false, this is will be default BFMatcher behaviour when it finds the k
  824. nearest neighbors for each query descriptor. If crossCheck==true, then the knnMatch() method with
  825. k=1 will only return pairs (i,j) such that for i-th query descriptor the j-th descriptor in the
  826. matcher's collection is the nearest and vice versa, i.e. the BFMatcher will only return consistent
  827. pairs. Such technique usually produces best results with minimal number of outliers when there are
  828. enough matches. This is alternative to the ratio test, used by D. Lowe in SIFT paper.
  829. */
  830. CV_WRAP BFMatcher( int normType=NORM_L2, bool crossCheck=false );
  831. virtual ~BFMatcher() {}
  832. virtual bool isMaskSupported() const { return true; }
  833. virtual Ptr<DescriptorMatcher> clone( bool emptyTrainData=false ) const;
  834. protected:
  835. virtual void knnMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k,
  836. InputArrayOfArrays masks=noArray(), bool compactResult=false );
  837. virtual void radiusMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
  838. InputArrayOfArrays masks=noArray(), bool compactResult=false );
  839. int normType;
  840. bool crossCheck;
  841. };
  842. /** @brief Flann-based descriptor matcher.
  843. This matcher trains flann::Index_ on a train descriptor collection and calls its nearest search
  844. methods to find the best matches. So, this matcher may be faster when matching a large train
  845. collection than the brute force matcher. FlannBasedMatcher does not support masking permissible
  846. matches of descriptor sets because flann::Index does not support this. :
  847. */
  848. class CV_EXPORTS_W FlannBasedMatcher : public DescriptorMatcher
  849. {
  850. public:
  851. CV_WRAP FlannBasedMatcher( const Ptr<flann::IndexParams>& indexParams=makePtr<flann::KDTreeIndexParams>(),
  852. const Ptr<flann::SearchParams>& searchParams=makePtr<flann::SearchParams>() );
  853. virtual void add( InputArrayOfArrays descriptors );
  854. virtual void clear();
  855. // Reads matcher object from a file node
  856. virtual void read( const FileNode& );
  857. // Writes matcher object to a file storage
  858. virtual void write( FileStorage& ) const;
  859. virtual void train();
  860. virtual bool isMaskSupported() const;
  861. virtual Ptr<DescriptorMatcher> clone( bool emptyTrainData=false ) const;
  862. protected:
  863. static void convertToDMatches( const DescriptorCollection& descriptors,
  864. const Mat& indices, const Mat& distances,
  865. std::vector<std::vector<DMatch> >& matches );
  866. virtual void knnMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k,
  867. InputArrayOfArrays masks=noArray(), bool compactResult=false );
  868. virtual void radiusMatchImpl( InputArray queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
  869. InputArrayOfArrays masks=noArray(), bool compactResult=false );
  870. Ptr<flann::IndexParams> indexParams;
  871. Ptr<flann::SearchParams> searchParams;
  872. Ptr<flann::Index> flannIndex;
  873. DescriptorCollection mergedDescriptors;
  874. int addedDescCount;
  875. };
  876. //! @} features2d_match
  877. /****************************************************************************************\
  878. * Drawing functions *
  879. \****************************************************************************************/
  880. //! @addtogroup features2d_draw
  881. //! @{
  882. struct CV_EXPORTS DrawMatchesFlags
  883. {
  884. enum{ DEFAULT = 0, //!< Output image matrix will be created (Mat::create),
  885. //!< i.e. existing memory of output image may be reused.
  886. //!< Two source image, matches and single keypoints will be drawn.
  887. //!< For each keypoint only the center point will be drawn (without
  888. //!< the circle around keypoint with keypoint size and orientation).
  889. DRAW_OVER_OUTIMG = 1, //!< Output image matrix will not be created (Mat::create).
  890. //!< Matches will be drawn on existing content of output image.
  891. NOT_DRAW_SINGLE_POINTS = 2, //!< Single keypoints will not be drawn.
  892. DRAW_RICH_KEYPOINTS = 4 //!< For each keypoint the circle around keypoint with keypoint size and
  893. //!< orientation will be drawn.
  894. };
  895. };
  896. /** @brief Draws keypoints.
  897. @param image Source image.
  898. @param keypoints Keypoints from the source image.
  899. @param outImage Output image. Its content depends on the flags value defining what is drawn in the
  900. output image. See possible flags bit values below.
  901. @param color Color of keypoints.
  902. @param flags Flags setting drawing features. Possible flags bit values are defined by
  903. DrawMatchesFlags. See details above in drawMatches .
  904. @note
  905. For Python API, flags are modified as cv2.DRAW_MATCHES_FLAGS_DEFAULT,
  906. cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS, cv2.DRAW_MATCHES_FLAGS_DRAW_OVER_OUTIMG,
  907. cv2.DRAW_MATCHES_FLAGS_NOT_DRAW_SINGLE_POINTS
  908. */
  909. CV_EXPORTS_W void drawKeypoints( InputArray image, const std::vector<KeyPoint>& keypoints, InputOutputArray outImage,
  910. const Scalar& color=Scalar::all(-1), int flags=DrawMatchesFlags::DEFAULT );
  911. /** @brief Draws the found matches of keypoints from two images.
  912. @param img1 First source image.
  913. @param keypoints1 Keypoints from the first source image.
  914. @param img2 Second source image.
  915. @param keypoints2 Keypoints from the second source image.
  916. @param matches1to2 Matches from the first image to the second one, which means that keypoints1[i]
  917. has a corresponding point in keypoints2[matches[i]] .
  918. @param outImg Output image. Its content depends on the flags value defining what is drawn in the
  919. output image. See possible flags bit values below.
  920. @param matchColor Color of matches (lines and connected keypoints). If matchColor==Scalar::all(-1)
  921. , the color is generated randomly.
  922. @param singlePointColor Color of single keypoints (circles), which means that keypoints do not
  923. have the matches. If singlePointColor==Scalar::all(-1) , the color is generated randomly.
  924. @param matchesMask Mask determining which matches are drawn. If the mask is empty, all matches are
  925. drawn.
  926. @param flags Flags setting drawing features. Possible flags bit values are defined by
  927. DrawMatchesFlags.
  928. This function draws matches of keypoints from two images in the output image. Match is a line
  929. connecting two keypoints (circles). See cv::DrawMatchesFlags.
  930. */
  931. CV_EXPORTS_W void drawMatches( InputArray img1, const std::vector<KeyPoint>& keypoints1,
  932. InputArray img2, const std::vector<KeyPoint>& keypoints2,
  933. const std::vector<DMatch>& matches1to2, InputOutputArray outImg,
  934. const Scalar& matchColor=Scalar::all(-1), const Scalar& singlePointColor=Scalar::all(-1),
  935. const std::vector<char>& matchesMask=std::vector<char>(), int flags=DrawMatchesFlags::DEFAULT );
  936. /** @overload */
  937. CV_EXPORTS_AS(drawMatchesKnn) void drawMatches( InputArray img1, const std::vector<KeyPoint>& keypoints1,
  938. InputArray img2, const std::vector<KeyPoint>& keypoints2,
  939. const std::vector<std::vector<DMatch> >& matches1to2, InputOutputArray outImg,
  940. const Scalar& matchColor=Scalar::all(-1), const Scalar& singlePointColor=Scalar::all(-1),
  941. const std::vector<std::vector<char> >& matchesMask=std::vector<std::vector<char> >(), int flags=DrawMatchesFlags::DEFAULT );
  942. //! @} features2d_draw
  943. /****************************************************************************************\
  944. * Functions to evaluate the feature detectors and [generic] descriptor extractors *
  945. \****************************************************************************************/
  946. CV_EXPORTS void evaluateFeatureDetector( const Mat& img1, const Mat& img2, const Mat& H1to2,
  947. std::vector<KeyPoint>* keypoints1, std::vector<KeyPoint>* keypoints2,
  948. float& repeatability, int& correspCount,
  949. const Ptr<FeatureDetector>& fdetector=Ptr<FeatureDetector>() );
  950. CV_EXPORTS void computeRecallPrecisionCurve( const std::vector<std::vector<DMatch> >& matches1to2,
  951. const std::vector<std::vector<uchar> >& correctMatches1to2Mask,
  952. std::vector<Point2f>& recallPrecisionCurve );
  953. CV_EXPORTS float getRecall( const std::vector<Point2f>& recallPrecisionCurve, float l_precision );
  954. CV_EXPORTS int getNearestPoint( const std::vector<Point2f>& recallPrecisionCurve, float l_precision );
  955. /****************************************************************************************\
  956. * Bag of visual words *
  957. \****************************************************************************************/
  958. //! @addtogroup features2d_category
  959. //! @{
  960. /** @brief Abstract base class for training the *bag of visual words* vocabulary from a set of descriptors.
  961. For details, see, for example, *Visual Categorization with Bags of Keypoints* by Gabriella Csurka,
  962. Christopher R. Dance, Lixin Fan, Jutta Willamowski, Cedric Bray, 2004. :
  963. */
  964. class CV_EXPORTS_W BOWTrainer
  965. {
  966. public:
  967. BOWTrainer();
  968. virtual ~BOWTrainer();
  969. /** @brief Adds descriptors to a training set.
  970. @param descriptors Descriptors to add to a training set. Each row of the descriptors matrix is a
  971. descriptor.
  972. The training set is clustered using clustermethod to construct the vocabulary.
  973. */
  974. CV_WRAP void add( const Mat& descriptors );
  975. /** @brief Returns a training set of descriptors.
  976. */
  977. CV_WRAP const std::vector<Mat>& getDescriptors() const;
  978. /** @brief Returns the count of all descriptors stored in the training set.
  979. */
  980. CV_WRAP int descriptorsCount() const;
  981. CV_WRAP virtual void clear();
  982. /** @overload */
  983. CV_WRAP virtual Mat cluster() const = 0;
  984. /** @brief Clusters train descriptors.
  985. @param descriptors Descriptors to cluster. Each row of the descriptors matrix is a descriptor.
  986. Descriptors are not added to the inner train descriptor set.
  987. The vocabulary consists of cluster centers. So, this method returns the vocabulary. In the first
  988. variant of the method, train descriptors stored in the object are clustered. In the second variant,
  989. input descriptors are clustered.
  990. */
  991. CV_WRAP virtual Mat cluster( const Mat& descriptors ) const = 0;
  992. protected:
  993. std::vector<Mat> descriptors;
  994. int size;
  995. };
  996. /** @brief kmeans -based class to train visual vocabulary using the *bag of visual words* approach. :
  997. */
  998. class CV_EXPORTS_W BOWKMeansTrainer : public BOWTrainer
  999. {
  1000. public:
  1001. /** @brief The constructor.
  1002. @see cv::kmeans
  1003. */
  1004. CV_WRAP BOWKMeansTrainer( int clusterCount, const TermCriteria& termcrit=TermCriteria(),
  1005. int attempts=3, int flags=KMEANS_PP_CENTERS );
  1006. virtual ~BOWKMeansTrainer();
  1007. // Returns trained vocabulary (i.e. cluster centers).
  1008. CV_WRAP virtual Mat cluster() const;
  1009. CV_WRAP virtual Mat cluster( const Mat& descriptors ) const;
  1010. protected:
  1011. int clusterCount;
  1012. TermCriteria termcrit;
  1013. int attempts;
  1014. int flags;
  1015. };
  1016. /** @brief Class to compute an image descriptor using the *bag of visual words*.
  1017. Such a computation consists of the following steps:
  1018. 1. Compute descriptors for a given image and its keypoints set.
  1019. 2. Find the nearest visual words from the vocabulary for each keypoint descriptor.
  1020. 3. Compute the bag-of-words image descriptor as is a normalized histogram of vocabulary words
  1021. encountered in the image. The i-th bin of the histogram is a frequency of i-th word of the
  1022. vocabulary in the given image.
  1023. */
  1024. class CV_EXPORTS_W BOWImgDescriptorExtractor
  1025. {
  1026. public:
  1027. /** @brief The constructor.
  1028. @param dextractor Descriptor extractor that is used to compute descriptors for an input image and
  1029. its keypoints.
  1030. @param dmatcher Descriptor matcher that is used to find the nearest word of the trained vocabulary
  1031. for each keypoint descriptor of the image.
  1032. */
  1033. CV_WRAP BOWImgDescriptorExtractor( const Ptr<DescriptorExtractor>& dextractor,
  1034. const Ptr<DescriptorMatcher>& dmatcher );
  1035. /** @overload */
  1036. BOWImgDescriptorExtractor( const Ptr<DescriptorMatcher>& dmatcher );
  1037. virtual ~BOWImgDescriptorExtractor();
  1038. /** @brief Sets a visual vocabulary.
  1039. @param vocabulary Vocabulary (can be trained using the inheritor of BOWTrainer ). Each row of the
  1040. vocabulary is a visual word (cluster center).
  1041. */
  1042. CV_WRAP void setVocabulary( const Mat& vocabulary );
  1043. /** @brief Returns the set vocabulary.
  1044. */
  1045. CV_WRAP const Mat& getVocabulary() const;
  1046. /** @brief Computes an image descriptor using the set visual vocabulary.
  1047. @param image Image, for which the descriptor is computed.
  1048. @param keypoints Keypoints detected in the input image.
  1049. @param imgDescriptor Computed output image descriptor.
  1050. @param pointIdxsOfClusters Indices of keypoints that belong to the cluster. This means that
  1051. pointIdxsOfClusters[i] are keypoint indices that belong to the i -th cluster (word of vocabulary)
  1052. returned if it is non-zero.
  1053. @param descriptors Descriptors of the image keypoints that are returned if they are non-zero.
  1054. */
  1055. void compute( InputArray image, std::vector<KeyPoint>& keypoints, OutputArray imgDescriptor,
  1056. std::vector<std::vector<int> >* pointIdxsOfClusters=0, Mat* descriptors=0 );
  1057. /** @overload
  1058. @param keypointDescriptors Computed descriptors to match with vocabulary.
  1059. @param imgDescriptor Computed output image descriptor.
  1060. @param pointIdxsOfClusters Indices of keypoints that belong to the cluster. This means that
  1061. pointIdxsOfClusters[i] are keypoint indices that belong to the i -th cluster (word of vocabulary)
  1062. returned if it is non-zero.
  1063. */
  1064. void compute( InputArray keypointDescriptors, OutputArray imgDescriptor,
  1065. std::vector<std::vector<int> >* pointIdxsOfClusters=0 );
  1066. // compute() is not constant because DescriptorMatcher::match is not constant
  1067. CV_WRAP_AS(compute) void compute2( const Mat& image, std::vector<KeyPoint>& keypoints, CV_OUT Mat& imgDescriptor )
  1068. { compute(image,keypoints,imgDescriptor); }
  1069. /** @brief Returns an image descriptor size if the vocabulary is set. Otherwise, it returns 0.
  1070. */
  1071. CV_WRAP int descriptorSize() const;
  1072. /** @brief Returns an image descriptor type.
  1073. */
  1074. CV_WRAP int descriptorType() const;
  1075. protected:
  1076. Mat vocabulary;
  1077. Ptr<DescriptorExtractor> dextractor;
  1078. Ptr<DescriptorMatcher> dmatcher;
  1079. };
  1080. //! @} features2d_category
  1081. //! @} features2d
  1082. } /* namespace cv */
  1083. #endif