Downsizing of an image

How to downsize an image by deleting alternate rows and columns without using imresize() function ?

답변 (1개)

Wayne King
Wayne King 2013년 3월 3일

1 개 추천

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);

질문:

2013년 3월 3일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by