描述
基于已定义的焦点邻域计算影像中各像元的统计数据。
语法
Statistics (raster, kernel_columns, kernel_rows, stat_type, {fill_no_data_only})
参数 | 说明 | 数据类型 |
raster | 要执行焦点统计的输入栅格。 | Raster |
kernel_columns | 要在焦点邻域尺寸中使用的像素列数。 (默认值为 3) | Integer |
kernel_rows | 要在焦点邻域尺寸中使用的像素行数。 (默认值为 3) | Integer |
stat_type | 指定要计算的统计类型。
(默认值为 Mean) | String |
fill_no_data_only | 指定是否相似分析中忽略 NoData 值。
(默认值为 False) | Boolean |
数据类型 | 说明 |
Raster | 输出栅格。 |
代码示例
执行邻域统计数据计算。
import arcpy
from arcpy import env
from arcpy.ia import *
# Set environment settings
env.workspace = "C:/statistics_example/data"
# Set local variables
inRaster = "elevation.tif"
kernel_columns=5
kernel_rows=5
stat_type="Mean"
fill_no_data_only = True
# for each pixel, calculate the average value of pixels within its neighborhood. the neighborhood size is 5x5
output = Statistics(imagePath1, kernel_columns, kernel_rows, stat_type, fill_no_data_only)
output.save("statistics_mean_5_by_5.tif")