cuda8.0 opencv 2を構成する.4.9可能性のある2つの問題
1、 nvcc fatal : Unsupported gpu architecture’compute_11’ソリューション:~/opencv-2.4.9/build
2、error:‘NppiGraphcutState’has not been declaredソリューション:opencvディレクトリでgraphcutsを見つける.cpp修正
を選択します.
3、NCVPixelOperations.hpp(xx):error:a storage class is not allowed in an explicit specialization置換NCVpixelOperations.hppダウンロードアドレス:http://download.csdn.net/download/znculee/92948854、make install時に現れる:CMake Error at cmake_install.cmake:36(FILE):これは権限不足の問題で、解決策:
sudo cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D CUDA_GENERATION=Kepler ./
2、error:‘NppiGraphcutState’has not been declaredソリューション:opencvディレクトリでgraphcutsを見つける.cpp修正
#if !defined (HAVE_CUDA) || defined (CUDA_DISABLER)
を選択します.
#if !defined (HAVE_CUDA) || defined (CUDA_DISABLER) || (CUDART_VERSION >= 8000)
3、NCVPixelOperations.hpp(xx):error:a storage class is not allowed in an explicit specialization置換NCVpixelOperations.hppダウンロードアドレス:http://download.csdn.net/download/znculee/92948854、make install時に現れる:CMake Error at cmake_install.cmake:36(FILE):これは権限不足の問題で、解決策:
sudo make install