How can i extract the component H of only the region of interest?

조회 수: 1 (최근 30일)
Tomas
Tomas 2012년 11월 12일
Hello
To calculate the difference between the value h of an image and values from tab, I used these lines.
h=HSV(:,:,1);
d = abs(h - tab(i,1));
Now how can i extract the H of only the region of interest because I want to calculate the difference between the value h of only the region of interest of the image and the values from tab. knowing that bw is the binairy mask of the segmented image. thanks

답변 (1개)

Image Analyst
Image Analyst 2012년 11월 13일
You can do this
maskedDifferences = d(bw);
  댓글 수: 5
Tomas
Tomas 2012년 11월 14일
using whos bw, I get
Name Size Bytes Class Attributes
bw 498x750 2988000 double
To get this image, I used
bw=zeros(L,C);
if (some instructions)
bw(i,j)=1;

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

Community Treasure Hunt

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

Start Hunting!

Translated by