how to change image resolution but keep the size (dimensions) same?

5 views (last 30 days)
i have some images having 200 microns per pixel resolution and dimension is 1024x1024 (grayscale image). how can i change it to 400 microns per pixel and keep the dimensions same (1024x1024)?

Answers (1)

Matt J
Matt J on 9 Jan 2014
Edited: Matt J on 9 Jan 2014
Blur the image with a 2x2 averager perhaps?
convn(YourImage,ones(2)/4,'same');

Categories

Find more on Read, Write, and Modify Image in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!