How to recostruct ROI on an image and diaplay it?

조회 수: 8 (최근 30일)
Pramod Bhat
Pramod Bhat 2011년 10월 20일
dear friends, I hav got a set of co ordinates of an ROI. Now i want to reconstruct the ROI on an image and display it. How can i do this? plz help....
  댓글 수: 1
Jonas Reber
Jonas Reber 2011년 10월 20일
of what kind are these coordinates? is it a list of all pixels in the ROI or is it the marker/vertices of a boundary polygon (e.g., 4 points for a rectangle) or else?

댓글을 달려면 로그인하십시오.

답변 (3개)

Jonas Reber
Jonas Reber 2011년 10월 20일
after having read your first question ( http://www.mathworks.com/matlabcentral/answers/18789-how-to-save-an-image-displayed) I think I understand what you try to accomplish. Since you are using imfreehand, I assume you have Image Processing Toolbox.
I have written an example code that opens an image, lets you select a ROI and saves it to a new file with transparent background. have a look at it - you should now be able to do what you are looking for:
%%example code for Pramod Bhat from Jonas:
% get file to be displayed
[FileName,PathName] = uigetfile('*.*','Select the Image');
[img, map] = imread(fullfile(PathName,FileName));
% display image and select region
f = figure;
imshow(img, map);
roi = imfreehand(gca);
wait(roi);
% get the mask
mask = roi.createMask;
% extract the boundarybox of the ROI
S = regionprops(mask,'Boundingbox');
b = floor(S(1).BoundingBox);
% crop the interesting part of the image (bounding box)
imgcut = img(b(2):b(2)+b(4), b(1):b(1)+b(3));
maskcut = double(mask(b(2):b(2)+b(4), b(1):b(1)+b(3)));
% finally, save the image
[FileName,PathName] = uiputfile('*.png','Save the Image As');
imgcutrgb = ind2rgb(imgcut,map);
% note: only what is inside of your ROI will be displayed,
% the rest is set to be transparent:
imwrite(imgcutrgb,fullfile(PathName,FileName),'Alpha', maskcut);

Mohammad
Mohammad 2012년 12월 24일
편집: Mohammad 2012년 12월 24일
hello there how can i exclude ROI and save only RONI which is whole image except selected ROI. plz help
  댓글 수: 2
Walter Roberson
Walter Roberson 2012년 12월 24일
extract ~ROI
Image Analyst
Image Analyst 2012년 12월 24일
I don't see any such function as "extract". Where do you get it?

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2012년 12월 24일
편집: Image Analyst 2012년 12월 24일
See my BlobsDemo http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862. It finds coins in an image, finds the bounding box of each coin, and then extracts (crops) each bounding box to its own image.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by