Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Human body part detection in Android [closed]

Tags:

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.