Files
ai-cad-quant/README.md
T
2026-07-08 09:33:49 +08:00

53 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ai-cad-quant
# AI CAD自动算量项目
## 项目目标
通过CAD图纸解析技术,
结合AI辅助识别,
实现工程量自动计算和清单输出。
## 当前阶段
阶段1
CAD文件解析能力验证。
目标:
- 读取CAD/DXF文件
- 提取图层
- 提取线段
- 提取文字
- 提取尺寸
- 验证工程量计算基础数据
目录结构
```txt
ai-cad-quantity-estimation
├── README.md # 项目说明
├── docs # 文档资料
│ ├── 项目计划.md
│ ├── 技术路线.md
│ ├── 广联达调研.md
│ ├── CAD数据结构分析.md
│ └── Demo方案.md
├── samples # 测试文件
│ ├── dxf
│ ├── dwg
│ └── output
├── experiments # 技术验证
│ ├── dxf-parser-test
│ └── geometry-test
├── backend # 后端(后续)
├── frontend # 页面Demo(后续)
└── scripts # 工具脚本
```