halcon中的edges_sub_pix()算子用于从灰度图像中提取亚像素轮廓XLD,其算子接口如下: edges_sub_pix(Image : Edges : Filter, Alpha, Low, High : ) 其中Image为输入灰度图像;Edges为结果轮廓;Filter指定滤波器类型,halcon提供了 'canny', 'canny_junctions', 'deriche1', 'deriche1_junctions', 'deriche2'...
edges_color()用于从彩色图像中提起像素级精度的边缘,该算子接口如下: edges_color(Image : ImaAmp, ImaDir : Filter, Alpha, NMS, Low, High : ) 其中Image为输入彩色图像;ImaAmp为结果幅值图像;ImaDir 为结果角度图像;Filter指定滤波器类型,halcon中提供了 'canny', 'deriche1', 'deriche2', 'shen', ...
halcon中提供了edges_color_sub_pix()算子用于从多通道图像中提取亚像素轮廓,其算子接口如下: edges_color_sub_pix(Image : Edges : Filter, Alpha, Low, High : ) 类似于edges_color算子,Filter参数可指定多种滤波器类型,Alpha为平滑系数,Low和High设置滞后阈值。鉴于Filter='canny'方法比较常用,这里暂时只研究...