Commit bd2c2f3b authored by S. Garrido's avatar S. Garrido

fix isContourConvex

parent 565d3dde
......@@ -347,7 +347,7 @@ static bool isContourConvex_( const Point_<_Tp>* p, int n )
_Tp dy0 = cur_pt.y - prev_pt.y;
int orientation = 0;
for( int i = 0; i < n-1; i++ )
for( int i = 0; i < n; i++ )
{
_Tp dxdy0, dydx0;
_Tp dx, dy;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment