我在python中写过这样的代码:
from selective_search import *
if __name__ == '__main__':
img = skimage.io.imread('cat.jpg')
regions = selective_search(img)
for v, (i0, j0, i1, j1) in regions:
regions = selective_search(img, \
color_spaces = ['rgb', 'hsv'], \
ks = [50, 150, 300], \
feature_masks = [0, 0, 1, 1])
当我运行代码时,我收到以下错误:
RuntimeError:_ARRAY_API 不是 PyCObject 对象
RuntimeError:_UFUNC_API 不是 PyCObject 对象
我正在导入selective_search,您可以在此链接上看到:https ://github.com/belltailjp/selective_search_py/blob/master/selective_search.py
我已经安装了以下所有依赖项以及所需的或更高版本:
Cython==0.22
joblib==0.8.4
matplotlib==1.4.3
numpy==1.9.2
Pillow==2.8.1
PySide==1.2.2
PyYAML==3.11
scikit-image==0.11.3
scikit-learn==0.16.0
scipy==0.15.1
pytest==2.7.0
我的默认 python 版本是 3.4。
我该如何解决这个问题?