bug in Cascade Classifier tutorial? (Bug #1604)
Description
In the tutorial on this page:
I think the line (near the bottom):
int radius = cvRound( (eyes[j].width + eyes[i].height)*0.25 );
should be:
int radius = cvRound( (eyes[j].width + eyes[j].height)*0.25 );
Associated revisions
fixed #1604
History
Updated by Alexander Shishkov about 13 years ago
- Category set to documentation
Updated by Alexander Shishkov about 13 years ago
Thank you for the report!
It is fixed in 7323 revision. http://opencv.itseez.com/trunk/doc/tutorials/objdetect/cascade_classifier/cascade_classifier.html#cascade-classifier
- Status changed from Open to Done
Updated by Andrey Kamaev about 13 years ago
- Target version set to 2.4.0
- Description changed from In the tutorial on this page: http://opencv.itseez.com/doc/tutorials/objdete... to In the tutorial on this page: http://opencv.itseez.com/doc/tutorials/objdete... More