How to use spatial image coordinates to get image pixel values??

4 visualizaciones (últimos 30 días)
BHARATH
BHARATH el 25 de Ag. de 2011
Dear all I am working in hyperspectral image classification. I need to collect the training samples using the displayed image. I have gone through impoly, imrect.. It gives the coordinates. It doesnt help me much...
does any one has any idea?? how to do it??
  2 comentarios
Sean de Wolski
Sean de Wolski el 25 de Ag. de 2011
So given a rectangle or other polygon, extract the pixel values inside it?
Maria
Maria el 29 de Ag. de 2012
Editada: Maria el 29 de Ag. de 2012
Could you please help with this. Yes I want the pixel values inside a polygon of an image(colored) only.how should I do that?
This is how the polygon has been made
rgbImage = imread('100_3816.jpg');
imshow(rgbImage);
BW = roipoly;
% Mask the image.
maskedRgbImage = bsxfun(@times, rgbImage, cast(BW,class(rgbImage)));
% Display it.
imshow(maskedRgbImage);

Iniciar sesión para comentar.

Respuestas (1)

Chaowei Chen
Chaowei Chen el 27 de Ag. de 2011
You are almost there.
ROI=roipoly(img);
pixValue=img(ROI);

Categorías

Más información sobre Hyperspectral Image Processing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by