-
Notifications
You must be signed in to change notification settings - Fork 85
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
Multi-pass processing #135
base: experimental
Are you sure you want to change the base?
Conversation
e886c55
to
b363e1f
Compare
Do we want to consider parallel processing the multiple passes? IMO this is probably not worth the extra pain unless we run very low on time budget.. |
I'll do this as one process in the first version. We can still upgrade to multi-threading this processing in a second update. |
This branch will introduce multi-pass processing of the input image for cases when the internal face detection model cannot handle the full input image in one go due to the aspect ratio of the model compared to the aspect ratio of the input image.
This PR also contains a major cleanup of the code base by making the code style more consistent and splitting things into multiple files for more digestible chunks of code.