Borrar filtros
Borrar filtros

Image processing of an echocardiogram image

4 visualizaciones (últimos 30 días)
Zo
Zo el 7 de Feb. de 2019
Comentada: Zo el 7 de Feb. de 2019
Good evening,
in the echocardiogram image below, i wish to extract data from it.
How to extract the area of the coloured section (jet area) and the smallest diameter of the jet area?
thank you

Respuesta aceptada

Bjorn Gustavsson
Bjorn Gustavsson el 7 de Feb. de 2019
Well, for this homework task you'll get a hint:
In the gray-scale area the R, G and B-layers of your image all have the same values.
HTH
  3 comentarios
Bjorn Gustavsson
Bjorn Gustavsson el 7 de Feb. de 2019
No, my idea was for you to look for pixels where the intensities in the R G and B layers were not identical. Something like:
R = rgb_img(:,:,1);
G = rgb_img(:,:,2);
B = rgb_img(:,:,3);
gray_img = (R==B)&(G==R);
jet_img = 1-gray_img;
ought to give you a binary image jet_img with 1 in the jet-coloured region and 0 in the gray-scale region.
HTH
Zo
Zo el 7 de Feb. de 2019
ohhh okay i understand. thank you very much!

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by