创建拼接实例 - ImageStitchCreate
函数简介
创建图像拼接实例,用于逐张追加图片并生成拼接结果。
接口名称
ImageStitchCreate
DLL调用
int64_t ImageStitchCreate(int64_t instance);
参数说明
参数名 | 类型 | 说明 |
---|---|---|
instance | 长整数型 | OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。 |
示例
int64_t instance = CreateCOLAPlugInterFace();
int64_t st = ImageStitchCreate(instance);
// ...
DestroyCOLAPlugInterFace(instance);
返回值
返回拼接实例句柄,失败返回0。
注意事项
- 使用完成后需调用
ImageStitchFree
释放实例。