『Halcon与C#混合编程』007_SetPart、GetImageSize、图像原比例显示

        一、SetPart—修改显示的图片部分。

在C#中的样本特征:

static void HOperatorSet.SetPart(HTuple windowHandle, HTuple row1, HTuple column1, HTuple row2, HTuple column2)

void HWindow.SetPart(HTuple row1, HTuple column1, HTuple row2, HTuple column2)

void HWindow.SetPart(int row1, int column1, int row2, int column2)

        SetPart修改窗口中显示的图像部分。 (row1,column1)表示要显示的图像部分的左上角,(r

猜你喜欢

转载自blog.csdn.net/qq_45336030/article/details/126451599