Anaconda安裝SpectralEntropy
https://github.com/YuanyueLi/SpectralEntropy
https://github.com/YuanyueLi/SpectralEntropy/releases/
1. 下載壓縮包,解壓;
2. 在解壓得到的文件夾中 Shift+鼠標(biāo)右鍵,在此處打開Powershell窗口,復(fù)制文件夾路徑;
3.?以管理員身份運(yùn)行Anaconda Promt,cd 路徑(舉例 >cd /d D:\Download\SpectralEntropy-1.0.0\SpectralEntropy-1.0.0)
4. 輸入?python setup.py build_ext --inplace,回車鍵運(yùn)行;
5. 完成上一步后輸入 python setup.py install,回車鍵運(yùn)行。
可以運(yùn)行以下代碼測(cè)試是否成功安裝SpectralEntropy。
import numpy as np
import scipy.stats
import spectral_entropy
spectrum = np.array([[69.071, 7.917962], [86.066, 1.021589], [86.0969, 100.0]], dtype=np.float32)
spectrum = spectral_entropy.clean_spectrum(spectrum)
entropy = scipy.stats.entropy(spectrum[:, 1])
print("Spectral entropy is {}.".format(entropy))
# The output should be: Entropy similarity:0.2605222463607788.
print('-' * 30)