Borrar filtros
Borrar filtros

Help me how can identify intensity for each wavelength

1 visualización (últimos 30 días)
I have 30 RGB images, how can I identify each band intensity?

Respuesta aceptada

Ramanuja Jagannathan
Ramanuja Jagannathan el 4 de Ag. de 2017
I believe by band intensity you mean to separate R,G,B components from the image and get individual intensities. To do that, get individual 2-D matrices from the 3-D matrix. So, if 'img' is a variable containing the color image data.
R = img(:,:,1);
G = img(:,:,2);
B = img(:,:,3);
Hope this is what you are looking for.
  1 comentario
swetha Derangula
swetha Derangula el 5 de Ag. de 2017
Editada: swetha Derangula el 5 de Ag. de 2017
hello sir
Thanks for your suggestions! For Individual will prefer threshold, histogram etc.. I have different wavelengths images like 400nm to 700nm, how can I find out intensity for each wavelength , I will share you sample image for your reference
Thank you

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by