Info
この質問は閉じられています。 編集または回答するには再度開いてください。
images color
1 回表示 (過去 30 日間)
古いコメントを表示
how to apply a particular color(e.g., green) in particular area.
0 件のコメント
回答 (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 件のコメント
Stefan
2012 年 5 月 10 日
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 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!