web-dev-qa-db-fra.com

Comment installer OpenCV3 pour Python 3.6 sur Ubuntu 16?

J'ai essayé d'installer OpenCV à partir des sources. Il s’installe parfaitement pour python 2.7 et python 3.5, mais n’est pas installé pour python 3.6.

Je l'ai construit en utilisant la commande suivante:

cmake -D CMAKE_BUILD_TYPE=RELEASE \
      -D CMAKE_INSTALL_PREFIX=/usr/local \
      -D PYTHON_EXECUTABLE=/usr/bin/python3.6 ..

La sortie montre:

--   Python 3:
--     Interpreter:                 /usr/bin/python3 (ver 3.5.2)
--     Libraries:                   /usr/lib/x86_64-linux-gnu/libpython3.5m.so (ver 3.5.2)
--     numpy:                       /home/courts/.local/lib/python3.5/site-packages/numpy/core/include (ver 1.12.0)
--     packages path:               lib/python3.5/dist-packages
-- 
--   Python (for build):            /usr/bin/python3

Et quand je make install, la bibliothèque OpenCV devient présente dans le dossier dist-packages pour python3.5, mais pas python3.6.

C'est dans le journal de construction:

-- Found PythonInterp: /usr/bin/python3.6 (found suitable version "3.6.2", minimum required is "2.7") 
-- Found PythonInterp: /usr/bin/python3 (found suitable version "3.5.2", minimum required is "3.4") 
-- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython3.5m.so (found suitable exact version "3.5.2") 
2
Morgoth

J'ai listé tous les drapeaux du compilateur en lançant:

cmake -L | awk '{if(f)print} /-- Cache values/{f=1}'

En utilisant les drapeaux qui semblaient utiles, j'ai construit ceci:

cmake -D CMAKE_BUILD_TYPE=RELEASE \
      -D CMAKE_INSTALL_PREFIX=/usr/local/ \
      -D PYTHON_EXECUTABLE=/usr/bin/python3.6 \
      -D PYTHON_INCLUDE=/usr/include/python3.6/ \
      -D PYTHON_LIBRARY=/usr/lib/python3.6/ \
      -D PYTHON_PACKAGES_PATH=/usr/local/lib/python3.6/dist-packages/ \
      -D PYTHON_NUMPY_INCLUDE_DIR=/usr/local/lib/python3.6/dist-packages/numpy/core/include/ \
      ..

Cela a fonctionné.

1
Morgoth

Après avoir suivi ces étapes d’abord pour installer Python 3.6 sur Ubuntu 16, vous devrez procéder comme suit pour obtenir OpenCV compilé uniquement pour Python 3.6. Cela a été testé pour OpenCV 3.4.3.

curl -L https://github.com/opencv/opencv/archive/3.4.3.Zip -o opencv.Zip
curl -L https://github.com/opencv/opencv_contrib/archive/3.4.3.Zip -o opencvContrib.Zip
unzip -q opencvContrib.Zip
unzip -q opencv.Zip && cd opencv-3.4.3/ && mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE \
        -DBUILD_opencv_python3=yes \
        -DCMAKE_INSTALL_PREFIX=/usr/local/ \
        -DOPENCV_EXTRA_MODULES_PATH=../../opencv_contrib-3.4.3/modules \
        -DPYTHON3_EXECUTABLE=/usr/bin/python3.6 \
        -DPYTHON3_INCLUDE=/usr/include/python3.6/ \
        -DPYTHON3_INCLUDE_DIR=/usr/include/python3.6m \
        -DPYTHON3_LIBRARY=/usr/lib/python3.6/config-3.6m-x86_64-linux-gnu/libpython3.6.so \
        -DPYTHON3_PACKAGES_PATH=/usr/local/lib/python3.6/dist-packages/ \
        -DPYTHON_NUMPY_INCLUDE_DIR=/usr/local/lib/python3.6/dist-packageis/numpy/core/ \
        -DBUILD_NEW_PYTHON_SUPPORT=ON 
make -j 4 && make install && cd / && rm opencv.Zip && rm opencvContrib.Zip && rm -rf opencv-3.4.3/
0
Amir