Update README.md
Browse files
README.md
CHANGED
|
@@ -8,7 +8,7 @@ tags:
|
|
| 8 |
- person-re-identification
|
| 9 |
- UAV
|
| 10 |
- drone
|
| 11 |
-
-
|
| 12 |
- aerial-imagery
|
| 13 |
pretty_name: Person Detection and Re-Identification from Low Altitude UAV-based Platform
|
| 14 |
size_categories:
|
|
@@ -59,7 +59,7 @@ The dataset supports two tasks:
|
|
| 59 |
|
| 60 |
## Detection Task
|
| 61 |
|
| 62 |
-
The detection subset contains **5 batches** of labeled drone footage, each with approximately 100–300 images. Annotations are in
|
| 63 |
|
| 64 |
Batches 3 and 5 correspond to "outside cage" scenarios and were used for a separate evaluation subset.
|
| 65 |
|
|
@@ -71,7 +71,7 @@ Batches 3 and 5 correspond to "outside cage" scenarios and were used for a separ
|
|
| 71 |
|
| 72 |
## Re-Identification Task
|
| 73 |
|
| 74 |
-
The re-identification subset contains **2 batches** of labeled images (`re-id-test1` and `re-id-test2`), annotated with individual identity labels in
|
| 75 |
|
| 76 |
Pre-computed gallery feature vectors are provided as `.npy` files (one per identity), enabling reproduction of the re-identification evaluation without re-extracting features.
|
| 77 |
|
|
@@ -87,7 +87,7 @@ Pre-computed gallery feature vectors are provided as `.npy` files (one per ident
|
|
| 87 |
- **Platform**: DJI Mini drone
|
| 88 |
- **Altitude**: Low altitude
|
| 89 |
- **Annotation tool**: Roboflow
|
| 90 |
-
- **Annotation format**:
|
| 91 |
- **Pre-processing/Augmentation**: None applied to the exported dataset
|
| 92 |
## Usage
|
| 93 |
|
|
@@ -96,7 +96,7 @@ Pre-computed gallery feature vectors are provided as `.npy` files (one per ident
|
|
| 96 |
```python
|
| 97 |
from ultralytics import YOLO
|
| 98 |
|
| 99 |
-
model = YOLO("
|
| 100 |
results = model.val(data="Detection/Batch-1.yolov8/data.yaml")
|
| 101 |
```
|
| 102 |
|
|
|
|
| 8 |
- person-re-identification
|
| 9 |
- UAV
|
| 10 |
- drone
|
| 11 |
+
- YOLO
|
| 12 |
- aerial-imagery
|
| 13 |
pretty_name: Person Detection and Re-Identification from Low Altitude UAV-based Platform
|
| 14 |
size_categories:
|
|
|
|
| 59 |
|
| 60 |
## Detection Task
|
| 61 |
|
| 62 |
+
The detection subset contains **5 batches** of labeled drone footage, each with approximately 100–300 images. Annotations are in YOLO format, with bounding boxes around detected persons.
|
| 63 |
|
| 64 |
Batches 3 and 5 correspond to "outside cage" scenarios and were used for a separate evaluation subset.
|
| 65 |
|
|
|
|
| 71 |
|
| 72 |
## Re-Identification Task
|
| 73 |
|
| 74 |
+
The re-identification subset contains **2 batches** of labeled images (`re-id-test1` and `re-id-test2`), annotated with individual identity labels in YOLO format. This data was used to evaluate a person re-identification pipeline using the OSNet model.
|
| 75 |
|
| 76 |
Pre-computed gallery feature vectors are provided as `.npy` files (one per identity), enabling reproduction of the re-identification evaluation without re-extracting features.
|
| 77 |
|
|
|
|
| 87 |
- **Platform**: DJI Mini drone
|
| 88 |
- **Altitude**: Low altitude
|
| 89 |
- **Annotation tool**: Roboflow
|
| 90 |
+
- **Annotation format**: YOLO (TXT)
|
| 91 |
- **Pre-processing/Augmentation**: None applied to the exported dataset
|
| 92 |
## Usage
|
| 93 |
|
|
|
|
| 96 |
```python
|
| 97 |
from ultralytics import YOLO
|
| 98 |
|
| 99 |
+
model = YOLO("yolov8s.pt")
|
| 100 |
results = model.val(data="Detection/Batch-1.yolov8/data.yaml")
|
| 101 |
```
|
| 102 |
|