gemi
Contents: Description, Arguments, Usage, Examples, Images, Related Functions, Source Supported Under Version: > 1.00
Description Generates a Global Environmental Monitoring Index map
Arguments and Return Values Arguments: 1- or 2-dimensional greyscale images representing near-infrared and red spectral bands (both are required) Return Value: A float greyscale image
Usage Syntax: gemi(nir, red) 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. GEMI 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: Xi = ((NIR^2 - Red^2) * 2 + (NIR * 1.5) + (Red * 0.5) ) / (NIR + Red + 0.5) GEMI = Xi * (1 - (Xi * 0.25)) - ((Red - 0.125) / (1 - Red)) 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> result = gemi(nir, r) Generating a Global Environmental Monitoring Index image. 2000x1000x1 array of float, bsq format [8,000,000 bytes] dv> max(result) 1.095455647 dv> min(result) -221.5840912
|
DavinciWiki Mini-Nav Bar Contents
Contact Developers
All other topics
Recent Library Changes Created On: 07-16-2012 |