Merge pull request #681 from jbohren-forks:fix-ellipse-segfault

pull/657/merge
Vadim Pisarevsky 12 years ago committed by OpenCV Buildbot
commit 219bdb9809
  1. 6
      modules/core/src/drawing.cpp

@ -890,8 +890,10 @@ void ellipse2Poly( Point center, Size axes, int angle,
pts.push_back(pt); pts.push_back(pt);
} }
if( pts.size() < 2 ) // If there are no points, it's a zero-size polygon
pts.push_back(pts[0]); if( pts.size() < 2) {
pts.assign(2,center);
}
} }

Loading…
Cancel
Save