arvi

From DavinciWiki
Revision as of 12:17, 2 May 2013 by Cedwards (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Description

Generates an Atmospherically-Resistant Vegetation Index map

Arguments and Return Values

Arguments: 1- or 2-dimensional greyscale images representing near-infrared, red, and blue spectral bands (all three are required)

Return Value: A float greyscale image

Usage

Syntax: arvi(nir, red, blue)

This function is part of the larger class of vegetation-index methods used in satellite image-processing. See ndi or this discussion of related functions for more detailed information.

ARVI is of the subtype which will return both positive and negative values. Positive values generally indicate the presence of vegetation (with greater values indicating healthier vegetation). Negative values generally indicate a lack of vegetation (water, rock, soil, etc.).

The formula used is: ARVI = (NIR - (2 * Red) + Blue) / (NIR + (2 * Red) + Blue)

This formula was obtained from "Above-Ground Biomass Estimation of Successional and Mature Forests Using TM Images in the Amazon Basin" (Dengsheng Lu, Paul Mausel, Eduardo Brondizio, and Emilio Moran, 2002).

Examples

dv> nir
2000x1000x1 array of float, bsq format [8,000,000 bytes]

dv> r
2000x1000x1 array of float, bsq format [8,000,000 bytes]

dv> b
2000x1000x1 array of float, bsq format [8,000,000 bytes]

dv> result = arvi(nir, r, b)
Generating an Atmospherically-Resistant Vegetation Index image.
2000x1000x1 array of float, bsq format [8,000,000 bytes]

dv> max(result)
1.000000000

dv> min(result)
-0.2554744482

Images

Full set of LandSat 7 imagery:

NYC-Band Comparison.PNG

Output of arvi():

Vegetation Index-NYC-ARVI.PNG

DavinciWiki Mini-Nav Bar

Contents


Contact Developers

  • davinci-dev [AT] mars.asu.edu

All other topics

  • See navigation on the left

Related Functions

Recent Library Changes

Created On: 07-16-2012
Modified On: 05-02-2013

Personal tools