我正在使用来自 SKimage 的不同阈值算法,当我导入某些包时出现错误,但其他包没有问题。例如:
from skimage.filter import threshold_adaptive, threshold_isodata
返回回溯:
ImportError: cannot import name threshold_isodata
. 我正在使用 python 2.7,并遵循此处找到的文档:http: //scikit-image.org/docs/dev/api/skimage.filter.html#skimage.filter.threshold_isodata
具体来说,我希望使用threshold_isodata 和threshold_yen。有人对如何解决此错误有建议吗?或者,是否有其他软件包使用相同的算法?