- 添加完整的项目文档(README.md, design.md, CLAUDE.md) - 实现核心检测算法:ROI管理、峰值检测、帧间稳定 - 支持实时摄像头检测和视频文件处理 - 包含图像预处理:去雾、几何校正、图像增强 - 提供多种输出格式:JSON、CSV、矩阵、文本 - 实现双阈值检测算法适应雾天环境 - 添加ROI标定工具和配置文件管理 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
5 lines
197 B
Python
5 lines
197 B
Python
from src.roi_detection.led_detector import LEDDetector
|
|
detector = LEDDetector()
|
|
print('LED检测器初始化成功')
|
|
stats = detector.get_detection_statistics()
|
|
print('检测器状态:', stats) |