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
Only one face in screen but the faces.size() is two. When two faces in screen the faces.size() is four. And the image can't recognize
faces.size()
The text was updated successfully, but these errors were encountered:
When the camera is front, the Rect is Left-Right reversed,My phone is OnePlus 5、HuaWei Honor 6. I've dealt with this for the time being:
if (fotoapparatSwitcher.getCurrentFotoapparat() == frontFotoapparat) { for (int i = 0; i < faces.size(); i++) { Rectangle face = faces.get(i); float w = face.getWidth(); face = new Rectangle(1 - face.getX() - w, face.getY(), w, face.getHeight()); faces.remove(i); faces.add(i, face); } } rectanglesView.setRectangles(faces);
Sorry, something went wrong.
Thanks for reporting. That is indeed a bug in our face detection library. Should be possible to fix.
As for mirrored image issue - I opened another ticket #6
No branches or pull requests
Only one face in screen but the
faces.size()
is two. When two faces in screen thefaces.size()
is four.And the image can't recognize
The text was updated successfully, but these errors were encountered: