Datasets:

Modalities:
Image
Languages:
English
Size:
< 1K
ArXiv:
DOI:
Libraries:
Datasets
License:
vismiroglou commited on
Commit
2e40644
·
verified ·
1 Parent(s): 0da767b

readme draft

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-segmentation
4
+ - mask-generation
5
+ language:
6
+ - en
7
+ ---
8
+
9
+ 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,
10
+ and a total of 18,160 instance segmentation masks.
11
+
12
+ The fish are partitioned into 25 groups, with 14 to 24 fish in each group. The
13
+ number of fish and distribution of species in each group were pseudo-randomly selected to mimic real-world scenarios. Every group is partitioned
14
+ into three subsets: *Set1*, *Set2*, and *All*. *Set1* and *Set2* contain half of the fish each, and none of the
15
+ 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
16
+ 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
17
+ half has the fish flipped.
18
+
19
+ The available classes are:
20
+ - Cod
21
+ - Haddock
22
+ - Whiting
23
+ - Hake
24
+ - Horse mackerel
25
+ - Other
26
+
27
+ The annotations are in COCO format, with a structure as per the following example:
28
+ ```yaml
29
+ {
30
+ "images": [
31
+ {
32
+ "height": 2056,
33
+ "width": 2464,
34
+ "id": 1,
35
+ "file_name": "group_1/00001.png",
36
+ "group": 1,
37
+ },
38
+ ...
39
+ ],
40
+ "annotations": [
41
+ {
42
+ "iscrowd": 0,
43
+ "image_id": 1,
44
+ "bbox": [],
45
+ "segmentation": []
46
+ "category_id": 0,
47
+ "length": 35.5,
48
+ "fish_id": 316,
49
+ "side_up": "R",
50
+ "id": 1,
51
+ "area": 92164
52
+ },
53
+ ...
54
+ ],
55
+ "categories": [
56
+ {
57
+ "id": 0,
58
+ "name": "horse_mackerel",
59
+ "supercategory": "horse_mackerel"
60
+ },
61
+ ...
62
+ ],
63
+ }