changed int -> size_t when accessing std::vector
authorNghia Ho <nghiaho12@yahoo.com>
Sat, 31 Aug 2013 13:35:03 +0000 (23:35 +1000)
committerNghia Ho <nghiaho12@yahoo.com>
Sat, 31 Aug 2013 13:35:03 +0000 (23:35 +1000)
doc/tutorials/objdetect/cascade_classifier/cascade_classifier.rst

index 03080fe..8a4f25c 100644 (file)
@@ -90,7 +90,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
     //-- Detect faces
     face_cascade.detectMultiScale( frame_gray, faces, 1.1, 2, 0|CV_HAAR_SCALE_IMAGE, Size(30, 30) );
 
-    for( int i = 0; i < faces.size(); i++ )
+    for( size_t i = 0; i < faces.size(); i++ )
     {
       Point center( faces[i].x + faces[i].width*0.5, faces[i].y + faces[i].height*0.5 );
       ellipse( frame, center, Size( faces[i].width*0.5, faces[i].height*0.5), 0, 0, 360, Scalar( 255, 0, 255 ), 4, 8, 0 );
@@ -101,7 +101,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
       //-- In each face, detect eyes
       eyes_cascade.detectMultiScale( faceROI, eyes, 1.1, 2, 0 |CV_HAAR_SCALE_IMAGE, Size(30, 30) );
 
-      for( int j = 0; j < eyes.size(); j++ )
+      for( size_t j = 0; j < eyes.size(); j++ )
        {
          Point center( faces[i].x + eyes[j].x + eyes[j].width*0.5, faces[i].y + eyes[j].y + eyes[j].height*0.5 );
          int radius = cvRound( (eyes[j].width + eyes[j].height)*0.25 );