How i can do sub-sampling for an image by its pixels
Afficher commentaires plus anciens
Hi I want sub-sample a image by its pixels, can any one help. Thanks in advance
Réponses (1)
Image Analyst
le 17 Avr 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)
Catégories
En savoir plus sur Blocked Images dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!