无法从 scipy.stats 导入名称 'threshold'
Cannot import name 'threshold' from scipy.stats
我正在尝试使用 scipy
包中的函数 threshold
。
from scipy.stats import threshold
I_t=threshold(I, threshmin=2, threshmax=400, newval=-1) # I is an array containing image data
但是,我收到一条错误消息说
cannot import name 'threshold' from 'scipy.stats'
函数 threshold
改为 deprecated in SciPy 0.17.0 and removed from SciPy 1.0.0. Use numpy.clip
(适当调整参数)。
我正在尝试使用 scipy
包中的函数 threshold
。
from scipy.stats import threshold
I_t=threshold(I, threshmin=2, threshmax=400, newval=-1) # I is an array containing image data
但是,我收到一条错误消息说
cannot import name 'threshold' from 'scipy.stats'
函数 threshold
改为 deprecated in SciPy 0.17.0 and removed from SciPy 1.0.0. Use numpy.clip
(适当调整参数)。