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 を使用したいと考えています。このエラーを解決する方法について誰か提案がありますか? または、同じアルゴリズムを使用する他のパッケージはありますか?