文章目錄
- 簡介
- Halcon源代碼
- 處理效果
|
簡介
使用halcon求取頂點的方法。
Halcon源代碼
read_image (Image1, '1.png')points_foerstner (Image1, 1, 2, 3, 200, 0.3, 'gauss', 'false', RowJunctions, ColumnJunctions, CoRRJunctions, CoRCJunctions, CoCCJunctions, RowArea, ColumnArea, CoRRArea, CoRCArea, CoCCArea)
for Index := 0 to |RowJunctions|-1 by 1disp_cross (3600, RowJunctions[Index], ColumnJunctions[Index], 50, 0)
endfor
處理效果
原始圖像
處理效果
|
|