I want to use Vision API in android to detect the face and the landmarks over the face. I followed the Vision API sample :
https://github.com/googlesamples/android-vision/tree/master/visionSamples/photo-demo/
My issues are:
1) I cannot understand the details of this object while debugging:
FaceDetector detector = new FaceDetector.Builder(context)
.setTrackingEnabled(false)
.setLandmarkType(FaceDetector.ALL_LANDMARKS)
.setProminentFaceOnly(true)
.build();
image that shows the details of 'detector'
Cannot understand 'zzbbc','zzbbd'...etc
2)
Frame frame = new Frame.Builder().setBitmap(bitmap).build();
SparseArray<Face> faces = detector.detect(frame);`
Here the size of faces is returned as zero.
There is no exception thrown, I can see the image but the rectangle and dots cannot be seen.
Can anyone please help me out with this issue?