读取halcon中DXF文件并创建模板

halcon中的DXF文件

在HDevelop的帮助窗口里,选择"算子"标签页,输入dxf,一共出现四个算子:

  • read_contour_xld_dxf:Read XLD contours from a DXF file.
  • read_polygon_xld_dxf:Read XLD polygons from a DXF file.
  • write_contour_xld_dxf:Write XLD contours to a file in DXF format.
  • write_polygon_xld_dxf:Write XLD polygons to a file in DXF format.

XLDs(eXtended Line Descriptions,扩展线描述)是HALCON中特定的图标对象,用于表示亚像素精度的轮廓和多边形(Hcont, Hpoly)。

从上述描述可知,XLD主要包含轮廓和多边形两种类型,四个算子的功能分别为从DXF文件读取XLD对象将XLD对象写入DXF文件

DeepSeek 中输入C++读取DXF文件并解析得到如下代码:

cpp 复制代码
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <map>

// 定义一个结构体来存储DXF文件中的实体
struct DxfEntity {
    std::string type;
    std::map<int, std::string> properties;
};

// 读取DXF文件并解析
std::vector<DxfEntity> readDxfFile(const std::string& filePath) {
    std::ifstream file(filePath);
    std::vector<DxfEntity> entities;
    DxfEntity currentEntity;
    bool inEntity = false;

    if (!file.is_open()) {
        std::cerr << "无法打开文件: " << filePath << std::endl;
        return entities;
    }

    std::string line;
    while (std::getline(file, line)) {
        // 去除行首尾的空白字符
        line.erase(0, line.find_first_not_of(" \t\r\n"));
        line.erase(line.find_last_not_of(" \t\r\n") + 1);

        if (line.empty()) continue;

        // 解析组码和值
        int groupCode = std::stoi(line);
        std::string value;
        if (std::getline(file, value)) {
            value.erase(0, value.find_first_not_of(" \t\r\n"));
            value.erase(value.find_last_not_of(" \t\r\n") + 1);

            if (groupCode == 0) {
                // 新的实体开始
                if (inEntity) {
                    entities.push_back(currentEntity);
                    currentEntity = DxfEntity();
                }
                currentEntity.type = value;
                inEntity = true;
            } else {
                // 添加属性到当前实体
                currentEntity.properties[groupCode] = value;
            }
        }
    }

    // 添加最后一个实体
    if (inEntity) {
        entities.push_back(currentEntity);
    }

    file.close();
    return entities;
}

// 打印解析的实体
void printEntities(const std::vector<DxfEntity>& entities) {
    for (const auto& entity : entities) {
        std::cout << "实体类型: " << entity.type << std::endl;
        for (const auto& prop : entity.properties) {
            std::cout << "  组码: " << prop.first << ", 值: " << prop.second << std::endl;
        }
        std::cout << std::endl;
    }
}

int main() {
    std::string filePath = "example.dxf";
    std::vector<DxfEntity> entities = readDxfFile(filePath);
    printEntities(entities);
    return 0;
}

利用上述代码,分别读取由write_contour_xld_dxfwrite_polygon_xld_dxf 保存的DXF文件,输出结果如下:

不难看出,POLYLINE 标示每一个XLD对象的开始,其后的VERTEX 即为XLD中的顶点,10,20,30分别对应X,Y,Z 坐标,1040对应edge_direction ,对于轮廓可以提取到(X,Y,edge_direction),对于多边形可以提取到(X,Y),基于这些信息,即可创建模板。

使用DXF文件创建模板

mwwz 图像库支持从轮廓或者多边形创建模板,读取halcon的DXF文件后,解析出位置、方向等信息,即可创建适用于mwwz 的模板。此项功能已加入测试软件。需要注意的是,轮廓本身自带方向,而多边形仅包含顶点位置信息,其方向需要额外指定。在测试软件中加载模板时,多边形模板+ 表示方向在轮廓的右侧,多边形模板- 表示方向在轮廓的左侧,此外形状模板(*.shm) 与halcon并不兼容。

测试软件下载地址

相关推荐
饭饭大王66620 小时前
深度学习在计算机视觉中的最新进展
人工智能·深度学习·计算机视觉
雍凉明月夜1 天前
视觉opencv学习笔记Ⅲ
笔记·opencv·学习
徽4401 天前
农田植被目标检测数据标注与模型训练总结1
人工智能·目标检测·计算机视觉
stormsha1 天前
裸眼3D原理浅析AI如何生成平面裸眼3D图像以科幻战士破框而出为例
人工智能·计算机视觉·平面·3d·ai
顾道长生'1 天前
(Arxiv-2025)ID-COMPOSER:具有分层身份保持的多主体视频合成
计算机视觉·音视频·composer
一只侯子1 天前
Face AE Tuning
图像处理·笔记·学习·算法·计算机视觉
Coding茶水间1 天前
基于深度学习的安全帽检测系统演示与介绍(YOLOv12/v11/v8/v5模型+Pyqt5界面+训练代码+数据集)
图像处理·人工智能·深度学习·yolo·目标检测·计算机视觉
WWZZ20252 天前
快速上手大模型:深度学习12(目标检测、语义分割、序列模型)
深度学习·算法·目标检测·计算机视觉·机器人·大模型·具身智能
后端小张2 天前
智眼法盾:基于Rokid AR眼镜的合同条款智能审查系统开发全解析
人工智能·目标检测·计算机视觉·ai·语言模型·ar·硬件架构
浩浩的代码花园2 天前
自研端侧推理模型实测效果展示
android·深度学习·计算机视觉·端智能