How to calculate NDI Index

5 visualizaciones (últimos 30 días)
MaxM
MaxM el 19 de Mayo de 2021
Comentada: Stephan el 20 de Mayo de 2021
Hello,
I have to calculate the NDI (Normalized difference index) according to the formula: NDI = 128*(((G-R)/(G+R))+1)
This index is applied to all pixels of the image, giving values between 1 and +1, but to display the image, these values must be between 0 and 255.
Can someone please explain and help me how to do this?

Respuestas (1)

Stephan
Stephan el 19 de Mayo de 2021
Editada: Stephan el 19 de Mayo de 2021
NDI_new = uint8(rescale(NDI, 0, 255));
  2 comentarios
MaxM
MaxM el 19 de Mayo de 2021
Thank you for your answer about the rescale. First, how can I calculate the NDI for each pixel of my image ?
Stephan
Stephan el 20 de Mayo de 2021
What are G and R - green and red values? Or what is meant?

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by