在Halcon中,xld是指"extended line data",用于表示直线或者轮廓线等几何形状的数据结构。 select_contours_xld函数的作用是根据特定的条件,从一组输入边缘线(xld)中选择相应的边缘线。这些条件可以根据线的长度、角度、弧度等特征进行选择。 2. select_contours_xld函数的参数 select_contours_xld函数的语法如下所示:...
select_contours_xld函数就是其中之一,它可用于快速筛选和选择需要的图像轮廓,对于基于轮廓的机器视觉应用非常有用。 Halcon select_contours_xld函数的语法和参数 select_contours_xld函数的语法为: select_contours_xld (Contours : SelectedContours, Indices, Type : (GenParamName, GenParamValue : GenParamName,...
select_contours_xld根据以下特征(参数Feature)从输入轮廓Contours 中选择XLD轮廓:contour_length 所有长度...
select_contours_xld函数的主要参数包括输入图像、定义轮廓线的运算符、过滤条件和返回值。输入图像是希望提取轮廓线的原始图像。运算符可以是运算结果是轮廓线的图像处理算子,如边缘检测算子。过滤条件是一个表达式,用于对轮廓线进行筛选。返回值是一个包含选择的轮廓线的XLD(外轮廓描述)数据类型。 第三步:使用select_...
select_contours_xld selects XLD contours from the input contours Contours according to the following features (parameter Feature): 'contour_length': all contours whose length is smaller than Min1 or larger than Max1 are not returned (Min2 and Max2 have no influence here). 'maximum_extent'...
SelectedContours(output_object)xld_cont-array→object Output XLD contours. Feature(input_control)string→(string) Feature to select contours with. Default value:'contour_length' List of values:'closed','contour_length','curvature','direction','maximum_extent','open' ...
lines_gauss(检测线及线宽) select_contours_xld (根据多个特征选择XLD轮廓) watersheds_threshold(使用阈值提取图像中的流域盆地) cooc_feature_image(计算共生矩阵并导出灰度值特征) hough_lines(在Hough变换的帮助下检测边缘图像中的线,并在HNF中返回)
Halcon之 select_shape_xld halcon read_image (Image, 'printer_chip/printer_chip_01') threshold (Image, Region, 128, 255) gen_contour_region_xld (Region, Contours, 'border') * 分割轮廓 segment_contours_xld (Contours, ContoursSplit, 'lines_circles', 20, 3, 5)...
简介:Halcon之select_shape_xld是支持多个参数过滤的 例如: select_shape_xld (Edges, SelectedXLD, ['compactness','contlength'], 'and', [1,30], [5,200]) select_shape_xld (Contours, SelectedXLD, ['width', 'height'], 'and', [400, 40], [99999, 99999]) ...
select_shape_xld (Edges, SelectedXLD,'area','and',5500,5600)*根据形状特征选择轮廓*参数1:轮廓集*参数2:选中的轮廓*参数3:形状特征*'area': 轮廓的面积---默认*'area_points': 轮廓点的面积*'row': 中心的行索引*'column': 中心的列索引*'width': 轮廓的宽度*'height': 轮廓的高度*'ratio': 轮...