get_region_runs(Region : : : Row , ColumnBegin , ColumnEnd)get_region_runs计算区域游程,以 弦元组的形式返回区域数据。弦表示逐行逐行地检查带升序行号(=从“顶” ...
get_region_runs— Access the runlength coding of a region.Signatureget_region_runs(Region : : : Row, ColumnBegin, ColumnEnd) DescriptionThe operator get_region_runs returns the region data in the form of chord tuples. The chord representation is caused by examining a region line by line ...
get_region_runs— Access the runlength coding of a region.Signatureget_region_runs(Region : : : Row, ColumnBegin, ColumnEnd) DescriptionThe operator get_region_runs returns the region data in the form of chord tuples. The chord representation is caused by examining a region line by line ...
//region有4个点的行长码: 1行1列到2列 2行1列到2列 //修改行长码 row = new int[] { 5, 6 }; HObject region1; HOperatorSet.GenRegionRuns(out region1, row, col1, col2); HOperatorSet.GetRegionPoints(region1, out tRows, out tCols); //region有4个点(5,1),(5,2),(6,1),(...
HALCON Region区域 Region的初步介绍 Region的点与线 Region的行程 Region的区域特征 HALCON XLD轮廓 XLD的初步介绍 XLD的数据结构分析 XLD的特征分析 XLD的回归参数 HALCON Tuple数组 我在Gitee上建了个仓库,会将学习书本的时候打的一些代码上传上去,笔记中所有代码都在仓库里,初学的朋友可以一起交流哦!地址(Gitee)...
get_region_runs(Region : : : Row, ColumnBegin, ColumnEnd) 作用:获得区域的行程坐标,此算子与gen_region_runs算子为互逆运算操作 Region:计算区域的行程坐标 Row:区域所在的行 ColumnBegin, ColumnEnd:区域所在的开始列与结束列 runlength_features(Regions : : : NumRuns, KFactor, LFactor, MeanLength, ...
区域联合( union1 union2) skeleton(返回一个区域的框架)get_region_runs(访问一个区域的游程编码) partition_dynamic(在较小垂直范围内水平划分区域) 区域交集(intersection) complement(返回一个区域的补码)difference(计算区域差) orientation_region(获取区域方位)crop_domain ...
halcon 区域Region(HObject)的传输 简介:halcon 区域Region(HObject)的传输 GetRegionRuns 获取:游程编码,行号、起始列、行列。 private void butTemp_Click(object sender, EventArgs e){HObject region;HOperatorSet.GenRectangle1(out region, 1, 1, 2, 2);HTuple tRows, tCols;HOperatorSet.GetRegionPoints...
get_region_runs(Region: : :Row,ColumnBegin,ColumnEnd) 这个操作把一个region按照chord形式存储在tuples中,chord就是按照列来一行一行的遍历region, 那么在这一行中region就是一条或者多条线段,chord就是记录下这些线段的起始点,终点以及行号,加以保存。(chord=line number, starting and ending points) ...
get_region_runs (RegionU, Row, ColumnBegin, ColumnEnd) 把region按照chord的形式存储在tuples中,chord就是按照列来一行一行的遍历region,那么在这一行中region就是一条或者多条线段,chord就是记录下这些线段的起始点以及行号加以保存 H := max(Row)-min(Row) ...