当前位置:   article > 正文

annocoda3安装的python环境下,配置opencv3_在annocoda环境下

在annocoda环境下

首先,查看所用python的安装路径which python,定位到python的安装路径。

然后修改相应的opencv的配置命令,安装应用在python3下的opencv的安装教材可参考这儿

annocoda3需要的配置命令为:

cmake -D CMAKE_BUILD_TYPE=RELEASE \
 -D CMAKE_INSTALL_PREFIX=/usr/local \
 -D PYTHON3_EXECUTABLE=/home/jinx/anaconda3/bin/python3 \
 -D PYTHON3_INCLUDE_DIR=/home/jinx/anaconda3/include/python3.6m \
 -D PYTHON3_LIBRARY=/home/jinx/anaconda3/lib/libpython3.6m.so \
 -D PYTHON3_NUMPY_INCLUDE_DIRS=/home/jinx/anaconda3/lib/python3.6/site-packages/numpy/core/include ..
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

踩坑记录:
1 在编译过程中出现了TIFFIsTiled@LIBTIFF_4.0的错误
这需要在cmake的时候加上

 -D BUILD_TIFF=ON \
  • 1

这个问题参考这儿
如果出现各种错误,不要担心,直接找到对应的error,总有人踩过的。
2 出现NPY_INTERNAL_BUILD错误

First of all change the directory to ".../site-packages/numpy/core/include/numpy"

Then use ls command.

open file npy_common.h and change the line

#if NPY_INTERNAL_BUILD to #ifndef NPY_INTERNAL_BUILD

write following command

#define NPY_INTERNAL_BUILD just after #ifndef NPY_INTERNAL_BUILD
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

参考这儿

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/613779
推荐阅读
相关标签
  

闽ICP备14008679号