|
| 1 | +# 🚀 Quick Start Guide - Tello Vision v2.0 |
| 2 | + |
| 3 | +## TL;DR - Get Running in 5 Minutes |
| 4 | + |
| 5 | +```bash |
| 6 | +# 1. Extract and enter directory |
| 7 | +tar -xzf tello_vision_v2.tar.gz |
| 8 | +cd tello_vision |
| 9 | + |
| 10 | +# 2. Run installer (auto-installs everything) |
| 11 | +./install.sh |
| 12 | + |
| 13 | +# 3. Power on Tello, connect to its WiFi |
| 14 | + |
| 15 | +# 4. Launch! |
| 16 | +source venv/bin/activate |
| 17 | +python -m tello_vision.app |
| 18 | +``` |
| 19 | + |
| 20 | +## What You Get |
| 21 | + |
| 22 | +- **Modern instance segmentation** (YOLOv8 or Detectron2) |
| 23 | +- **5-6x faster** than the old code (25-30 FPS on decent GPU) |
| 24 | +- **Modular architecture** - actually maintainable |
| 25 | +- **Config-driven** - no code changes for common stuff |
| 26 | +- **Production ready** - proper error handling, logging, async |
| 27 | + |
| 28 | +## First Steps |
| 29 | + |
| 30 | +### 1. Test Detection Without Drone |
| 31 | +Good for verifying everything works: |
| 32 | +```bash |
| 33 | +python examples/test_detector.py --source 0 # Webcam |
| 34 | +``` |
| 35 | + |
| 36 | +### 2. Benchmark Your Setup |
| 37 | +See what FPS you can get: |
| 38 | +```bash |
| 39 | +python examples/benchmark.py |
| 40 | +``` |
| 41 | + |
| 42 | +### 3. Full Drone Mode |
| 43 | +With Tello connected: |
| 44 | +```bash |
| 45 | +python -m tello_vision.app |
| 46 | +``` |
| 47 | + |
| 48 | +Controls: |
| 49 | +- **Tab**: Takeoff |
| 50 | +- **W/A/S/D**: Move |
| 51 | +- **Space/Shift**: Up/Down |
| 52 | +- **Q/E**: Rotate |
| 53 | +- **R**: Record video |
| 54 | +- **Enter**: Take photo |
| 55 | +- **Backspace**: Land |
| 56 | +- **P**: Quit |
| 57 | + |
| 58 | +## Configuration Tweaks |
| 59 | + |
| 60 | +Edit `config.yaml`: |
| 61 | + |
| 62 | +**Want faster FPS?** Use smaller model: |
| 63 | +```yaml |
| 64 | +detector: |
| 65 | + yolov8: |
| 66 | + model: "yolov8n-seg.pt" # n=nano (fastest) |
| 67 | +``` |
| 68 | +
|
| 69 | +**Only track people?** |
| 70 | +```yaml |
| 71 | +detector: |
| 72 | + target_classes: ["person"] |
| 73 | +``` |
| 74 | +
|
| 75 | +**Adjust visualization:** |
| 76 | +```yaml |
| 77 | +visualization: |
| 78 | + mask_alpha: 0.4 # Mask transparency |
| 79 | + show_confidence: true |
| 80 | +``` |
| 81 | +
|
| 82 | +**Performance tuning:** |
| 83 | +```yaml |
| 84 | +processing: |
| 85 | + frame_skip: 1 # Process every 2nd frame (doubles FPS) |
| 86 | +``` |
| 87 | +
|
| 88 | +## Project Structure |
| 89 | +
|
| 90 | +``` |
| 91 | +tello_vision/ |
| 92 | +├── config.yaml ← Edit this for settings |
| 93 | +├── install.sh ← Run first |
| 94 | +├── README.md ← Full documentation |
| 95 | +├── MIGRATION.md ← If migrating from old code |
| 96 | +│ |
| 97 | +├── tello_vision/ ← Main package |
| 98 | +│ ├── app.py ← Main application |
| 99 | +│ ├── tello_controller.py ← Drone control |
| 100 | +│ ├── visualizer.py ← Visualization |
| 101 | +│ └── detectors/ ← Detection backends |
| 102 | +│ |
| 103 | +└── examples/ ← Usage examples |
| 104 | + ├── test_detector.py ← Test without drone |
| 105 | + ├── benchmark.py ← Performance tests |
| 106 | + └── object_follower.py ← Autonomous tracking |
| 107 | +``` |
| 108 | + |
| 109 | +## Autonomous Tracking Demo |
| 110 | + |
| 111 | +Want to make the drone follow you? |
| 112 | + |
| 113 | +```bash |
| 114 | +python examples/object_follower.py |
| 115 | +# Enter target: person |
| 116 | +# Press TAB to enable auto-follow |
| 117 | +``` |
| 118 | + |
| 119 | +This demonstrates reactive control suitable for autonomous vehicles. |
| 120 | + |
| 121 | +## Common Issues |
| 122 | + |
| 123 | +**"No CUDA"** - Will work on CPU, just slower. Install CUDA for speed. |
| 124 | + |
| 125 | +**"Can't connect to Tello"** - Make sure you're connected to Tello's WiFi (not your home WiFi). |
| 126 | + |
| 127 | +**"Low FPS"** - Try smaller model (`yolov8n-seg.pt`) or enable `frame_skip`. |
| 128 | + |
| 129 | +**Import errors** - Run `./install.sh` again with correct backend choice. |
| 130 | + |
| 131 | +## For Self-Driving Car Work |
| 132 | + |
| 133 | +This gives you: |
| 134 | +- Real-time object detection pipeline |
| 135 | +- Target tracking framework |
| 136 | +- Reactive control examples |
| 137 | +- Extensible architecture for adding SLAM, planning, etc. |
| 138 | + |
| 139 | +Check `examples/object_follower.py` for autonomous navigation basics. |
| 140 | + |
| 141 | +## Next Steps |
| 142 | + |
| 143 | +1. **Read README.md** - Full documentation |
| 144 | +2. **Try examples/** - Learn the API |
| 145 | +3. **Modify config.yaml** - Tune for your use case |
| 146 | +4. **Extend** - Add your own detectors/controllers |
| 147 | + |
| 148 | +## Performance Reference |
| 149 | + |
| 150 | +| GPU | Model | FPS | |
| 151 | +|-----|-------|-----| |
| 152 | +| RTX 3060 | YOLOv8n | 25-30 | |
| 153 | +| RTX 3060 | YOLOv8s | 18-22 | |
| 154 | +| 1050 Ti | YOLOv8n | 18-22 | |
| 155 | +| CPU | YOLOv8n | 2-3 | |
| 156 | + |
| 157 | +## Files to Know |
| 158 | + |
| 159 | +- **config.yaml** - All settings |
| 160 | +- **tello_vision/app.py** - Main application |
| 161 | +- **tello_vision/detectors/base_detector.py** - Add custom models here |
| 162 | +- **examples/object_follower.py** - Autonomous control reference |
| 163 | + |
| 164 | +## Getting Help |
| 165 | + |
| 166 | +- Check **README.md** for detailed docs |
| 167 | +- See **IMPROVEMENTS.md** for what changed |
| 168 | +- Read **MIGRATION.md** if coming from old code |
| 169 | +- Example code in **examples/** directory |
| 170 | + |
| 171 | +--- |
0 commit comments