Remove a useless loop that copies an array to itself

This commit is contained in:
Roman Donchenko 2014-05-19 17:38:30 +04:00
parent 0b4eb6a964
commit bea46c90b5

View File

@ -333,12 +333,6 @@ void CvCalibFilter::Stop( bool calibrate )
points[0],points[1],
buffer,
&stereo);
for( i = 0; i < 9; i++ )
{
stereo.fundMatr[i] = stereo.fundMatr[i];
}
}
}