Datasets:
File size: 3,634 Bytes
e13fe63 9d494d2 98e670e 9d494d2 98e670e 10d7c58 9d494d2 98e670e c4fb7d4 98e670e 9d494d2 c4fb7d4 9d494d2 98e670e c4fb7d4 8eb0a14 9d494d2 8eb0a14 9d494d2 c4fb7d4 9d494d2 98e670e 9d494d2 98e670e 9d494d2 98e670e 9d494d2 98e670e 9d494d2 98e670e 9d494d2 98e670e 9d494d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | ---
license: other
license_name: multi-source-aggregated-terms
license_link: LICENSE
pretty_name: "Person, Face & Package — Home Security Detection (YOLO)"
task_categories:
- object-detection
tags:
- image
- object-detection
- computer-vision
- yolo
- ultralytics
- bbox
- home-security
- surveillance
- face-detection
- parcel-detection
- delivery
- vehicle-detection
- pet-detection
- bird-detection
annotations_creators:
- crowdsourced
- found
language:
- en
---
# Person, face & package — home-security detection dataset
YOLO-format dataset for person, face, vehicles, small vehicles, parcels, pets, and birds in home / delivery / street scenes. Full data lives under `bigsplit/`; `sample/` is a 100-image preview subset (same layout: flat `images/` and `labels/`).
Training configs point at a `data.yaml` beside those folders. Both splits use the same class list (`nc` and `names`); only the root path and which image set is packaged differ. Labels are YOLO `.txt` files with one line per box: `class_id x_center y_center width height` (normalized 0–1).
## `data.yaml` — tags and layout
Class **tags** are the `names` list; order is the YOLO class index (`0` … `nc - 1`). Below is the canonical schema used by `sample/data.yaml` (checked in). The full split uses the same `nc` and `names` in `bigsplit/data.yaml`; `path`, `train`, and `val` resolve to that folder’s `images/` when you train from the dataset root.
**`sample/data.yaml`**
```yaml
# Preview sample (100 images); same layout as bigsplit — no split subfolders.
path: .
train: images
val: images
nc: 9
names:
- person
- face
- vehicle
- bike
- bicycle
- parcel
- dog
- cat
- bird
```
When the full dataset is present, `bigsplit/data.yaml` uses the same `path` / `train` / `val` / `nc` / `names` (often with a file header comment describing the full split instead of the sample).
## Preview (bounding boxes)
Five PNGs are generated from the checked-in **`sample/`** images and YOLO labels. Each file stitches **three** frames **edge-to-edge** at equal height (**no padding** between panels). Boxes and class names are drawn from the corresponding `sample/labels/*.txt` files.
<p align="center">
<img src="assets/preview_01.png" width="32%" alt="Sample preview 1 — three stitched frames" />
<img src="assets/preview_02.png" width="32%" alt="Sample preview 2 — three stitched frames" />
<img src="assets/preview_03.png" width="32%" alt="Sample preview 3 — three stitched frames" />
</p>
<p align="center">
<img src="assets/preview_04.png" width="32%" alt="Sample preview 4 — three stitched frames" />
<img src="assets/preview_05.png" width="32%" alt="Sample preview 5 — three stitched frames" />
</p>
[preview_01.png](assets/preview_01.png) · [preview_02.png](assets/preview_02.png) · [preview_03.png](assets/preview_03.png) · [preview_04.png](assets/preview_04.png) · [preview_05.png](assets/preview_05.png) · [preview_manifest.txt](assets/preview_manifest.txt) (source filenames per composite)
Regenerate after changing `sample/`:
```bash
python3 -m venv .venv # once
.venv/bin/pip install pillow pyyaml
.venv/bin/python scripts/make_readme_preview.py
```
## Layout
- `bigsplit/data.yaml` — class list and paths (`train` / `val` both point at `images/`).
- `sample/data.yaml` — same schema for the preview subset.
## Classes (`nc: 9`)
| id | name |
|---:|----------|
| 0 | person |
| 1 | face |
| 2 | vehicle |
| 3 | bike |
| 4 | bicycle |
| 5 | parcel |
| 6 | dog |
| 7 | cat |
| 8 | bird |
## License
See `LICENSE`.
|