Remove a useless loop that copies an array to itself
authorRoman Donchenko <roman.donchenko@itseez.com>
Mon, 19 May 2014 13:38:30 +0000 (17:38 +0400)
committerRoman Donchenko <roman.donchenko@itseez.com>
Mon, 19 May 2014 13:38:30 +0000 (17:38 +0400)
modules/legacy/src/calibfilter.cpp

index 64b9957..49ff6e5 100644 (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];
-                }
-
             }
 
         }