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 中查找有关 Read, Write, and Modify Image 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!