gpt4 book ai didi

image - 在matlab中获取图像分辨率

转载 作者:行者123 更新时间:2023-12-02 22:16:19 25 4
gpt4 key购买 nike

我正在做一个项目,我需要找到图像的图像分辨率或图像高度和宽度与图像分辨率之间的任何关系。

当我们右键单击图像并选择properties->details 时,我们有分辨率信息。

我们如何在 matlab 中提取该信息?

该信息是否不依赖于图像属性,因为我在某处读取图像只有像素信息,ppidpi 取决于打印机、传感器。

最佳答案

您可以使用 imfinfo matlab 函数,该函数返回一个结构,其字段包含有关图像的信息。

例如:

info = imfinfo(YOUR_IMAGE);
w = info.Width; %An integer indicating the width of the image in pixels
h = info.Height; %An integer indicating the height of the image in pixels

在您的情况下,您可能希望获得:水平分辨率垂直分辨率。所以使用:

xR = info.XResolution
yR = info.YResolution

更多信息:http://www.mathworks.com/help/matlab/ref/imfinfo.html

关于image - 在matlab中获取图像分辨率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14397769/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com