examples icon indicating copy to clipboard operation
examples copied to clipboard

Results 3 examples issues
Sort by recently updated
recently updated
newest added

How to capture the photo with mask? I tried my level best but can't find a solution.

The app crashed when running the SetupAVCapture function. To fix, replace: self.videoDataOutputQueue = dispatch_queue_create("VideoDataOutputQueue", DISPATCH_QUEUE_SERIAL); With: dispatch_queue_t temp = dispatch_queue_create("VideoDataOutputQueue", DISPATCH_QUEUE_SERIAL); self.videoDataOutputQueue = temp;

The method `videoPreviewBoxForGravity:frameSize:apertureSize:` should return a video box with a negative x/y origin when the videoBox width/height is greater than the frame width/height! Here's the fix! (Lines 175-185 in DetectFace.m)...