Cropping out two images from one big image by manually selecting the cropping are

조회 수: 1 (최근 30일)
How can I crop two images out from one big image by manually selecting the region for cropping out with a rectangle for example? Additionally, how can I extract the rows and columns that I selected with the rectangle?

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 25일
Try this code
img = imread('pears.png');
figure();
ax1 = axes();
imshow(img, 'Parent', ax1)
fprintf('Drag a rectange on the image.\n')
roi = drawrectangle(ax1);
img_small = imcrop(img, roi.Position);
figure();
ax2 = axes();
imshow(img_small, 'Parent', ax2)
  댓글 수: 4
windmill
windmill 2020년 10월 28일
편집: windmill 2020년 10월 28일
Thanks, I got it! I just tried to modfify the code so I can use my images that I converted to grayscale images, but I don't know why it won't work anymore... Do you see the problem?
image = imread('Test016.tif');
max(max(image))
image2 = mat2gray(image)*255
figure();
ax1 = axes();
imshow(image2, 'Parent', ax1)
fprintf('Draw the ROI on the image using the rectangle.\n')
roi = drawrectangle(ax1);
roiPos=roi.Position;
cropped_image = imcrop(image2, roi.Position);
figure();
ax2 = axes();
imshow(cropped_image, 'Parent', ax2)
Ameer Hamza
Ameer Hamza 2020년 10월 29일
Try this code
image = imread('pears.png');
image2 = rgb2gray(image);
figure();
ax1 = axes();
imshow(image2, 'Parent', ax1)
fprintf('Draw the ROI on the image using the rectangle.\n')
roi = drawrectangle(ax1);
roiPos=roi.Position;
cropped_image = imcrop(image2, roi.Position);
figure();
ax2 = axes();
imshow(cropped_image, 'Parent', ax2)

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

추가 답변 (1개)

Image Analyst
Image Analyst 2020년 10월 25일
Did you check out the documentation for imcrop(), or rbbox()?

Community Treasure Hunt

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

Start Hunting!

Translated by