We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi i wanna tack picture and save to storage if face in camera how to do it?
The text was updated successfully, but these errors were encountered:
FaceProcessor processor = FaceProcessor.with(this) .listener(this::processFaces) .build();
In the processFaces you will get rectangles of detected faces.
Now you just have to implement
fotoapparat .takePicture() .saveToFile()
Sorry, something went wrong.
you can do like this do not use FaceProcessor .
faceDetector = FaceDetector.create(this); faceDetector.detectFaces(frame.getData(), frame.getSize().getWidth() , frame.getSize().getHeight(), frame.getRotation());
No branches or pull requests
hi
i wanna tack picture and save to storage if face in camera
how to do it?
The text was updated successfully, but these errors were encountered: