Downsizing of an image
조회 수: 2 (최근 30일)
이전 댓글 표시
How to downsize an image by deleting alternate rows and columns without using imresize() function ?
댓글 수: 0
답변 (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);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!