
Halcon
机械劝退师
//工业4.0砖家,立志成为程序猿。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Halcon第一个例程
按官方文档一步一步来的,结果如下 dev_close_window () dev_open_window (0, 0, 512, 512, 'black', WindowHandle) read_image (Clip, 'C:/Program Files/MVTec/HALCON-18.05-Progress/doc/html/manuals/hdevelop_users_guide/ima...原创 2019-03-19 13:28:07 · 1920 阅读 · 0 评论 -
Halcon饼干案例
//官方案例 read_image (Image, 'food/hazelnut_wafer_01') dev_close_window () dev_open_window_fit_image (Image, 0, 0, -1, -1, WindowHandle) dev_update_window ('off') dev_set_line_width (3) dev_set_draw ('...原创 2019-03-20 10:25:05 · 563 阅读 · 0 评论 -
Halcon水果分类的案例学习classify_citrus_fruits.hdev
放了些个人理解的注释 * This example program shows how to apply a general GMM * classification to distinguish citrus fruits using the * features 'area' and 'circularity'. Additionally, the * 2D feature space f...原创 2019-03-22 16:31:09 · 2689 阅读 · 0 评论 -
Halcon自定义函数:get_measure_positions ()标注/3D_coordinates.hdev
get_measure_positions (Image, PlateRegion, CalibDataID, I, Distance, Phi, RowCenter, ColumnCenter) * 提取特征 threshold (Image, Region, 0, 120) connection (Region, ConnectedRegions) select_shape (Conne...原创 2019-03-26 14:07:36 · 1359 阅读 · 0 评论 -
Halcon---------align_measurements.hdev学习总结
* ------------------------------------------------------------------------------------------------ * This example program uses shape-based matching to align ROIs for the measure * tool, which then in...原创 2019-03-30 16:28:16 · 895 阅读 · 1 评论