Commit 9b8b088b authored by biagio montesano's avatar biagio montesano

Errors on derivation corrected

parent fba71a8e
...@@ -78,7 +78,7 @@ namespace cv ...@@ -78,7 +78,7 @@ namespace cv
}; };
class CV_EXPORTS_W BinaryDescriptor : public DescriptorExtractor class CV_EXPORTS_W BinaryDescriptor : public FeatureDetector
{ {
public: public:
...@@ -134,13 +134,13 @@ namespace cv ...@@ -134,13 +134,13 @@ namespace cv
const std::vector<Mat>& masks=std::vector<Mat>() ) const; const std::vector<Mat>& masks=std::vector<Mat>() ) const;
/*return descriptor size */ /*return descriptor size */
int descriptorSize() const = 0; int descriptorSize() const;
/* return data type */ /* return data type */
int descriptorType() const = 0; int descriptorType() const;
/* return norm mode */ /* return norm mode */
int defaultNorm() const = 0; int defaultNorm() const;
/* check whether Gaussian pyramids were created */ /* check whether Gaussian pyramids were created */
bool empty() const; bool empty() const;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment