joonhaim commited on
Commit
0467de6
·
verified ·
1 Parent(s): 849c670

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +122 -0
README.md ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - computer-vision
9
+ - image-classification
10
+ - surgical-tools
11
+ - surgical-instruments
12
+ - medical-imaging
13
+ - open-closed-classification
14
+ pretty_name: hinged-state-classifier-crops
15
+ size_categories:
16
+ - 1K<n<10K
17
+ ---
18
+
19
+ # hinged-state-classifier-crops
20
+
21
+ Binary image classification dataset for **open vs. closed** state recognition of **hinged surgical instruments**.
22
+
23
+ ## Overview
24
+
25
+ This dataset contains cropped images of three hinged surgical tool categories:
26
+
27
+ - **CM** = clamp
28
+ - **NH** = needle holder
29
+ - **SH** = shear
30
+
31
+ The target classes are:
32
+
33
+ - **open**
34
+ - **closed**
35
+
36
+ It is intended for training and evaluating hinge-state classifiers in a two-stage surgical tool recognition pipeline, where an instrument is first detected and then classified as open or closed.
37
+
38
+ ## Structure
39
+
40
+ hinged_state_classifier_crops/
41
+ ├── train/
42
+ │ ├── open/
43
+ │ └── closed/
44
+ ├── val/
45
+ │ ├── open/
46
+ │ └── closed/
47
+ └── test/
48
+ ├── open/
49
+ └── closed/
50
+
51
+ ## Dataset size
52
+
53
+ Total images: **1512**
54
+
55
+ | Split | Open | Closed | Total |
56
+ |---|---:|---:|---:|
57
+ | Train | 603 | 606 | 1209 |
58
+ | Val | 75 | 71 | 146 |
59
+ | Test | 78 | 79 | 157 |
60
+ | **Total** | **756** | **756** | **1512** |
61
+
62
+ The dataset is fully balanced at the class level.
63
+
64
+ ## Global distribution
65
+
66
+ ### By tool
67
+
68
+ | Tool | Count |
69
+ |---|---:|
70
+ | CM | 504 |
71
+ | NH | 504 |
72
+ | SH | 504 |
73
+
74
+ ### By view
75
+
76
+ | View | Count |
77
+ |---|---:|
78
+ | CLO | 504 |
79
+ | OBL | 504 |
80
+ | TOP | 504 |
81
+
82
+ ### By background
83
+
84
+ | Background | Count |
85
+ |---|---:|
86
+ | BL | 378 |
87
+ | GR | 378 |
88
+ | TR | 378 |
89
+ | WH | 378 |
90
+
91
+ ## Filename convention
92
+
93
+ Images follow this naming pattern:
94
+
95
+ {TOOL}_{VIEW}_{BACKGROUND}_{STATE}_{INDEX}
96
+
97
+ Where:
98
+
99
+ - `TOOL`: `CM`, `NH`, `SH`
100
+ - `VIEW`: `CLO`, `OBL`, `TOP`
101
+ - `BACKGROUND`: `BL`, `GR`, `TR`, `WH`
102
+ - `STATE`: `OP`, `CL`
103
+
104
+ ## Validation
105
+
106
+ The dataset passed validation successfully:
107
+
108
+ - Expected total images: 1512
109
+ - Observed total images: 1512
110
+ - Problems found: 0
111
+ - Warnings found: 0
112
+ - Duplicate image-content groups: 0
113
+ - Cross-split duplicate image-content groups: 0
114
+
115
+ ## Intended use
116
+
117
+ This dataset is intended for:
118
+
119
+ - binary image classification of hinged surgical instrument state,
120
+ - benchmarking open/closed classifiers,
121
+ - evaluating robustness across viewpoints and backgrounds,
122
+ - use in multi-stage surgical tool recognition systems.