필터 지우기
필터 지우기

Image processing of an echocardiogram image

조회 수: 4 (최근 30일)
Zo
Zo 2019년 2월 7일
댓글: Zo 2019년 2월 7일
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

채택된 답변

Bjorn Gustavsson
Bjorn Gustavsson 2019년 2월 7일
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
Bjorn Gustavsson
Bjorn Gustavsson 2019년 2월 7일
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 2019년 2월 7일
ohhh okay i understand. thank you very much!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by