Commit 0b192cb4 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

Fixed warning in the ORB features finder

parent d7ff9243
...@@ -92,7 +92,7 @@ private: ...@@ -92,7 +92,7 @@ private:
class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder
{ {
public: public:
OrbFeaturesFinder(Size _grid_size = Size(3,1), size_t n_features = 1500, const ORB::CommonParams & detector_params = ORB::CommonParams(1.3, 5)); OrbFeaturesFinder(Size _grid_size = Size(3,1), size_t n_features = 1500, const ORB::CommonParams & detector_params = ORB::CommonParams(1.3f, 5));
private: private:
void find(const Mat &image, ImageFeatures &features); void find(const Mat &image, ImageFeatures &features);
......
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