Downsizing of an image
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to downsize an image by deleting alternate rows and columns without using imresize() function ?
0 Kommentare
Antworten (1)
Wayne King
am 3 Mär. 2013
If you just want to downsample the rows and columns.
Assume X is your image:
X = randn(512,512);
X = X(1:2:end,1:2:end);
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!