What NDVI is:
NDVI (Normalized Difference Vegetation Index) is a number between about -1 and 1 that expresses how “vegetation-like” and how vigorous a pixel is, based on how it reflects red and near‑infrared (NIR) light. Healthy leaves strongly absorb red (for photosynthesis) and strongly reflect NIR, so NDVI is high there.
Step 1: Capture multispectral bands
A multispectral drone camera captures several separate images at the same time, each in a narrow spectral band (for example: green, red, red‑edge, NIR), not just RGB.
At acquisition time:
Step 2: Radiometric calibration (turn DN into reflectance)
Raw band images come out as digital numbers (DNs), which depend on exposure, sensor gain, and illumination conditions. To compare Red and NIR meaningfully, they must be converted to reflectance (fraction of incoming light reflected).
Typical workflow:
Without this step, NDVI can still be computed, but values can be out of the expected -1 to 1 range or inconsistent between flights and lighting conditions.
Step 3: Build georeferenced band orthomosaics
Next, all those overlapping frames in each band are aligned and stitched into orthomosaics:
After this step, you typically have a multiband orthomosaic (e.g., band stack) or separate single‑band GeoTIFFs for Red and NIR, all in the same projection and resolution.
Step 4: Perform band math to compute NDVI
Now the core NDVI step is just band math:
NDVI=(NIR−Red) / (NIR+Red)
This is applied per pixel over the aligned Red and NIR rasters.
Typical implementations:
The normalization (dividing by NIR + Red) keeps NDVI in a bounded range, theoretically between -1 and 1 for physically realistic reflectance values.
Values are interpreted as:
Step 5: Visualize NDVI as a map
The NDVI raster is a single‑band image, but to interpret it, software applies a color ramp:
This visual NDVI map is what you usually deliver for agronomy or vegetation assessments, sometimes combined with contour overlays, zones, or polygons.
Step 6: Quality checks and practical considerations
In practice, several things affect how “trustworthy” the NDVI is:
Ground truthing: NDVI variations must be linked to actual field conditions (visual inspection, leaf samples, soil tests) to interpret thresholds and stress patterns correctly