HWindowControl1 的 图像 拷贝到 HWindowControl2
时间: 2023-05-15 07:05:01 浏览: 128
窗体1传值到窗体2
可以使用 Halcon 中的 CopyObj 方法将 HWindowControl1 中的图像拷贝到 HWindowControl2 中,代码如下:
HObject image;
HTuple width, height;
GetImageSize(hWindowControl1.HalconWindow, &width, &height);
CopyObj(image, hWindowControl1.HalconWindow);
SetPart(hWindowControl2.HalconWindow, 0, 0, height - 1, width - 1);
DispObj(image, hWindowControl2.HalconWindow);
注意,这里的 hWindowControl1 和 hWindowControl2 都是 Halcon 中的窗口控件,需要先在程序中进行初始化。
阅读全文