GeneralFilter

2022/7/10

# gma.rasp.Kernel.GeneralFilter(InFile, OutFile, KernelSize = 3, Method = 'Median', OutFormat = 'GTiff')


功能: 【普通滤波】。对影像进行普通滤波处理。

参数:

 InFile:str。输入栅格路径。

 OutFile:str。输出栅格路径。

可选参数:

 KernelSize = int。滤波核大小。默认为 3(× 3)。

 Method = str。滤波方法。默认中值滤波(Median)。

其他滤波方法

Mean(均值滤波),Min(最小值滤波),Sum(求和滤波),Max(最大值滤波)。

 OutFormat = str。输出栅格文件格式。默认为 GTiff,其他格式详见 rasp.ToOtherFormat 函数。

相关函数:

 math.Kernel.GeneralFilter


示例:

from gma import rasp

InFile = 'ESA_LC2020_Luoyang.tif'
OutFile = 'GeneralFilter.tif'
rasp.Kernel.GeneralFilter(InFile, OutFile, KernelSize = 3)
1
2
3
4
5

原始数据与高斯滤波结果对比: