Images merging using matlab

1 vue (au cours des 30 derniers jours)
Inês
Inês le 10 Jan 2022
Modifié(e) : Rena Berman le 25 Jan 2022
I have this two images and I want to merge them in order to receive somthing like the third image can someone help me?
  3 commentaires
Inês
Inês le 10 Jan 2022
I don't now what happened but I attached the photos again sorry if I caused any trouble.
Rena Berman
Rena Berman le 25 Jan 2022

(Answers Dev) Restored edit

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 10 Jan 2022
orig_filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/858715/CXR00000001.png';
roi_filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/858730/CXR00000001_lungs.png';
orig_image = imread(orig_filename);
roi_image = imread(roi_filename);
if ndims(roi_image) > 2; roi_image = rgb2gray(roi_image); end
roi = imbinarize(roi_image);
roi = repmat(roi, 1, 1, size(orig_image,3));
masked_image = zeros(size(orig_image), 'like', orig_image);
masked_image(roi) = orig_image(roi);
imshow(masked_image)

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by