Currently I am working on Google face detection API
from this API
I am able to detect human complete face (eye, nose and other parts) and also as per this concept I have developed one application, if you stand in front of the front face camera then it will detect your face and show some gestures.
Context context = Applications.getAppContext();
FaceDetector detector = new FaceDetector.Builder(context)
.setClassificationType(FaceDetector.ALL_CLASSIFICATIONS)
.build();
detector.setProcessor(
new MultiProcessor.Builder<>(new GraphicFaceTrackerFactory())
.build());
if (!detector.isOperational()) {
}
mCameraSource = new CameraSource.Builder(context, detector)
.setRequestedPreviewSize(640, 480)
.setFacing(CameraSource.CAMERA_FACING_FRONT)
.setRequestedFps(30.0f)
.build();
Application video link which i have developed till now :-
https://www.dropbox.com/s/097todfu90ic12j/VirtualMirror.mp4?dl=0
Application play store link:-
https://play.google.com/store/apps/details?id=com.twins.virtualmirror
Is there any API available where we can recognize human other body parts (Chest, hand, legs and other parts of the body), because as per the Google vision API
it's only able to detect face of the human not other parts.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With