1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Fixed warning in the ORB features finder

This commit is contained in:
Alexey Spizhevoy
2011-10-27 09:00:28 +00:00
parent d7ff92439d
commit 0b192cb4ea
@@ -92,7 +92,7 @@ private:
class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder
{
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:
void find(const Mat &image, ImageFeatures &features);