to rejoin the separated roi and roni of a dicom image

2 次查看(过去 30 天)
i hav the code for separating a dicom image as ROI and RONI. pls help me to reverse the process.
%code for separating the ROI and RONI of a DCM file
clear all;
close all;
[RONI,MAP]=dicomread('189.dcm');
InputImg1 = uint8(255*mat2gray(RONI));
% Display the Image
figure,imshow(InputImg1,[]);title('Select the region of interest(ROI)');
% Get Inputs from Mouse,Select 4 Seed Points in Image
[Col Row]=ginput(4);
c =Col;
r =Row;
% Select polygonal region of interest
BinaryMask = roipoly(InputImg1,c,r);
%figure,imshow(BinaryMask,[]); title('Selected Region of Interest')
%Create Buffer for ROI
ROI=zeros(512,512);
%Create Buffer for NONROI
RONI=zeros(512,512);
for i=1:512
for j=1:512
if BinaryMask(i,j)==1
ROI(i,j)=InputImg1(i,j);
else
RONI(i,j)=InputImg1(i,j);
end
end
end
%Display ROI and Non ROI
figure,imshow(ROI,[]);title('ROI');
figure,imshow(RONI,[]);title('NON ROI');

回答(1 个)

Walter Roberson
Walter Roberson 2015-12-16
Merged = RONI;
Merged(BinaryMask) = ROI;
figure,imshow(Merged,[]);title('Merged NON ROI and ROI');
  7 个评论
Walter Roberson
Walter Roberson 2021-8-4
I myself do not have much experience with that work. @Image Analyst might have suggestions.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by