YihengDeng commited on
Commit
14204c3
·
verified ·
1 Parent(s): 4e24406

add Data Card

Browse files
Files changed (1) hide show
  1. README.md +33 -1
README.md CHANGED
@@ -30,4 +30,36 @@ syncG/
30
  |-- masks/
31
  |-- test/
32
  |-- train/
33
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  |-- masks/
31
  |-- test/
32
  |-- train/
33
+ ```
34
+
35
+
36
+ ### Data Card
37
+
38
+ A reference table listing all annotation keys, their descriptions, and data types.
39
+
40
+
41
+ | **Field Name** | **Description** | **Data Type** |
42
+ | ------------------------- | ------------------------------------------------------------ | ------------------ |
43
+ | **file_name** | **Unique identifier prefix for the image file.** | **String** |
44
+ | **gauge_type** | **The category or type of the gauge (e.g., pressure, voltmeter).** | **String** |
45
+ | **width** | **Image width in pixels.** | **Integer** |
46
+ | **height** | **Image height in pixels.** | **Integer** |
47
+ | **ground_truth** | **The precise ground truth reading value of the gauge.** | **Float** |
48
+ | **long_interval_degree** | **Angle (in degrees) between adjacent major scale marks relative to the dial center.** | **Float** |
49
+ | **long_interval_value** | **The numerical difference in value between adjacent major scale marks.** | **Integer** |
50
+ | **long_num** | **Total number of major scale marks on the dial.** | **Integer** |
51
+ | **start_value** | **The initial (minimum) numerical value of the gauge scale.** | **Integer** |
52
+ | **small_interval** | **Number of minor scale subdivisions between two adjacent major marks.** | **Integer** |
53
+ | **text_interval** | **Frequency of label occurrence (number of major marks per labeled value).** | **Integer** |
54
+ | **pointer_rotate_degree** | **Deflection angle of the pointer from its initial position to the current reading.** | **Float** |
55
+ | **num_scalemark_before** | **Count of major scale marks preceding the current pointer position.** | **Integer** |
56
+ | **min_scalemark** | **The reading value of the major scale mark immediately preceding the pointer.** | **Integer** |
57
+ | **closest_scalemark** | **The reading value of the major scale mark spatially closest to the pointer.** | **Integer** |
58
+ | **ann_camera_location** | **The spatial coordinates [x, y, z] of the camera in the 3D scene.** | **List [Float]** |
59
+ | **homo_matrix** | **3×3 matrix parameters for image perspective correction (**homography matrix) | **List [Float]** |
60
+ | **dial_bbox_annotations** | **Bounding box coordinates [x_min,y_min,x_max,y_max] for the gauge dial.** | **List [Integer]** |
61
+ | **text_bbox_annotations** | **List of objects containing bounding boxes and values for numerical text labels.** | **List [Dict]** |
62
+ | **seg_annotations** | **Segmentation data (masks/polygons) for scale marks and pointers.** | **List [Dict]** |
63
+ | **keypoints_annotations** | **Keypoint** **coordinates for pointer (origin/tip) and scale marks.** | **List [Dict]** |
64
+ | **scene_name** | **Filename of the HDRI map used for background/lighting rendering.** | **String** |
65
+ | **seed** | **Random seed used for synthetic generation logic.** | **Integer** |