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

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.

Unity FaceTracking Plugin Forum page

A link to the actual Asset Store, for the plugin, is on this linked page above.

Cheers bud
Gruffy