Commit 43f38df1 authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

fixed incorrect sizeof() expression in CvCalibFilter::SetCameraCount

parent 3c86788b
...@@ -235,7 +235,7 @@ void CvCalibFilter::SetCameraCount( int count ) ...@@ -235,7 +235,7 @@ void CvCalibFilter::SetCameraCount( int count )
cvReleaseMat( &rectMap[i][1] ); cvReleaseMat( &rectMap[i][1] );
} }
memset( latestCounts, 0, sizeof(latestPoints) ); memset( latestCounts, 0, sizeof(latestCounts) );
maxPoints = 0; maxPoints = 0;
cameraCount = count; cameraCount = count;
} }
......
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