当前位置: 首页 > news >正文

halcon目标检测标注保存

* 创建一个新的字典
create_dict(ObjectDictionary)

* 类别名称列表和对应的ID列表
class_names := ['Defect1','Defect2','Defect3','Defect4','Defect5','Defect6','Defect7','Defect8','Defect9','Defect10','Defect11','Defect12','Defect13','Defect14','Defect15','Defect16','Defect17','Defect18']
class_ids := [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17]
image_dir := 'c:/视觉芯/images/'
* 保存类别和ID到字典中
set_dict_tuple(ObjectDictionary, 'ClassIDs', class_ids)
set_dict_tuple(ObjectDictionary, 'ClassNames', class_names)
set_dict_tuple(ObjectDictionary, 'ImageDir', image_dir)

list_image_files ('images', 'default', 'recursive', ImageFiles)
tuple_shuffle (ImageFiles, DataList)

AllSamples:=[]
for Index := 0 to 9 by 1
    imageFile:=DataList[0]
    tuple_length (DataList, Length)
    create_dict (SampleImage)
    set_dict_tuple (SampleImage, 'image_id', Index+1)
    set_dict_tuple (SampleImage, 'image_file_name', imageFile)
    
    bbox_label_id:=[1]
    bbox_row1:=[1]
    bbox_col1:=[2]
    bbox_row2:=[3]
    bbox_col2:=[4]
    
 
    set_dict_tuple (SampleImage, 'bbox_label_id', bbox_label_id)
    set_dict_tuple (SampleImage, 'bbox_row1', bbox_row1)
    set_dict_tuple (SampleImage, 'bbox_col1', bbox_col1)
    set_dict_tuple (SampleImage, 'bbox_row2', bbox_row2)
    set_dict_tuple (SampleImage, 'bbox_col2', bbox_col2)
    
    tuple_concat (AllSamples, SampleImage, AllSamples)
endfor
set_dict_tuple(ObjectDictionary, 'samples', AllSamples)
* 保存字典到.hdict文件
write_dict (ObjectDictionary, 'dl_test.hdict', [], [])

http://www.lryc.cn/news/327438.html

相关文章:

  • Python图像处理——计算机视觉中常用的图像预处理
  • 编译安装飞桨fastdeploy@FreeBSD(失败)
  • java组合总和(力扣Leetcode39)
  • ZK友好代数哈希函数安全倡议
  • VMware vSAN OSA存储策略 - 基于虚拟机的分布式对象存储
  • JUC内容概述
  • postcss安装和使用
  • macOS 13 Ventura (苹果最新系统) v13.6.6正式版
  • WordPress Git主题 响应式CMS主题模板
  • 安卓国内ip代理app,畅游网络
  • Day53:WEB攻防-XSS跨站SVGPDFFlashMXSSUXSS配合上传文件添加脚本
  • k8s安装traefik作为ingress
  • 如何在Windows 10中打开屏幕键盘?这里有详细步骤
  • 【Pt】马灯贴图绘制过程 03-制作油渍、积尘效果
  • python-numpy-常用函数详解
  • UE小:基于UE5的两种Billboard material(始终朝向相机材质)
  • spring boot actuator 安全配置 springboot的安全性
  • macOS Sonoma如何查看隐藏文件
  • 深入浅出:语言模型的原理、实战与评估
  • 基于ssm的线上旅行信息管理系统论文
  • Jupyter开启远程服务器(最新版)
  • 【SpringCloud微服务实战10】DevOps自动化部署微服务项目(Jenkins+Docker+K8s)
  • DSVPN实验报告
  • Linux:Jenkins:参数化版本回滚(6)
  • Haproxy2.8.1+Lua5.1.4部署,haproxy.cfg配置文件详解和演示
  • GenICam-GenApi简介
  • 如何创建纯净版Django项目并启动?——让Django更加简洁
  • 蓝桥杯 2022 省A 选数异或
  • 计数器选型参数,结构原理,工艺与注意问题总结
  • Android 性能优化实例分享-内存优化 兼顾效率与性能