Datasets:

Modalities:
Image
Languages:
English
Libraries:
Datasets
License:
autofish / README.md
vismiroglou's picture
readme draft
2e40644 verified
|
raw
history blame
1.76 kB
---
task_categories:
- image-segmentation
- mask-generation
language:
- en
---
The **AUTOFISH** dataset comprises 1500 high-quality images of fish on a conveyor belt. It features 454 unique fish with class labels, IDs, manual length measurements,
and a total of 18,160 instance segmentation masks.
The fish are partitioned into 25 groups, with 14 to 24 fish in each group. The
number of fish and distribution of species in each group were pseudo-randomly selected to mimic real-world scenarios. Every group is partitioned
into three subsets: *Set1*, *Set2*, and *All*. *Set1* and *Set2* contain half of the fish each, and none of the
fish overlap or touch each other. *All* contains all the fish from the group, purposely placed in positions with high overlap. Every group directory contains 20 images for
each set, where variation is introduced by changing the position and orientation of the fish. Exactly half of every set is with the fish on their one side, while the other
half has the fish flipped.
The available classes are:
- Cod
- Haddock
- Whiting
- Hake
- Horse mackerel
- Other
The annotations are in COCO format, with a structure as per the following example:
```yaml
{
"images": [
{
"height": 2056,
"width": 2464,
"id": 1,
"file_name": "group_1/00001.png",
"group": 1,
},
...
],
"annotations": [
{
"iscrowd": 0,
"image_id": 1,
"bbox": [],
"segmentation": []
"category_id": 0,
"length": 35.5,
"fish_id": 316,
"side_up": "R",
"id": 1,
"area": 92164
},
...
],
"categories": [
{
"id": 0,
"name": "horse_mackerel",
"supercategory": "horse_mackerel"
},
...
],
}