How to change resolution of an image ?

10 visualizzazioni (ultimi 30 giorni)
ABTJ
ABTJ il 28 Apr 2020
Risposto: Charu il 23 Gen 2025
What is the command/keyword for changing resolution(ppi) of image in matlab? How we can use that command? Please kindly give an example
  3 Commenti
Image Analyst
Image Analyst il 28 Apr 2020
You mean like if you printed it to paper or a PDF?
ABTJ
ABTJ il 29 Apr 2020
please check the updated question, I have edited, it was pixels per inch , my intention wasn't dpi

Accedi per commentare.

Risposte (1)

Charu
Charu il 23 Gen 2025
To change the resolution of an image in MATLAB, you can specify the pixels per inch (PPI) when saving the image in formats that support this feature, such as TIFF. This can be done using the imwrite function with the Resolution parameter provided by the Image Processing Toolbox. For example, in MATLAB R2024b, you can set the resolution as follows:
imwrite(imageData, 'outputimage.tiff', 'Resolution', [300, 300]);
Refer to this link of official documentation for further information.

Categorie

Scopri di più su Convert Image Type in Help Center e File Exchange

Prodotti


Release

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by