How i can do sub-sampling for an image by its pixels
Ältere Kommentare anzeigen
Hi I want sub-sample a image by its pixels, can any one help. Thanks in advance
Antworten (1)
Image Analyst
am 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)
Kategorien
Mehr zu Blocked Images finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!