调用edges_sub_pix()从灰度图中提取亚像素轮廓 从上图对比可以看到,从灰度图中提取亚像素轮廓时,图中操场轮廓丢失严重,无法有效的提取,而通过彩色图像则可以有效的提取边缘轮廓。 halcon中提供了edges_color_sub_pix()算子用于从多通道图像中提取亚像素轮廓,其算子接口如下: edges_color_sub_pix(Image : Edges :...
51CTO博客已为您找到关于halcon edges_sub_pix 太耗内存的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及halcon edges_sub_pix 太耗内存问答内容。更多halcon edges_sub_pix 太耗内存相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
edges_color_sub_pix— Extract subpixel precise color edges using Deriche, Shen, or Canny filters.Signatureedges_color_sub_pix(Image : Edges : Filter, Alpha, Low, High : ) Descriptionedges_color_sub_pix extracts subpixel precise color edges from the input image Image. The definition of ...
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'...
4.edges_color和edges_color_sub_pix:提取彩色图像边缘 1.2 区别 edges_image可选择多种边缘检测算法来提取物体边缘,其与亚像素边缘算子的区别在于edges_image提取是以像素为单位的边缘特征,edges_sub_pix是以比像素还小的单位来提取的边缘,一般采用矩方法,插值法和拟合法。
edges_color_sub_pix(Image : Edges : Filter, Alpha, Low, High : ) Descriptionedges_color_sub_pix extracts subpixel precise color edges from the input image Image. The definition of color edges is given in the description of edges_color. The same edge filters as in edges_color can be ...
在Halcon中,使用XLD表示亚像素的轮廓和多边形。常用edges_sub_pix算子来提取亚像素轮廓。 我们都知道图片是由像素组成,当我们用halcon读取图像Image或者region的时候,获得的数据就是像素。这些数据结构都是像素级别的。 获得图像后,我们可以通过亚像素阈值分割或者亚像素边缘提取,这样这些处理得到的结果其实就是用亚像素轮...
边缘轮廓提取:edges_sub_pix, edges_color_sub_pix, or zero_crossing_sub_pix 线条提取:lines_gauss, lines_facet, or lines_color 亚像素blob分析:threshold_sub_pix 如果像素精度足够的话,可以用edge ?lter 如sobel_amp edges_image 或者 line filter 如bandpass_image ...
edges_color_sub_pix算子 彩色多通道图像的亚像素边缘提取 支持的滤波器算子较少,有Deriche/Shen/Canny/Sobel_fast以及一些以 “_junctions” 结尾的滤波器 lines_gauss算子 提取出的线段类型是亚像素精度的XLD轮廓 lines_color算子 彩色边缘提取,提取出的线段类型是亚像素精度的XLD轮廓 ...
edges_sub_pix ( Image : Edges : Filter, Alpha, Low, High : ) 精确边缘提取的亚像素(灰度图像) edges_color ( Image : ImaAmp, ImaDir : Filter, Alpha, NMS, Low, High : ) 根据颜色进行边缘提取 edges_image ( Image : ImaAmp, ImaDir : Filter, Alpha, NMS, Low, High : ) 边缘提取 ...