I looked in the documentation of Emgu CV but didn't find anything relevant. I just want to make sure: does HaarCascade.Detect respect the ROI, so that the detection is only performed in the subarea designated by the ROI?

Image<Gray, Byte> grayFrame;

grayFrame.ROI = eyesROI;
HaarCascade.Detect(grayFrame);

Thanks

link|improve this question

61% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Basically Yes the haar cascade will only use the data within the ROI of you frame data. I take it your going to detect the face and then use its position to set the ROI and look for the eyes. This should work nicely if you hit difficulties simply increase the ROI slightly until the cascade starts working.

Cheers

Chris

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.