2

I can install opencv-contrib-python successfully according to the instruction from the link:

https://pypi.org/project/opencv-python/#description.

However, one error occurs when I call the function fastBilateralSolverFilter in my python code. It says that

error: (-213:The function/feature is not implemented) fastBilateralSolverFilter : needs to be compiled with EIGEN in function 'cv::ximgproc::fastBilateralSolverFilter'

import cv2 works. If I run the command dir(cv2.ximgproc), the function fastBilateralSolverFilter is listed on the screen. I know EIGEN is a math library, but I can't figure out one way to solve the problem.

1 Answer 1

2

You can install OpenCV through anaconda to avoid compiling. The anaconda's OpenCV package is already precompiled with EIGEN.

conda install -c conda-forge opencv
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.