how to overlay cropped image on uncropped original image
2 次查看(过去 30 天)
显示 更早的评论
i cropped only the rectal part of mri images size 256 by 256 from pelvic mri images(size 512 by512) and train the unet model,after i want to display the segmented image by overlaying on the original pelvic image.here i want to put the small cropped and segmented image on original uncropped image that i didn't input to the model.
i tried the code below but its output is not what i want,i want the overlay to happen only at rectal part,
% Read the original image
originalImage = imread('20.jpg');
% Read the segmented test image
segmentedTestImage = imread('pixelLabel_20.png');
% % % Create a metal overlay effect using the imfuse function
overlayedImage = imfuse(originalImage, segmentedTestImage, 'blend', 'Scaling', 'joint');
% Overlay the binary mask on the original image
overlayedImage = labeloverlay(originalImage, segmentedTestImage );
% Display the overlayed image
imshow(overlayedImage);
the image is attached below.
0 个评论
回答(1 个)
Image Analyst
2023-12-17
编辑:Image Analyst
2023-12-17
See my attached demos about pasting an image onto another image. Adapt as needed.
You might also like
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!