Synthèse
Calculates the Visible Atmospherically Resistant Index (VARI) from a multiband raster object and returns a raster object with the index values.
Discussion
L'indice visible de réduction des effets atmosphériques (VARI) permet de mettre en évidence la végétation dans la portion visible du spectre, tout en atténuant les différences d'éclairage et les effets atmosphériques. Il est parfaitement adapté aux images RVB ou couleur. Il utilise les trois canaux de couleur.
VARI = (Green - Red) / (Green + Red – Blue)
- Vert = valeurs de pixel du canal vert
- Rouge = valeurs de pixel du canal rouge
- Bleu = valeurs de pixel du canal bleu
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.
Syntaxe
VARI (raster, {red_band_id}, {green_band_id}, {blue_band_id})
Paramètre | Explication | Type de données |
raster | The input raster. | Raster |
red_band_id | The band ID of the red-edge band. The band ID index uses one-based indexing. (La valeur par défaut est 3) | Integer |
green_band_id | The band ID of the green band. The ID index uses one-based indexing. (La valeur par défaut est 2) | Integer |
blue_band_id | The band ID of the blue band. The ID index uses one-based indexing. (La valeur par défaut est 1) | Integer |
Type de données | Explication |
Raster | The output raster with the VARI values. |
Exemple de code
Calculates the Visible Atmospherically Resistant Index for a Landsat 8 image.
import arcpy
VARI_raster = arcpy.ia.VARI("Landsat8.tif",4,3,2)
Vous avez un commentaire à formuler concernant cette rubrique ?