How i can do sub-sampling for an image by its pixels
Show older comments
Hi I want sub-sample a image by its pixels, can any one help. Thanks in advance
Answers (1)
Image Analyst
on 17 Apr 2014
For example, to subsample by a factor of 2 in the x direction and 3 in the y direction:
smallImage = bigImage(1:3:end, 1:2:end); % Remember (row, column) = (y, x) NOT (x,y)
Categories
Find more on Blocked Images 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!