Patch extraction from an image
11 views (last 30 days)
Show older comments
Pravita Lekshmanan
on 18 Jun 2019
Commented: Pravita Lekshmanan
on 21 Jun 2019
How to extract a number of patches from the image
0 Comments
Accepted Answer
pankhuri kasliwal
on 18 Jun 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
More Answers (0)
See Also
Categories
Find more on Polygons in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!