1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Build for embedded systems

This commit is contained in:
Maksim Shabunin
2017-11-28 12:53:40 +03:00
parent 9665dde678
commit 7349b8f5ce
25 changed files with 184 additions and 135 deletions
+3 -3
View File
@@ -1828,7 +1828,7 @@ cvFindContours_Impl( void* img, CvMemStorage* storage,
}
else
{
try
CV_TRY
{
scanner = cvStartFindContours_Impl( img, storage, cntHeaderSize, mode, method, offset,
needFillBorder);
@@ -1840,11 +1840,11 @@ cvFindContours_Impl( void* img, CvMemStorage* storage,
}
while( contour != 0 );
}
catch(...)
CV_CATCH_ALL
{
if( scanner )
cvEndFindContours(&scanner);
throw;
CV_RETHROW();
}
*firstContour = cvEndFindContours( &scanner );