Overlay binary image on RGB image

2 次查看(过去 30 天)
I would like to overlay the white regions of a binary image onto an RGB image. Is this possible? What about overlaying the black regions?

采纳的回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019-9-26
编辑:KALYAN ACHARJYA 2019-9-26
Is this?
RGB_image=imread('image_test.jpg');
subplot(311);imshow(RGB_image);
bw_image=im2bw(rgb2gray(RGB_image));
subplot(312);imshow(bw_image);
result=imfuse(RGB_image,bw_image);
subplot(313);imshow(result);
Detail documentation here

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by