Clear Filters
Clear Filters

how to downscale the image

4 views (last 30 days)
OriAlpha
OriAlpha on 21 Dec 2018
Answered: Image Analyst on 21 Dec 2018
I have a image size of 150 * 300
which is a refernce image
now i have new image size of
195 * 415
i need to downscale to 150 * 300
how can i do this

Answers (1)

Image Analyst
Image Analyst on 21 Dec 2018
Use imresize
resizedImage = imresize(originalImage, [150, 300]);

Community Treasure Hunt

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

Start Hunting!