Re: Detecting face features using CoreImage or HSV space/Mask

2015-01-02 Thread Alex Zavatone
Just a note that last year I used the face feature detection in iOS 7 and was getting between 5 - 20 FPS for face detection, but never got great (consistent) results with detecting if eyes were open or closed, mouth was smiling or not. I seem to recall about 5 - 7 FPS on the iPhone 5s when we w

Re: Detecting face features using CoreImage or HSV space/Mask

2015-01-02 Thread Muhammad Hussein Nasrollahpour
You hit the point. Yup, implementing my own algorithm was one of my idea BUT because I need to code it asap(in a weekend) I need to have a precise and fast(in terms of coding) solution to the problem. What’s the best option to accomplish the task? There is another solution to the problem too. W

Re: Detecting face features using CoreImage or HSV space/Mask

2015-01-02 Thread Jens Alfke
> On Jan 2, 2015, at 12:34 AM, Muhammad Hussein Nasrollahpour > wrote: > > I just got one solution to the problem. Instead of using CI I can convert RGB > to HSV and then create a mask for face features e.g. lips, eyes, etc. but > 1. How to use hue to create a mask for different face features

Detecting face features using CoreImage or HSV space/Mask

2015-01-02 Thread Muhammad Hussein Nasrollahpour
I can find eyes and mouth positions in an image using CoreImage’s CIDetector and CIFaceFeature BUT it doesn’t help so much because not only I’m not able to detect other face features but also tinting detected features doesn’t seem natural(meaning that I just stick an image of lips over the face.