Halcon丢帧

用try……catch……endtry,防止获取不到图。丢帧无法避免,但可以保证获得图进行之后的处理

while (true)
    try
        grab_image_async (Image, AcqHandle, -1)
    catch (Exception)
        continue
    endtry
        
    * Image Acquisition 01: Do something
    图像处理的代码

endwhile
原文地址:https://www.cnblogs.com/xixixing/p/12598422.html