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

Method ipvi

digital_image_processing/index_calculation.py:408–414  ·  view source on GitHub ↗

Infraself.red percentage vegetation index https://www.indexdatabase.de/db/i-single.php?id=35 :return: index

(self)

Source from the content-addressed store, hash-verified

406 return (self.nir - b) / (a * self.red)
407
408 def ipvi(self):
409 """
410 Infraself.red percentage vegetation index
411 https://www.indexdatabase.de/db/i-single.php?id=35
412 :return: index
413 """
414 return (self.nir / ((self.nir + self.red) / 2)) * (self.ndvi() + 1)
415
416 def i(self):
417 """

Callers

nothing calls this directly

Calls 1

ndviMethod · 0.95

Tested by

no test coverage detected