在envi软件的band math中公式如下floatb1-floatb2floatb1+floatb2gt 04 and b300001 gt 011请修改。
在ENVI软件的band math中,根据您提供的公式,需要做如下修改:
-
将((float(b1)-float(b2))/(float(b1)+float(b2)))gt 0.4修改为((float(b1)-float(b2))/(float(b1)+float(b2))) > 0.4。这里的gt是大于的意思,应该使用大于符号(>)表示。
-
将((b30.0001) gt 0.11)修改为(b30.0001) > 0.11。同样,这里的gt应改为大于符号(>)。
修改后的公式如下: (((float(b1)-float(b2))/(float(b1)+float(b2))) > 0.4) and ((b3*0.0001) > 0.11)
原文地址: https://www.cveoy.top/t/topic/itfi 著作权归作者所有。请勿转载和采集!