I am working on palm print recognisation,I have an PALM image ,I need to extract R G B components and NRI,CAN ANYONE TELL HOW TO PROCESS,i HAVE UPLOADED THE IMAGE http://imgur.com/wNXiE

1 comentario

Hitarth
Hitarth el 30 de Mayo de 2013
im1=I(:,:,1);
im2=rgb2gray(I);
im3=imsubtract(im1,im2);
imshow(im3)
im4=im2bw(im3,0.5);
imshow(im4)

Iniciar sesión para comentar.

 Respuesta aceptada

Image Analyst
Image Analyst el 24 de Sept. de 2011

1 voto

If you have an RGB image, to get the red, green, and blue:
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
If you have some special format image, such as a multi-page TIFF image, with the "N" image also stored in it (as your web page hints at), then you might look into the Tiff class. Look it up in the help, especially the page on "Reading Image Data and Metadata from TIFF Files"

3 comentarios

FIR
FIR el 26 de Sept. de 2011
thank u siR,could u please tell how to extraxt NIR PORTION for taht image which i have uploaded
http://imgur.com/wNXiE
Walter Roberson
Walter Roberson el 26 de Sept. de 2011
That image is a PNG file. PNG files are not able to store additional bands, with the exception that a band could be encoded as the alpha (transparency) channel.
It is, however, not clear that what you uploaded was the _original_ image, so we could suspect that the original image was stored in some other file format.
Or is the question merely one of cropping that (already small) image to extract the portion labled NIR ? Working with images that small seems unlikely to be productive.
Kwen
Kwen el 12 de Nov. de 2013
This was exactly what I needed, thank you!!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Centro de ayuda y File Exchange.

Preguntada:

FIR
el 24 de Sept. de 2011

Comentada:

el 12 de Nov. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by