How to fuse three images?
Show older comments
I have three images of three object. Object C covers the physical dimensions of objects A and B. I need to show all objects on a single image with diffrent colors. I able to fused two images with object C and A or C and B with following code:
A = imread(1..);
B = imread(2..);
C = imread(3..);
figure; imshow(C,'InitialMag','fit');
green = cat(3, zeros(size(C)),ones(size(C)), zeros(size(C)));
hold on
h = imshow(green);
hold off
% Use 'h' influence map as the AlphaData for the solid green image.
set(h, 'AlphaData', A)
How can I show object A, B and C (diffrent colors on the same image). Any help regarding the same will be appreciable. Thanks
Accepted Answer
More Answers (1)
Image Analyst
on 1 Jul 2013
0 votes
Jeff's answer is a good one. You might also take a look at imshowpair() or imfuse() in the Image Processing Toolbox.
Categories
Find more on Images in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!