Skip to content

mhdbs/hand_gesture_recognition_cv2_numpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

#gesturre-recognition-opencv

Installing OpenCV 3from source Python 3

  • wget https://github.com/Itseez/opencv/archive/3.2.0.zip

  • unzip 3.2.0.zip

  • cd opencv-3.2.0

  • mkdir release && cd release cmake -DBUILD_TIFF=ON
    -DBUILD_opencv_java=OFF
    -DWITH_CUDA=OFF
    -DENABLE_AVX=ON
    -DWITH_OPENGL=ON
    -DWITH_OPENCL=ON
    -DWITH_IPP=OFF
    -DWITH_TBB=ON
    -DWITH_EIGEN=ON
    -DWITH_V4L=ON
    -DWITH_VTK=OFF
    -DBUILD_TESTS=OFF
    -DBUILD_PERF_TESTS=OFF
    -DCMAKE_BUILD_TYPE=RELEASE
    -DBUILD_opencv_python2=OFF
    -DCMAKE_INSTALL_PREFIX=$(python3.6 -c "import sys; print(sys.prefix)")
    -DPYTHON3_EXECUTABLE=$(which python3.6)
    -DPYTHON3_INCLUDE_DIR=$(python3.6 -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())")
    -DPYTHON3_PACKAGES_PATH=$(python3.6 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") ..

  • The output of above will be similar to this: output

  • make -j4

  • make install

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages