当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ArcGIS threshold用法及代码示例


本文简要介绍 python 语言中 arcgis.raster.functions.threshold 的用法。

用法:

arcgis.raster.functions.threshold(raster, astype=None)

返回:

应用了函数的输出栅格。

阈值函数产生二进制阈值图像。它使用 Otsu 方法并假设输入图像具有bi-modal 直方图。

阈值函数的参数如下:

Parameter

Description

raster

需要输入 Raster / ImageryLayer 对象。

astype

可选字符串。输出像素类型。可用选项是 - “C128” | “C64” | “F32” | “F64” | “S16” | “S32” | “S8” | “U1” | “U16” | “U2” | “U32” | “U4” | “U8”。默认为无。

例子:

# Usage Example 1: Applies binary thresholding to the input raster.

threshold_op = threshold(inp_raster)

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.raster.functions.threshold。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。