-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
C++ Face Recognition demo #3685
base: master
Are you sure you want to change the base?
C++ Face Recognition demo #3685
Conversation
I haven't looked into it yet.
|
# | ||
|
||
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp) | ||
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.hpp) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Python version draws landmarks. Is it intentional not to draw them here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, just thought it wasn't needed. Add rendering them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, if you don't mind :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added
Co-authored-by: Zlobin Vladimir <[email protected]>
Co-authored-by: Zlobin Vladimir <[email protected]>
Please fix |
Done |
C++ version of face recognition demo, unlike python version it has support of antispoof model.
Demo requires c++17 standard for compilation, cause it utilizes
std::filesystem
for creating an initial gallery of faces. If it is a problem, the implementation could be changed.