ImageInfo

Description

Stores widths and heights of models and images.

Structure Definition

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

Parameters

Parameter

Description

modelWidth

Model width.

modelHeight

Model height.

imgWidth

Image width.

imgHeight

Image height.