Borrar filtros
Borrar filtros

How to cut an image manually using pixels values with for loop without imcrop ?

3 visualizaciones (últimos 30 días)
How can I apply Matlab code to do what the imcrop function does but manually using for loop?

Respuestas (2)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 4 de Sept. de 2021

Image Analyst
Image Analyst el 5 de Sept. de 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

Categorías

Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by