ImagePreProcessInfo
ImagePreProcessInfo
函数功能
类构造函数。
函数原型
ImagePreProcessInfo();
ImagePreProcessInfo(uint32_t width, uint32_t height);
ImagePreProcessInfo(uint32_t widthResize, uint32_t heightResize, uint32_t widthOriginal, uint32_t heightOriginal);
参数说明
| 参数名 | 输入/输出 | 说明 |
|---|---|---|
| width | 输入 | 图像宽。 |
| height | 输入 | 图像高。 |
| widthResize | 输入 | 缩放宽。 |
| heightResize | 输入 | 缩放高。 |
| widthOriginal | 输入 | 原图宽。 |
| heightOriginal | 输入 | 原图高。 |
父主题: ImagePreProcessInfo
PostProcessBase
函数功能
类构造函数。
函数原型
PostProcessBase() = default;
PostProcessBase(const PostProcessBase& other) = default;
参数说明
| 参数名 | 输入/输出 | 说明 |
|---|---|---|
| other | 输入/输出 | PostProcessBase对象。 |
父主题: PostProcessBase
~PostProcessBase
函数功能
PostProcessBase类的默认析构函数。
函数原型
virtual ~PostProcessBase() = default;
父主题: PostProcessBase
operator=
函数功能
等号运算符重载,用于PostProcessBase对象之间的赋值。
函数原型
PostProcessBase& operator = (const PostProcessBase& other);
参数说明
| 参数名 | 输入/输出 | 说明 |
|---|---|---|
| other | 输入/输出 | PostProcessBase对象。 |
父主题: PostProcessBase
在线提单