Quantcast
Channel: OpenCV Q&A Forum - RSS feed
Viewing all articles
Browse latest Browse all 2088

ERROR using opencv_contrib with Python 3.x

$
0
0
Whenever I try to use something from the opencv_contrib I get an error: ---------- Ex1: In the command line python >>> import cv2>>> help(cv2.xfeatures2d) AttributeError: module 'cv2' has no attribute 'xfeatures2d' ---------- Ex2: Trying to run the following code (just the first few lines) import cv2 import sys if __name__ == '__main__' : tracker = cv2.Tracker_create("BOOSTING") I Get Traceback (most recent call last): File "tracking.py", line 6, in tracker = cv2.Tracker_create("BOOSTING") AttributeError: module 'cv2' has no attribute 'Tracker_create' ---------- My seetings for the cmake were: cmake -D CMAKE_BUILD_TYPE=RELEASE \ -D CMAKE_INSTALL_PREFIX=/usr/local \ -D OPENCV_EXTRA_MODULES_PATH= /Users/MatheusTorquato/OpenCV/opencv_contrib/modules \ -D PYTHON3_LIBRARY=/usr/local/Cellar/python3/3.6.0_1/Frameworks/Python.framework/Versions/3.6/lib/python3.6/config-3.6m-darwin/libpython3.6.dylib \ -D PYTHON3_INCLUDE_DIR=/usr/local/Cellar/python3/3.6.0_1/Frameworks/Python.framework/Versions/3.6/include/python3.6m/ \ -D PYTHON3_EXECUTABLE=$VIRTUAL_ENV/bin/python \ -D BUILD_opencv_python2=OFF \ -D BUILD_opencv_python3=ON \ -D INSTALL_PYTHON_EXAMPLES=ON \ -D INSTALL_C_EXAMPLES=OFF \ -D BUILD_EXAMPLES=ON \ -D BUILD_opencv_cvv=OFF\ -D BUILD_opencv_adas=OFF .. Everything looks fine. - Configuring: Ok - [File](https://www.dropbox.com/s/7plzmetg2hng70p/configuring_output.txt?dl=0) - Making: Ok - [File](https://www.dropbox.com/s/fxpdvfvj5q181qr/making_output.txt?dl=0) - Installing: Ok - [File](https://www.dropbox.com/s/k3slaghx4tx4f84/Installing_output.txt?dl=0) ---------- - Python Version – 3.6.0 - OpenCV Version – ‘3.2.0-dev’ - Operating System - macOS Sierra I've installed everything using [this](http://www.pyimagesearch.com/2016/12/05/macos-install-opencv-3-and-python-3-5/#comment-420398) tutorial Any ideas? Regards, Matheus Torquato

Viewing all articles
Browse latest Browse all 2088

Trending Articles