madivanhorn commited on
Commit
8ed5389
·
verified ·
1 Parent(s): 7c75b37

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +176 -3
README.md CHANGED
@@ -1,3 +1,176 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # CFC26 Dataset Card
5
+
6
+ ## Dataset Summary
7
+
8
+ **CFC26** is a large-scale benchmark dataset for fish detection and counting in underwater ARIS sonar video. Data were collected across 16+ field locations in Alaska, California, Washington, and British Columbia, spanning a wide range of environmental conditions, fish species, and deployment configurations. The dataset is designed to support research in object detection, multi-object tracking, and ecological counting in acoustically challenging underwater settings.
9
+
10
+ ---
11
+
12
+ ## Dataset Details
13
+
14
+ | Property | Value |
15
+ |---|---|
16
+ | **Task** | Fish detection, multi-object tracking, counting |
17
+ | **Sensor** | ARIS Explorer / ARIS Ranger sonar |
18
+ | **Annotation format** | COCO JSON, MOT |
19
+ | **Number of locations** | 16+ |
20
+ | **License** | MIT |
21
+ | **Splits** | train / val / test (temporally stratified per location) |
22
+
23
+ ---
24
+
25
+ ## Motivation
26
+
27
+ Monitoring fish passage at rivers and streams is critical for fisheries management and conservation. Manual review of sonar video is labor-intensive and does not scale to the volume of data collected during migration seasons. CFC26 provides large-scale annotated data to support automated fish detection and counting systems that can operate directly on raw ARIS sonar imagery.
28
+
29
+ ---
30
+
31
+ ## Locations
32
+
33
+ Data were collected at the following field sites:
34
+
35
+ | Location | Region
36
+ |---|---|---|
37
+ | Chemainus | British Columbia, Canada |
38
+ | Dungeness | Washington, USA |
39
+ | Eel | California, USA |
40
+ | Elwha | Washington, USA |
41
+ | Kenai-Channel | Alaska, USA
42
+ | Kenai-Leftbank | Alaska, USA
43
+ | Kenai-Rightbank | Alaska, USA
44
+ | Klamath | California, USA
45
+ | Mad | California, USA |
46
+ | Nanaimo | British Columbia, Canada |
47
+ | Nushagak | Alaska, USA |
48
+
49
+ Kenai locations are further stratified by water column stratum and bank position (channel, left bank, right bank), reflecting distinct sonar deployment configurations at that site.
50
+
51
+ ---
52
+
53
+ ## Dataset Structure
54
+
55
+ ### File Layout
56
+
57
+ ```
58
+ {location}/
59
+ └── {clip_name}/
60
+ └── *.png / *.jpg # sonar frames
61
+
62
+ annotations/
63
+ └── {location}/
64
+ └── {clip_name}.json # COCO annotation file per clip
65
+ ```
66
+
67
+ ### Clip Naming Convention
68
+
69
+ Image filenames encode clip identity and frame index:
70
+
71
+ ```
72
+ {source}_{YYYY-MM-DD}_{HHMMSS}_{start_frame}_{end_frame}_{frame_index}.jpg
73
+ ```
74
+
75
+ Timestamps in filenames are used for temporal train/val/test assignment.
76
+
77
+ ---
78
+
79
+ ## Annotation Format
80
+
81
+ Annotations are provided in **COCO JSON** format (primary) and **MOT text** format.
82
+
83
+ ### COCO JSON
84
+
85
+ Each clip has a corresponding JSON file with the standard COCO structure:
86
+
87
+ **Image fields:**
88
+
89
+ | Field | Description |
90
+ |---|---|
91
+ | `id` | Unique image ID |
92
+ | `file_name` | Frame filename |
93
+ | `width`, `height` | Frame dimensions in pixels |
94
+
95
+ **Annotation fields:**
96
+
97
+ | Field | Description |
98
+ |---|---|
99
+ | `bbox` | `[x, y, width, height]` in pixels (top-left origin) |
100
+ | `track_id` | Unique fish identity within a clip |
101
+ | `category_id` | Fish category ID |
102
+ | `image_id` | Corresponding frame ID |
103
+ | `attributes.track_id` | Alternative track ID location (location-dependent) |
104
+
105
+ **Categories:**
106
+
107
+ | Name | Description |
108
+ |---|---|
109
+ | `FISH` | Confident fish detection |
110
+
111
+
112
+ ### MOT Format
113
+
114
+ One row per detection per frame:
115
+
116
+ ```
117
+ frame_id, track_id, left, top, width, height, conf, x, y, z
118
+ ```
119
+
120
+ ## Train / Val / Test Splits
121
+
122
+ Splits are assigned **temporally per location**: clips are ordered chronologically and divided into contiguous train, validation, and test windows. This design evaluates generalization across time within a deployment season — a realistic condition for monitoring applications — rather than random frame-level splits that would inflate performance estimates.
123
+
124
+ Split boundaries are defined per location in the dataset configuration and reflect natural breakpoints in the recording schedule.
125
+
126
+ ---
127
+
128
+ ## Dataset Statistics
129
+
130
+ *(To be updated with final counts upon release)*
131
+
132
+ | | Train | Val | Test | Total |
133
+ |---|---|---|---|---|
134
+ | Clips | — | — | — | — |
135
+ | Frames | — | — | — | — |
136
+ | Frames with fish | — | — | — | — |
137
+ | Bounding boxes | — | — | — | — |
138
+ | Unique track IDs | — | — | — | — |
139
+
140
+ ---
141
+
142
+ ## Data Collection
143
+
144
+ Sonar units were deployed at each site and recorded continuously or during active monitoring windows. Frame extraction and clip segmentation were performed as part of pre-processing. Annotations were produced by trained annotators using frame-by-frame bounding box labeling with consistent track ID assignment across frames.
145
+
146
+ ---
147
+
148
+ ## Limitations
149
+
150
+ - **Class imbalance.** Empty frames (no fish present) constitute a large fraction of the data at most locations. Models must handle significant negative-to-positive imbalance.
151
+ - **Domain shift across locations.** Sonar imagery varies considerably across deployment sites due to differences in water turbidity, fish size, fish density, flow rate, camera angle, and hardware configuration. Models trained on a subset of locations may not generalize without adaptation.
152
+
153
+ ---
154
+
155
+ ## Ethical Considerations
156
+
157
+ CFC26 contains no personally identifiable information. Data were collected in collaboration with fisheries agencies and organizations. Use of this dataset for automated fish monitoring should be accompanied by appropriate ecological expertise and should not be used as a sole basis for management decisions without validation by domain experts.
158
+
159
+ ---
160
+
161
+ ## Citation
162
+
163
+ *(Citation will be updated with full author list and proceedings details upon publication.)*
164
+
165
+ ---
166
+
167
+ ## License
168
+
169
+ CFC26 is released under the [MIT License](https://opensource.org/licenses/MIT).
170
+
171
+ ---
172
+
173
+ ## Mini Sample
174
+
175
+ A curated mini version of CFC26 (**CFC26-Mini**) is available for demonstration purposes. It contains 1 clip per split per location with 10 frames per clip (only positive samples). See `CFC26_MINI_DATASET_CARD.md` for details.
176
+