In Open Cv 3.0.0 FaceRecognizer class cannot be resolved while compiling in Linux (Ubuntu). This used to work in 2.4.11 version and the class was present in the contrib module. Looks like the contrib module is missing in the Open cv 3.0.0 version.
Open cv 3.0.0 FaceRecognizer class cannot be resolved while compiling in Linux (Ubuntu)
721 Views Asked by Abbyss At
1
There are 1 best solutions below
Related Questions in OPENCV
- segmentation fault: 11, extracting data in vector
- Disable OpenCL in OpenCV completely
- Python - Writing your own function with opencv giving an error
- Opengl Augmented Reality in Android from solvepnp
- OpenCv Multispectral Image openCV
- Displaying bitmap image on Android (OpenCV)
- Applying homography on non planar surface
- BackgroundSubtractor getBackgroundImage() function return empty Image
- How to choose good SURF feature keypoints?
- opencv python error: Assertion failed (size.width>0 && size.height>0)
- CIDetector to filter rectangle and get cropped image
- How to detect squares in video with OpenCV?
- Python OpenCV error: (-215) size.width>0 && size.height>0 in function imshow
- OpenCV algorithm of contours searching and creation of bounding rectagle
- OpenCV Opening/Closing shifts the positions of the pixels
Related Questions in FACE-RECOGNITION
- Face cropping using facial landmarks
- Fanelli face detection - PCL code vs. author's implementation
- Face reconization in android
- How to create an caffemodel file from training image and its labeled?
- Update and save face recognition model
- Luxand SDK not installing in iPhone5C
- Insufficient memory opencv
- Access a specific element inside a Mat matrix using openCV
- Error comparing values in "if" construct
- Either Photo or Live Face How to check with Android Camera
- Face recognition algorithms
- What is the best approach to perform face recognition in Windows 10 for a Universal Application?
- Open cv 3.0.0 FaceRecognizer class cannot be resolved while compiling in Linux (Ubuntu)
- Why am I getting an opencv error with size of images when they are as expected?
- Face alignment using openImaj API libraries
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The contrib module by default doesn't come with the installation of open cv 3.0.0
The contrib module has to be separately installed. Please follow the instructions below to get rid of the compilation issue with FaceRecognizer class.
In the above command, opencv_contrib is the opencv contrib module directory path that you have downloaded from the github link [https://github.com/Itseez/opencv_contrib/tree/3.0.0-rc1][1]. opencv_source_directory is the source directory of the opencv, which would be typically the open cv root folder where you extracted or downloaded it, this would be ../ if you have followed open cv tutorial instructions for installing and creating the release or build folder
I used RC1 tag of open cv 3.0.0 from github, you can use tag of your choice.
using namespace cv; using namespace face;
Now you shouldn't see any compilation issue.