サマリー
Calculates the Visible Atmospherically Resistant Index (VARI) from a multiband raster object and returns a raster object with the index values.
説明
VARI (Visible Atmospherically Resistant Index) は、日照の違いや大気の影響を軽減しながら、スペクトルの可視部分で植生を強調するように設計されています。 これは、RGB またはカラー画像に最適で、3 つのカラー バンドすべてを利用します。
VARI = (Green - Red) / (Green + Red – Blue)
- Green = 緑色バンドのピクセル値
- Red = 赤色のバンドのピクセル値
- Blue = 青色バンドのピクセル値
For information about other multiband raster indexes, see the Band Arithmetic raster function.
The referenced raster dataset for the raster object is temporary. To make it permanent, you can call the raster object's save method.
構文
VARI (raster, {red_band_id}, {green_band_id}, {blue_band_id})
パラメーター | 説明 | データ タイプ |
raster | The input raster. | Raster |
red_band_id | The band ID of the red-edge band. The band ID index uses one-based indexing. (デフォルト値は次のとおりです 3) | Integer |
green_band_id | The band ID of the green band. The ID index uses one-based indexing. (デフォルト値は次のとおりです 2) | Integer |
blue_band_id | The band ID of the blue band. The ID index uses one-based indexing. (デフォルト値は次のとおりです 1) | Integer |
データ タイプ | 説明 |
Raster | The output raster with the VARI values. |
コードのサンプル
Calculates the Visible Atmospherically Resistant Index for a Landsat 8 image.
import arcpy
VARI_raster = arcpy.ia.VARI("Landsat8.tif",4,3,2)