用Python进行高光谱图像处理

时间:2016-06-22 06:40:33

标签: python enthought

你如何使用python的enthought冠层分布读入高光谱图像(3d)?

2 个答案:

答案 0 :(得分:1)

安装Spectral Python (Spy)是最好的方法:

C:\Users\Me> pip install spectral

安装模块后,可以通过以下方式轻松完成将高光谱图像读入内存:

>>> import spectral
>>> img = spectral.open_image(<HSI_filename>)

答案 1 :(得分:0)

安装间谍软件包。 使用ipython终端。

ipython --pylab

读取内存并查看HSI:

from spectral import*
import numpy as np
var=open_image(r"C:\<give_image_file_location>")
img= var.load()    #save as ndarray
np.save(outimg, img)    #save image to a binary file in .npy format
imshow(var)   #view image in some bands