Update Formulas.py - Include the MPRI index

I would like to suggest the inclusion of the MPRI vegetative index (Modified Photochemical Reflectance Index), as it has a 90% correlation with the NDVI in studies carried out for use in large cultures here in Brazil, with RGB cameras. the code would be just below the VARI index on lines 47 to 52.
pull/1320/head
Vagner Silveira 2023-03-31 10:18:00 -04:00 zatwierdzone przez GitHub
rodzic 3ef4c044a3
commit 74d82d09cb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -44,6 +44,11 @@ algos = {
'expr': '(G - R) / (G + R - B)',
'help': _('Visual Atmospheric Resistance Index shows the areas of vegetation.'),
'range': (-1, 1)
},
'MPRI': {
'expr': '(G - R) / (G + R)',
'help': _('Modified Photochemical Reflectance Index'),
'range': (-1, 1)
},
'EXG': {
'expr': '(2 * G) - (R + B)',