摘要
对具有相同像素值的连接区域进行分组,并计算每个区域中的像素数。
语法
RegionPixelCount (raster, {maximum_region_size}, {pixel_neighborhood})
参数 | 说明 | 数据类型 |
raster | The input raster. | Raster |
maximum_region_size | The maximum number of pixels a region can contain. (默认值为 100) | Integer |
pixel_neighborhood | The number of neighborhoods used to assess pixel connectivity. Valid values are 4 and 8. (默认值为 4) | Integer |
数据类型 | 说明 |
Raster |
输出栅格。 |
代码示例
此示例计算了每个区域中的像素数。
from arcpy.ia import *
pixel_count_raster = RegionPixelCount('C:/arcpyExamples/ndvi_threshold.tif', 1000, 4)
pixel_count_raster.save('C:/temp/ndvi_mask.tif')