Datasets:
File size: 9,373 Bytes
ac9cb27 6d28bec 6d702cf 6d28bec ac9cb27 | 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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | ---
language:
- en
license: cc-by-4.0
pretty_name: Brackish Underwater Object Detection Dataset
task_categories:
- object-detection
tags:
- object-detection
- underwater
- marine-biology
- brackish-water
- computer-vision
- ultralytics
- yolo
size_categories:
- 10K<n<100K
configs:
- config_name: default
data_files:
- split: train
path:
- "data/train/shard_000/images/metadata.jsonl"
- "data/train/shard_001/images/metadata.jsonl"
- "data/train/shard_002/images/metadata.jsonl"
- "data/train/shard_003/images/metadata.jsonl"
- split: validation
path: "data/valid/images/metadata.jsonl"
- split: test
path: "data/test/images/metadata.jsonl"
---
# Brackish: Underwater Marine Animal Detection Dataset
<p align="center">
<img src="brackish_banner.jpg" alt="Brackish Dataset Banner"/>
</p>






> **Unofficial redistribution of the Brackish underwater dataset, reformatted into a standardized YOLO-compatible directory layout.**
## Disclaimer
This repository is **not** an official release of the Brackish dataset.
The Brackish dataset was created by Aalborg University's Visual Analysis of People (VAP) Laboratory (Malte Pedersen, Joakim Bruslund Haurum, Rikke Gade, Thomas B. Moeslund, and Niels Madsen), who retain all copyright and intellectual property rights. This repository does **not** claim ownership of any images, annotations, or metadata.
This repository exists for two purposes:
1. To reorganize the dataset into a standardized YOLO/Ultralytics-compatible directory structure that can be used directly by many modern object detection training pipelines.
2. To provide a more reliable download source, as the original hosting may be slow, difficult to access, or subject to broken configuration files (see [Changes from the Official Release](#changes-from-the-official-release) below).
**Two-hop provenance.** This redistribution is not sourced directly from the original annotated-video release. It is sourced from a third-party YOLO-format export of Brackish published on Roboflow Universe (workspace `brad-dwyer`), which itself extracted and reorganized frames from the original annotated videos into a YOLO-compatible layout. Both the original authors and the intermediate contributor are credited below.
---
# Dataset Description
Brackish is an underwater object detection benchmark of fish, crabs, and other marine animals, collected with a camera mounted 9 meters below the surface on the Limfjords bridge in Limfjorden, a brackish strait near Aalborg, Denmark. The original release comprises 89 annotated videos (H.264, up to 1920x1080 at 30 fps) captured under naturally varying visibility conditions. Roboflow extracted and processed frames from these source videos into still images, maintaining the original roughly 80/10/10 train/valid/test split.
This repository preserves those images and labels while packaging them in a standardized YOLO directory layout for improved compatibility with modern deep learning frameworks.
---
# Changes from the Official Release
The transformation chain has two hops, and each is scoped narrowly:
### 1. Original annotated videos → Roboflow YOLO export (not performed by this repository)
Roboflow (workspace `brad-dwyer`, project `brackish-underwater`, version 1) extracted frames from the original annotated videos and converted them into a YOLO-compatible `train/valid/test` layout at 1920x1080 resolution, maintaining the original dataset's splits. This step was **not** performed by us; we redistribute its output.
### 2. Roboflow YOLO export → this repository
- Fixed a broken `data.yaml`: the Roboflow-generated file uses a relative `path: ../train/images`-style reference that does not resolve once the directory is placed inside another project. A corrected `data.yaml` with an explicit root path is provided in this repository. The original file's `train`/`val`/`test` keys and class list are otherwise unchanged.
- No images were added, removed, or modified.
- No labels were changed.
- No splits were changed.
Apart from the `data.yaml` path fix, the dataset contents in this repository are identical to the Roboflow export described above.
**Note on empty-label images:** roughly 15% of images in every split have no annotated objects (empty label files). This is expected and intentional — the original dataset includes background-only frames as part of its varying-visibility design — and is preserved as-is, not filtered out.
---
# Dataset Structure
```text
dataset/
├── README.md
├── data.yaml
├── train/
│ ├── images/
│ └── labels/
├── valid/
│ ├── images/
│ └── labels/
└── test/
├── images/
└── labels/
```
where:
* `images/` contains the RGB underwater frames for each split (1920x1080).
* `labels/` contains one YOLO-format `.txt` annotation file per image (`class x_center y_center width height`, normalized; empty for frames with no annotated animals).
* `data.yaml` is the Ultralytics dataset configuration file (class names, split paths).
* Splits: **train** 11,739 images · **valid** 1,467 images · **test** 1,468 images (14,674 total).
### Classes (6)
`crab, fish, jellyfish, shrimp, small_fish, starfish`
Class distribution is imbalanced: **crab** and **small_fish** dominate the annotations, while **shrimp** and **jellyfish** are comparatively rare (roughly 20x fewer boxes). Keep this in mind when interpreting per-class metrics.
---
# Dataset Sources
## Original Paper
**Detection of Marine Animals in a New Underwater Dataset with Varying Visibility**
Malte Pedersen, Joakim Bruslund Haurum, Rikke Gade, Thomas B. Moeslund, Niels Madsen
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops (AAMVEM), 2019.
Paper: https://openaccess.thecvf.com/content_CVPRW_2019/papers/AAMVEM/Pedersen_Detection_of_Marine_Animals_in_a_New_Underwater_Dataset_with_CVPRW_2019_paper.pdf
## Official Resources
- **Research Group Page:** https://vap.aau.dk/the-brackish-dataset/
- **Kaggle:** https://www.kaggle.com/datasets/aalborguniversity/brackish-dataset
- **Aalborg University Research Portal:** https://vbn.aau.dk/en/datasets/the-brackish-dataset/
- **Code:** https://bitbucket.org/aauvap/brackish-dataset
- **arXiv** https://arxiv.org/abs/2302.10645
## Intermediate YOLO Export
- **Roboflow Project:** `brad-dwyer/brackish-underwater` (version 1, 1920x1080 variant)
- **URL:** https://universe.roboflow.com/brad-dwyer/brackish-underwater
---
# Attribution
**All credit for the dataset belongs entirely to the original authors: Malte Pedersen, Joakim Bruslund Haurum, Rikke Gade, Thomas B. Moeslund, and Niels Madsen (Aalborg University).**
Credit for the YOLO-format reorganization used as the direct source for this repository belongs to the Roboflow contributor at workspace `brad-dwyer`.
This repository only redistributes that YOLO-format export, with one configuration-file fix, for improved usability and accessibility.
If you use this dataset in your research, **please cite the original publication below.**
---
# License
This dataset is redistributed under **Creative Commons Attribution 4.0 International (CC BY 4.0)**, matching the license declared by the Roboflow export this repository is directly sourced from.
**A note on verification.** Aalborg University's own dataset page and research-portal listing for Brackish do not state an explicit license, and the Kaggle dataset page's license field could not be independently confirmed via automated retrieval while preparing this card. CC BY 4.0 is Roboflow's stated license for its redistribution and is the best available evidence, but if you require certainty for commercial use or further redistribution, we recommend checking the license field on the [Kaggle dataset page](https://www.kaggle.com/datasets/aalborguniversity/brackish-dataset) directly or contacting the original authors.
This repository is distributed under the same terms as its direct source (CC BY 4.0).
---
# Citation
If you use this dataset, please cite:
```bibtex
@InProceedings{pedersen2019brackish,
title = {Detection of Marine Animals in a New Underwater Dataset with Varying Visibility},
author = {Pedersen, Malte and Haurum, Joakim Bruslund and Gade, Rikke and Moeslund, Thomas B. and Madsen, Niels},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops},
month = {June},
year = {2019}
}
```
---
# Acknowledgements
We sincerely thank Malte Pedersen, Joakim Bruslund Haurum, Rikke Gade, Thomas B. Moeslund, and Niels Madsen for creating and publicly releasing this valuable underwater detection benchmark, and the Roboflow contributor at workspace `brad-dwyer` for the YOLO-format reorganization this repository redistributes.
|