當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python ArcGIS colormap_to_rgb用法及代碼示例


本文簡要介紹 python 語言中 arcgis.raster.functions.colormap_to_rgb 的用法。

用法:

arcgis.raster.functions.colormap_to_rgb(raster)

返回:

輸出柵格。

colormap_to_rgb 函數設計用於與具有內部色彩圖的單波段圖像服務配合使用。它將圖像轉換為 three-band 8 位 RGB 柵格。除輸入柵格外,該函數不接受任何參數。對於合格的影像服務,自動應用ColormapToRGB函數有兩種情況: 影像服務的“colormapToRGB”屬性設置為true;或者,客戶要求將圖像導出為 jpg 或 png 格式。欲了解更多信息,請參閱Colormap To RGB function

該函數的參數如下:

Parameter

Description

raster

需要輸入 Raster / ImageryLayer 對象。

例子:

# Usage Example 1: Converts the input raster into a three-band RGB raster.

rgb_op = colormap_to_rgb(raster)

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.functions.colormap_to_rgb。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。