Fix for MSER::detectRegions crash on images with either dimension less than 3

pull/7094/head
Vitaly Tuzov 8 years ago
parent 44bda8fbb7
commit 9db93d773d
  1. 2
      modules/features2d/include/opencv2/features2d.hpp
  2. 3
      modules/features2d/src/mser.cpp

@ -355,7 +355,7 @@ public:
/** @brief Detect %MSER regions
@param image input image (8UC1, 8UC3 or 8UC4)
@param image input image (8UC1, 8UC3 or 8UC4, must be greater or equal than 3x3)
@param msers resulting list of point sets
@param bboxes resulting bounding boxes
*/

@ -1020,12 +1020,11 @@ extractMSER_8uC3( const Mat& src,
void MSER_Impl::detectRegions( InputArray _src, vector<vector<Point> >& msers, vector<Rect>& bboxes )
{
Mat src = _src.getMat();
size_t npix = src.total();
msers.clear();
bboxes.clear();
if( npix == 0 )
if( src.rows < 3 || src.cols < 3 )
return;
Size size = src.size();

Loading…
Cancel
Save