Skip to content
New issue

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

Add face detection and update algorithm #4

Open
wants to merge 24 commits into
base: master
Choose a base branch
from

Conversation

dpapworth
Copy link

@dpapworth dpapworth commented Mar 5, 2019

I've added face detection using two example OpenCV classifiers.

I've also updated the cropping algorithm to replicate the current smartcrop.js implementation.

Mat frame = Java2DFrameUtils.toMat(input);

Mat grayFrame = new Mat();
cvtColor(frame, grayFrame, COLOR_BGR2GRAY);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if conversion to gray is required, but the examples I've seen using this detector have converted the source image to gray. I can't see much difference in the detection performance either way.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant