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