Added ENDVI, NDVI (Blue) thanks @Miguelistan

pull/778/head
Piero Toffanin 2019-12-18 15:04:34 -05:00
rodzic d091739e78
commit fd2410e463
2 zmienionych plików z 10 dodań i 2 usunięć

Wyświetl plik

@ -10,6 +10,14 @@ algos = {
'expr': '(N - R) / (N + R)', 'expr': '(N - R) / (N + R)',
'help': 'Normalized Difference Vegetation Index shows the amount of green vegetation.' 'help': 'Normalized Difference Vegetation Index shows the amount of green vegetation.'
}, },
'NDVI (Blue)': {
'expr': '(N - B) / (N + B)',
'help': 'Normalized Difference Vegetation Index shows the amount of green vegetation.'
},
'ENDVI':{
'expr': '((N + G) - (2 * B)) / ((N + G) + (2 * B))',
'help': 'Enhanced Normalized Difference Vegetation Index is like NDVI, but uses Blue and Green bands instead of only Red to isolate plant health.'
},
'VARI': { 'VARI': {
'expr': '(G - R) / (G + R - B)', 'expr': '(G - R) / (G + R - B)',
'help': 'Visual Atmospheric Resistance Index shows the areas of vegetation.', 'help': 'Visual Atmospheric Resistance Index shows the areas of vegetation.',
@ -82,8 +90,8 @@ algos = {
camera_filters = [ camera_filters = [
'RGB', 'RGB',
'RGN', 'RGN',
'NRG',
'NGB', 'NGB',
'NRG',
'NRB', 'NRB',
# more? # more?

Wyświetl plik

@ -1,6 +1,6 @@
{ {
"name": "WebODM", "name": "WebODM",
"version": "1.2.1", "version": "1.2.2",
"description": "Open Source Drone Image Processing", "description": "Open Source Drone Image Processing",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {