fit_rectangle2_contour_xld对轮廓Contours 用算法Algorithm进行矩形拟合,返回矩形参数Row, Column(中心)、...
fit_rectangle2_contour_xld (Edges, 'regression', -1, 0, 0, 3, 2, Row, Column, Phi, Length1, Length2, PointOrder) *对轮廓进行矩形拟合--得到矩形数据 *参数1:输入轮廓 *参数2:用于拟合矩形的算法 * 'huber', 'regression', 'tukey' *参数3:用于计算的轮廓点的最大数量 * 所有点:-1 *参...
fit_rectangle2_contour_xld (Edges,'regression', -1,0,0,3,2, Row, Column, Phi, Length1, Length2, PointOrder)*对轮廓进行矩形拟合--得到矩形数据*参数1:输入轮廓*参数2:用于拟合矩形的算法*'huber','regression','tukey'*参数3:用于计算的轮廓点的最大数量* 所有点:-1*参数4:轮廓端点之间的最大...
法1:用 fit_rectangle2_contour_xld可以从轮廓线提取矩形,根据长宽边满足测量。 法2:用gen_parallel_contour_xld(contour, parallelcontour, ‘regression_normal’, -Distance)直接得到平行线的距离,(长、宽各一个) 审核编辑 :李倩
fit_rectangle2_contour_xld returns 2 (H_MSG_TRUE) if all parameter values are correct, and rectangles could be fitted to the input contours. If the input is empty the behavior can be set via set_system('no_object_result',<Result>). If necessary, an exception is raised. If the ...
如果满足上述条件,fit_rectangle2_contour_xld将返回高度精确的矩形参数。如果使用Tukey的离群点抑制方法,则可以使用fit_rectangle2_contour_xld对矩形进行稳健拟合,如圆角矩形轮廓。 效果展示: 本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
通过拟合来求缺陷,对应halcon例程:方法—》轮廓线处理—》fit_rectangle2_contour_xld.hdev。 1read_image (Image,'C:/Users/zx80-165/Desktop/111.jpg')2get_image_size (Image, Width, Height)3dev_open_window (0,0, Width, Height,'black', WindowHandle)4rgb1_to_gray (Image, GrayImage)5dev_di...
visualize the results, you can use the operator gen_contour_polygon_xld. To ?t a rectangle into a contour, the operator fit_rectangle2_contour_xld can be used. It provides various optimization methods as well. The returned parameters comprise mainly the center position, the ...
示例:fit_circle_contour_xld (Edges, 'algebraic', -1, 0, 0, 3, 2, Row20, Column20, Radius5, StartPhi1, EndPhi1, PointOrder3) Edges(输入对象):输入圆弧轮廓对象 'algebraic',(输入控制参数1):圆的拟合算法(默认) -1(输入控制参数2): 默认值 ...
fit_line_contour_xld fit_circle_contour_xld fit_ellipse_contour_xld fit_rectangle2_contour_xld 总结: 图像和视频,文件的读取 Region和XLD的初步介绍 注意: 在使用edges_sub_pix提取出来的结果,往往不是完整的圆形,需要用union来整合出完整的圆形。