How i can do sub-sampling for an image by its pixels

7 views (last 30 days)
Hi I want sub-sample a image by its pixels, can any one help. Thanks in advance

Answers (1)

Image Analyst
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)

Tags

Products

Community Treasure Hunt

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

Start Hunting!