Java implementation of Face Recognition using opencv
Hello all,
I am looking for a Java implementation of Face Recognition using opencv. I am working on a project that implements this fonctionality. I was able to perform Face detection, and now i need to implement Face Recognition.
Thanks in advance
if it is opencv3.0 (and desktop java),
change CmakeLists.txt so that it says:
ocv_define_module(face opencv_core opencv_imgproc WRAP python java)
rerun cmake, make, make install
there is some testing code here, also please have a look at the tutorial
Hi,Berak,
How to achieve this in windows environment?
Thanks BP
see the readme here , please.
Hi,
Followed readme and your tips from other post
1) Downloaded opencv_contrib from github 2) extract zip file in d:\open_contrib 3) Followed your instruction from other post and created a sub folder buildmingw under d:\opencv_contrib\modules\face\ 4) cmake -G "MinGW Makefiles" -D CMAKE_CXX_COMPILER=mingw32-g++.exe -D CMAKE_C_COMPILER=gcc.exe -D CMAKE_MAKE_PROGRAM=mingw32-make.exe ..
Now i am getting the below error msg, "Unknown CMake command "ocv_define_module"
Pls. help me to resolve this issue.
Thanks BP