GaussFilter
洛 2022/7/10
# gma.rasp.Kernel.GaussFilter(InFile, OutFile, KernelSize = 3, OutFormat = 'GTiff')1.0.11 +
功能: 【高斯滤波】。利用高斯核对影像进行滤波处理。
参数:
InFile:str
。输入栅格路径。
OutFile:str
。输出栅格路径。
可选参数:
KernelSize = int
。滤波核大小。默认为 3(× 3)。
OutFormat = str
。输出栅格文件格式。默认为 GTiff,其他格式详见 rasp.ToOtherFormat 函数。
相关函数:
math.Kernel.GaussFilter
示例:
from gma import rasp
InFile = 'ESA_LC2020_Luoyang.tif'
OutFile = 'GaussFilter.tif'
rasp.Kernel.GaussFilter(InFile, OutFile, KernelSize = 3)
1
2
3
4
5
2
3
4
5
原始数据与普通滤波结果对比: