MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / mrvi

Method mrvi

digital_image_processing/index_calculation.py:432–438  ·  view source on GitHub ↗

Modified Normalized Difference Vegetation Index RVI https://www.indexdatabase.de/db/i-single.php?id=275 :return: index

(self)

Source from the content-addressed store, hash-verified

430 return self.nir / self.red
431
432 def mrvi(self):
433 """
434 Modified Normalized Difference Vegetation Index RVI
435 https://www.indexdatabase.de/db/i-single.php?id=275
436 :return: index
437 """
438 return (self.rvi() - 1) / (self.rvi() + 1)
439
440 def m_savi(self):
441 """

Callers

nothing calls this directly

Calls 1

rviMethod · 0.95

Tested by

no test coverage detected