在matlab中查找像素宽度

时间:2012-11-19 06:19:12

标签: matlab width pixel

为了找到像素宽度,如何在matlab中执行此操作?

编辑我需要宽度,例如 mm

感谢。

1 个答案:

答案 0 :(得分:3)

尝试使用根对象的ScreenPixelsPerInch属性。

pixelsPerInch = get(0, 'ScreenPixelsPerInch');
mmPerInch     = 25.4;
mmPerPixel    = mmPerInch / pixelsPerInch;