how can i apply under sampling for an image

 Accepted Answer

Try subsampling via indexing. For example to get every third pixel, do this
subsampledImage = originalImage(1 : 3 : end, 1 : 3 : end);

More Answers (0)

Community Treasure Hunt

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

Start Hunting!