
The face detection part is achieved in the iPhone app, and I also have the coordinates of detected face in AVCaptureVideoPreviewLayer. However, I can also take the screen capture with highlighted faces through AVCaptureVideoDataOutput.
But the problem is when I'm trying to crop the detected faces from captured screen, it always give me the wrong results. Can someone please share his experience of this problem.
EDIT: You can see in the captured screen produced from AVCaptureVideoDataOutput, that faces are detected with red rectangular box. But when I'm trying to crop "red box" from CGContextRef, it always gives the wrong results based on same coordinates.
I have tried different possible methods of cropping such as CGImageCreateWithImageInRect and CGBitmapContextCreateImage, but none of seems to be working perfectly because of some silly loophole!