How to cut an image manually using pixels values with for loop without imcrop ?
Afficher commentaires plus anciens
How can I apply Matlab code to do what the imcrop function does but manually using for loop?
Réponses (2)
Sulaymon Eshkabilov
le 4 Sep 2021
0 votes
Here is a discussion thread that already addressed your question very well: https://www.mathworks.com/matlabcentral/answers/344816-how-to-cut-an-image-by-pixels-without-imcrop?s_tid=answers_rc1-1_p1_MLT
1 commentaire
Hanan Elsayed
le 5 Sep 2021
Image Analyst
le 5 Sep 2021
Not sure what you mean. How about this
grayImage = imread('moon.tif');
figure(1)
imshow(grayImage)
for k = 1 : 3
uiwait(helpdlg('Drag out a box to crop the image.'));
croppedImage = imcrop(grayImage);
figure(2) % Switch to a figure just for the cropped images only.
subplot(2, 2, k);
imshow(croppedImage); % Display it.
figure(1); % Return to the original image.
end
Catégories
En savoir plus sur Image Preview and Device Configuration dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!