Graduation-Project/README.md

35 lines
513 B
Markdown
Raw Normal View History

2025-04-18 13:56:09 +00:00
# Graduation-Project
2025-04-22 08:35:10 +00:00
毕业设计基于YOLO和图像融合技术的无人机检测系统及安全性研究
2025-05-10 09:23:06 +00:00
Linux 运行联邦训练
2025-04-22 08:35:10 +00:00
```bash
2025-05-10 09:23:06 +00:00
cd federated_learning
```
```bash
nohup python -u yolov8_fed.py > runtime.log 2>&1 &
```
Linux 运行集中训练
```bash
cd yolov8
```
```bash
nohup python -u yolov8_train.py > runtime.log 2>&1 &
```
实时监控日志文件
```bash
tail -f runtime.log
```
运行图像融合配准代码
```bash
cd image_fusion
```
```bash
python Image_Registration_test.py
2025-04-22 08:35:10 +00:00
```