# 识别热成像中低温区域 **Repository Path**: ccq/Identify-low-temperature-areas-in-thermal-image ## Basic Information - **Project Name**: 识别热成像中低温区域 - **Description**: 用聚类的方法识别出热成像图中的低温区域 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-13 - **Last Updated**: 2025-10-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 识别热成像中低温区域 #### 介绍 用聚类的方法识别出热成像图中的低温区域 #### 项目架构 ``` / ├── main.py # 主程序入口 ├── thermal_processor.py # 热成像处理核心类 ├── utils/ # 工具模块 │ ├── __init__.py │ └── visualization.py # 可视化工具 ├── config/ # 配置文件 │ └── custom_config.yaml ├── data/ # 数据目录 │ ├── input/ # 输入图像 │ └── output/ # 输出结果 └── requirements.txt # 依赖包 ``` #### 安装教程 1. 虚拟独立ENV(在Python 3.11下测试通过) 2. `pip install -r requirements.txt` #### 使用说明 1. 最基本使用 `python main.py -i data/input/热成像图例.jpg -o data/output/result.jpg` 2. 指定k个聚类 `python main.py -i data/input/热成像图例.jpg -o data/output/result.jpg -k 8` 3. 读取详细配置 `python main.py -i data/input/热成像图例.jpg -o data/output/result.jpg -c config/custom_config.yaml` ### 例子 * 原热成像图 ![热成像图例](data/input/热成像图例.jpg) * 自动标注后的结果 ![标注后的结果](data/output/result.jpg)