RGB to night vision

14 visualizaciones (últimos 30 días)
Badboy
Badboy el 22 de Jul. de 2020
Comentada: Rena Berman el 12 de Oct. de 2020
How to create night vision image using MATLAB ....didn't recognize the formula... some one explain to me
  5 comentarios
Walter Roberson
Walter Roberson el 23 de Jul. de 2020
Do not completely change existing questions; start new questions instead.
Rena Berman
Rena Berman el 12 de Oct. de 2020
(Answers Dev) Restored edit

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 23 de Jul. de 2020
RGB = imread('baby.jpg');
RGBd = im2double(RGB);
G = RGBd(:,:,2);
OutputR = G/2;
OutputB = 2 * OutputR;
OutputG = 2 * OutputB;
Nightvision = im2uint8( cat(3, OutputR, OutputG, OutputB) );
montage({RGB, Nightvision})
  1 comentario
Walter Roberson
Walter Roberson el 23 de Jul. de 2020
That is a different Question that has nothing to do with nightvision .

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by