pull/3292/head
Maksim Shabunin 10 years ago
parent 571ebb2373
commit 276bed3e4a
  1. 5
      modules/stitching/src/matchers.cpp

@ -346,6 +346,11 @@ SurfFeaturesFinder::SurfFeaturesFinder(double hess_thresh, int num_octaves, int
extractor_->set(SURF::NOCTAVE_LAYERS, num_layers_descr);
}
#else
(void)hess_thresh;
(void)num_octaves;
(void)num_layers;
(void)num_octaves_descr;
(void)num_layers_descr;
CV_Error( Error::StsNotImplemented, "OpenCV was built without SURF support" );
#endif
}

Loading…
Cancel
Save