Downsizing of an image
古いコメントを表示
How to downsize an image by deleting alternate rows and columns without using imresize() function ?
回答 (1 件)
Wayne King
2013 年 3 月 3 日
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);
カテゴリ
ヘルプ センター および File Exchange で Image Category Classification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!