How to create fixed rectangle and crop it?

10 visualizaciones (últimos 30 días)
Rashidul Alim Anik
Rashidul Alim Anik el 15 de Mzo. de 2022
Comentada: DGM el 16 de Mzo. de 2022
I want a fixed 257x257 rectangle and want to crop according to the rectangle of my image.What is the code would be?

Respuesta aceptada

yanqi liu
yanqi liu el 16 de Mzo. de 2022
img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/927339/image.jpeg');
figure; imshow(img, []);
h = imrect(gca, [1 1 257 257]);
title('please move the rect');
% now you can set the rect
pos = wait(h);
hold on; rectangle('position', pos, 'EdgeColor', 'g', 'LineWidth', 2)
img2 = imcrop(img, round(pos));
figure; imshow(img2, []);
  1 comentario
DGM
DGM el 16 de Mzo. de 2022
You can just do imcrop(img) directly for interactive cropping. If you want to preserve the rect parameter for later, you can do
[croppedimg croprect] = imcrop(img);

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by