How to crop an image inside a boundary ?

32 ビュー (過去 30 日間)
Warid Islam
Warid Islam 2019 年 7 月 17 日
回答済み: Aytaç Tok 2021 年 3 月 12 日
I have an image from which I want to crop a certain portion of it. I drew the boundary at first. Below is the code:
img = imread('Intensity1.jpg');
figure, imshow(img);
% getting a segment
h=drawfreehand();
position = wait(h);
region=uint8(roipoly(img,position(:,1),position(:,2)));
region=region.*img;
figure,imshow(region); title('Segmented Region');
% use bwperim rather than bwboundaries to get an Image of boundary.
boundImg = uint8(bwperim(rgb2gray(region),4));
boundImg(boundImg ~=0) = max(img(:));
figure, imshow(img + boundImg)
% save image without loosing information..
imwrite(img + boundImg, 'writeImg.jpg');
% check
read = imread('writeImg.jpg');
figure, imshow(read)
isequal(read, img + boundImg)
The image is below:
fh.jpg
I want to crop the portion of the image specified by the boundary above. I tried the following line of code but there is no change in the result.
imcrop('Intensity1.jpg');
Any suggestions would be very much appreciated. Thank you.
  3 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 7 月 20 日
編集済み: KALYAN ACHARJYA 2019 年 7 月 20 日
@Warid Please do clarify your job to segment the yellowish region or extracts marked ROI only?
Warid Islam
Warid Islam 2019 年 7 月 22 日
Hi Kalyan,
I want to extract the marked ROI only.

サインインしてコメントする。

採用された回答

Divya Gaddipati
Divya Gaddipati 2019 年 7 月 24 日
region=uint8(roipoly(img,position(:,1),position(:,2)));
After getting the mask of the selected region from the above line in your code, you can use regionprops to obtain a rectangular box around the mask and then use imcrop to crop the image.
stats = regionprops(region, 'BoundingBox');
crop_region = stats.BoundingBox; % contains [top_left_x top_left_y width height]
cropped_img = imcrop(img, crop_region);
For more information on how to use regionprops and imcrop, refer to the following links:
  2 件のコメント
Warid Islam
Warid Islam 2019 年 7 月 24 日
Hi Divya,
Thank you for your response. I tried the above line of code but somehow I don't get any option to crop. I get the following error message.
Undefined function 'wait' for input arguments of type 'images.roi.Freehand'.
Error in fh4 (line 5)
position = wait(h);
Divya Gaddipati
Divya Gaddipati 2019 年 7 月 26 日
Hi,
I assume you are using the wait command to obtain the positions of the selected boundary from.
The drawfreehand command returns an object which contains the positions of the boundary you selected. Hence, instead of using wait command, you can directly access the "Position" parameter of your drawfreehand object (i.e, h).
position = h.Position;
Try the above line in place of "position = wait(h)".
For more information, refer to the "Output Arguments" section in the drawfreehand documentation.

サインインしてコメントする。

その他の回答 (1 件)

Aytaç Tok
Aytaç Tok 2021 年 3 月 12 日
How can I get the object by auto cropping from a rgb picture. For example, there is a banana on the table and the background is black. I want to crop this picture and just take the banana and I want no background pixel at all. how can I do that

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by