使用gen_region_line算子提取线条区域后,可以得到一个包含线条信息的数据结构,包括线条的位置、颜色、宽度等属性。您可以使用Halcon提供的函数对这些数据进行进一步处理和分析。例如,可以使用plot_image函数将提取的线条区域可视化,以便观察和评估结果。 四、总结 gen_region_line算子是Halcon中一个非常实用的工具,可用于提...
gen_region_line (RegionLines, Row1, Column1, Row2, Column2)**创建直线区域*参数1:输出区域*参数2:起始点行坐标--y坐标*参数3:起始点列坐标--x坐标*参数4:终点点行坐标--y坐标*参数3:终点列坐标--x坐标 dev_display (RegionLines) 在QtCreator中 HObject ho_RegionLines; HTuple hv_WindowHandle, ...
gen_region_line是Halcon中用于创建一条直线的算子,它可以根据给定的起点和终点坐标来生成一条直线的Region对象。通过对这个算子的学习,我们可以更好地掌握如何在Halcon中利用各种算子完成图像处理任务。 Halcon是一款功能强大的图像处理软件,提供了众多用于图像分析与处理的算子。其中,gen_region_line算子是非常常用的一...
dev_open_window (0, 0, 300, 300, 'black', WindowHandle) gen_region_line (RegionLines, 100, 50, 150, 250) *生成直线区域 *参数1:起点y坐标 *参数2:起点x坐标 *参数3:终点y坐标 *参数4:终点x坐标 dev_display(RegionLines) 在Qt Creator中 HObject ho_RegionLines; HTuple hv_WindowHandle; ...
gen_region_line (RegionLines, Row1, Column1, Row2, Column2) **创建直线区域 *参数1:输出区域 *参数2:起始点行坐标--y坐标 *参数3:起始点列坐标--x坐标 *参数4:终点点行坐标--y坐标 *参数3:终点列坐标--x坐标 dev_display (RegionLines) ...
gen_region_line( : RegionLines : BeginRow , BeginCol , EndRow , EndCol : )gen_region_line将给定的直线(起始点和结束点[EndRow , EndCol])存储为区域。例程: ...
gen_region_line— Store input lines as regions. Signature Description The operatorgen_region_linestores the given lines (with starting point [BeginRow,BeginCol] and ending point [EndRow,EndCol]) as region. Execution Information Multithreading type: reentrant (runs in parallel with non-exclusive op...
gen_region_line (Line1, RowStart, ColStart, RowEnd, ColEnd) 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 2、计算效果 二、直线延长线的计算 1、函数源码 dev_close_window () dev_open_window (0, 0, 700, 700, 'black', WindowHandle) ...
***延长线长度LineLength:=1100*起点RowStart := RowCenter-cos(Phi+1.5708)*LineLengthColStart := ColCenter-sin(Phi+1.5708)*LineLength*终点RowEnd := RowCenter-cos(Phi-1.5708)*LineLengthColEnd := ColCenter-sin(Phi-1.5708)*LineLengthgen_region_line (Line2, RowStart, ColStart, RowEnd, Col...
Minimum increment:1 Recommended increment:1 The operatorgen_region_linealways returns the value 2 (H_MSG_TRUE). The clipping according to the current image format is determined by the operatorset_system('clip_region',<'true'/'false'>). Foundation...