How can i read the whole RGB image pixel by pixel with their values and to check that if pixels have specific value please guide me
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Ruchi
 el 27 de Abr. de 2013
  
    
    
    
    
    Respondida: Mohamed Muhajir
 el 31 de En. de 2017
            How can i read the whole RGB image pixel by pixel with their values and to check that if pixels have specific value please guide me
0 comentarios
Respuesta aceptada
  Chandra Shekhar
      
 el 27 de Abr. de 2013
        
      Editada: Chandra Shekhar
      
 el 27 de Abr. de 2013
  
      Suppose your image size is 50*50, then u separate each RGB plane.
image=imread('img.jpg');
R=image(:,:,1); or R=image(1:50,1:50,1);
G=image(:,:,2); or G=image(1:50,1:50,2);
B=image(:,:,3); or B=image(1:50,1:50,3);
by varying row and column of each plane you can check pixel values.
I hope this is answer for your question.
2 comentarios
  Chandra Shekhar
      
 el 27 de Abr. de 2013
				
      Editada: Chandra Shekhar
      
 el 28 de Abr. de 2013
  
			I=imread('board.tif');
[m n k]=size(I);
for l=1:k
    for i=1:m
        for j=1:n
           if  I(i:j:l)==1
               do
           else
               dont
           end
        end 
    end
end
Más respuestas (1)
Ver también
Categorías
				Más información sobre Image Segmentation and Analysis 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!