images color
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
답변 (2개)
Stefan
2012년 5월 10일
is the area under a curve or between two curves?
otherwise, do you have a mask, in which every point which shall be green =1 and ever other =0?
then apply:
rgb=size(mask);
rgb(:,:,1)=0;
rgb(:,:,2)=mask;
rgb(:,:,3)=0;
imhsow(rgb);
if you do not have a mask, you have to create one... hope i could help you
댓글 수: 4
Sivakumaran Chandrasekaran
2012년 5월 10일
Image Analyst
2012년 5월 10일
For example, you could get the mask by thresholding:
mask = grayImage < someThresholdValue;
rgb(:,:,2) = 255 * uint8(mask);
Sivakumaran Chandrasekaran
2012년 5월 10일
Sivakumaran Chandrasekaran
2012년 5월 10일
Stefan
2012년 5월 10일
0 개 추천
look at this example, i think its the easiest way to get a mask
consider if the output values are correct. extraction of concrete pattern can be quite difficult and is an issue in many segmentation research studies...
댓글 수: 1
Sivakumaran Chandrasekaran
2012년 5월 10일
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!