How to fuse rgb image with gray image ?
2 ビュー (過去 30 日間)
古いコメントを表示
Helle everyone,
I want to fuse an rgb image (labeled_regions) with gray image (orig). I tried ysing imfuse as the code shown here but I didn't got anything. I've tried also the hold hold off the same problem.
Please could any one help me solving this issue?
I will be grateful.
here is my code
figure
imshow(orig,[]);
figure
imshow(labeled_regions,[])
figure
imfuse(orig,labeled_regions,,'blend','Scaling','joint');
0 件のコメント
回答 (1 件)
Walter Roberson
2020 年 12 月 23 日
infuse does not display the image.
imshow( imfuse(orig, labeled_regions, 'blend', 'Scaling', 'joint') );
3 件のコメント
Walter Roberson
2020 年 12 月 23 日
orig = sort(rand(240, 320, 3));
figure
imshow(orig, []);
figure
labeled_regions = sort(randi([0 3], 240, 320),2);
imshow(labeled_regions, []);
figure
imshow( imfuse(orig, labeled_regions, 'blend', 'Scaling', 'joint') );
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!