Effacer les filtres
Effacer les filtres

Patch extraction from an image

10 vues (au cours des 30 derniers jours)
Pravita Lekshmanan
Pravita Lekshmanan le 18 Juin 2019
How to extract a number of patches from the image

Réponse acceptée

pankhuri kasliwal
pankhuri kasliwal le 18 Juin 2019
if you want a patch of (size, size) :
% Get the size of the image
[rows, columns, numberOfColorChannels] = size(yourImage);
% Determine starting and ending rows and columns.
row1 = floor(rows/2 - size/2);
col1 = floor(columns/2- size/2);
% Extract sub-image using imcrop():
subImage = imcrop(yourImage, [col1, row1, size, size]);
you may also refer to this link for more information
  1 commentaire
Pravita Lekshmanan
Pravita Lekshmanan le 21 Juin 2019
Thankyou ma'am for your answer.
It was very useful.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by