From: Vladimir Dudnik Date: Thu, 23 Dec 2010 22:55:23 +0000 (+0000) Subject: cosmetic changes X-Git-Tag: accepted/2.0/20130307.220821~3759 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c6f35740ded28a82da4b0a3a7f31b95d57711cd;p=profile%2Fivi%2Fopencv.git cosmetic changes --- diff --git a/samples/c/find_obj.cpp b/samples/c/find_obj.cpp index 37924e4..eb6f7a9 100644 --- a/samples/c/find_obj.cpp +++ b/samples/c/find_obj.cpp @@ -30,7 +30,7 @@ void help() #define USE_FLANN -IplImage *image = 0; +IplImage* image = 0; double compareSURFDescriptors( const float* d1, const float* d2, double best, int length ) @@ -39,7 +39,7 @@ compareSURFDescriptors( const float* d1, const float* d2, double best, int lengt assert( length % 4 == 0 ); for( int i = 0; i < length; i += 4 ) { - double t0 = d1[i] - d2[i]; + double t0 = d1[i ] - d2[i ]; double t1 = d1[i+1] - d2[i+1]; double t2 = d1[i+2] - d2[i+2]; double t3 = d1[i+3] - d2[i+3];