1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Fixed descripotorsCount to descriptorsCount

See feature 2862
This commit is contained in:
StevenPuttemans
2013-12-16 10:47:24 +01:00
parent 11071dd241
commit e4b41d38f1
4 changed files with 11 additions and 11 deletions
@@ -27,7 +27,7 @@ Lixin Fan, Jutta Willamowski, Cedric Bray, 2004. ::
void add( const Mat& descriptors );
const vector<Mat>& getDescriptors() const;
int descripotorsCount() const;
int descriptorsCount() const;
virtual void clear();
@@ -56,11 +56,11 @@ Returns a training set of descriptors.
BOWTrainer::descripotorsCount
BOWTrainer::descriptorsCount
---------------------------------
Returns the count of all descriptors stored in the training set.
.. ocv:function:: int BOWTrainer::descripotorsCount() const
.. ocv:function:: int BOWTrainer::descriptorsCount() const
@@ -1453,7 +1453,7 @@ public:
void add( const Mat& descriptors );
const std::vector<Mat>& getDescriptors() const;
int descripotorsCount() const;
int descriptorsCount() const;
virtual void clear();
+1 -1
View File
@@ -72,7 +72,7 @@ const std::vector<Mat>& BOWTrainer::getDescriptors() const
return descriptors;
}
int BOWTrainer::descripotorsCount() const
int BOWTrainer::descriptorsCount() const
{
return descriptors.empty() ? 0 : size;
}