Better default grid size for ORB-based stitching

pull/13383/head
Andrey Kamaev 14 years ago
parent 9f837d3486
commit 5656a9dd6b
  1. 2
      modules/stitching/include/opencv2/stitching/detail/matchers.hpp

@ -92,7 +92,7 @@ private:
class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder
{
public:
OrbFeaturesFinder(Size _grid_size = Size(4,4), 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.3, 5));
private:
void find(const Mat &image, ImageFeatures &features);

Loading…
Cancel
Save