ImageInfo

功能

模型及图片宽高信息。

结构定义

1
2
3
4
5
6
struct ImageInfo {
    int modelWidth;
    int modelHeight;
    int imgWidth;
    int imgHeight;
};

参数说明

参数名

说明

modelWidth

模型宽度。

modelHeight

模型高度。

imgWidth

图片宽度。

imgHeight

图片高度。