Counting pixels in echocardiogram image
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Zo
el 21 de Feb. de 2019
Respondida: Krishna Zanwar
el 26 de Feb. de 2019
Hello good morning ,
What is a code to count the RGB pixel values in attached image?
0 comentarios
Respuesta aceptada
Krishna Zanwar
el 26 de Feb. de 2019
Hey Zo,
I am not clear on what your objective is.
If you want to count how many pixels are there for each possible color combination you can run this script in Matlab -
A = imread('image.jpg')
b=size(A)
col=zeros(256,256,256);
for i=1:b(1)
for j=1:b(2)
col(A(i,j,1)+1,A(i,j,2)+1,A(i,j,3)+1)=col(A(i,j,1)+1,A(i,j,2)+1,A(i,j,3)+1)+1;
end
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Data 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!