标签: matlab width pixel
为了找到像素宽度,如何在matlab中执行此操作?
matlab
编辑我需要宽度,例如 mm
感谢。
答案 0 :(得分:3)
尝试使用根对象的ScreenPixelsPerInch属性。
ScreenPixelsPerInch
pixelsPerInch = get(0, 'ScreenPixelsPerInch'); mmPerInch = 25.4; mmPerPixel = mmPerInch / pixelsPerInch;