- Home /
Is there an example of FaceDetection?
I have just purchased U3DXT mainly to get facedetection working from a camera in the unity scene (Vuforia AR camera). Are there any examples on how to use the high level API for FaceDetection as the documentation isn't available yet.
edit-- I think I am progressing. I'm just reading pixels from the entire screen for now, and here is my code:
Texture2D newTex = new Texture2D(Screen.width, Screen.height, TextureFormat.RGB24, false);
newTex.ReadPixels(new Rect(0, 0, Screen.width, Screen.height), 0, 0);
newTex.Apply();
Debug.Log (newTex.width);
CIDetector det = new CIDetector();
System.Collections.Generic.Dictionary<object, object> dictionary = new System.Collections.Generic.Dictionary<object, object>();
dictionary.Add(CIDetector.Accuracy, CIDetector.AccuracyLow);
det = CIDetector.DetectorOfType (CIDetector.TypeFace,null, dictionary);
CIImage cimage = new CIImage();
cimage = CIImage.FromTexture2D(newTex);
object[] features = det.FeaturesInImage(cimage);
Debug.Log ("Features: " + features.Length);
It runs fine (though obviously very slow), but features is always of length 0
someone got to the question before us :(. Please see our response below. please help us mark answers closed if it answers your question. Thanks!
Answer by u3dxt · May 24, 2014 at 06:09 AM
Hi Dover, we just released 1.7.1.0 with an example for face detection. This is a complex one to get working properly. It was a bit of work trying to support older versions of Unity since many of the newer APIs for webcam didn't exist. Anyway, to improve speed, you can try decreasing the resolution of the input image. One of our customers sent us a video using face detection for head tracking inside the 3D world. It looked pretty neat. Hope you'll have fun with this one.
See this, it may help you http://unitydevelopers.blogspot.com/2018/03/open-cv-plugin-for-unity.html?m=1
Answer by Gruffy · Jan 08, 2014 at 09:29 PM
Unity FaceTracking Plugin Forum page
A link to the actual Asset Store, for the plugin, is on this linked page above.
Cheers bud Gruffy
I am already using the U3DXT plug in and need it for iOS, as per the tags.
Your answer
Follow this Question
Related Questions
U3DXT AVAudioPlayer 0 Answers
U3DXT Social FacebookPost not Working? 1 Answer
HTTP Live Streaming from Kii Cloud Storage? 1 Answer
Save and show image in iPhone Gallery 0 Answers
iOS 8 location services not working 1 Answer