UsamaSQ commited on
Commit
3347acb
·
verified ·
1 Parent(s): 7a0ba1a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -4,6 +4,7 @@ task_categories:
4
  - time-series-forecasting
5
  - robotics
6
  - video-classification
 
7
  tags:
8
  - blender
9
  - camera-tracking
@@ -70,6 +71,8 @@ Individual tracking attempts with complete metrics.
70
  - **Feature Density:** Count of trackable features per 9-grid region (from Blender's detect_features)
71
  - **Time Series:** Per-frame active tracks, dropout rates, velocity profiles
72
  - **Track Lifecycle:** Per-marker survival, jitter, reprojection error
 
 
73
 
74
  **Example Session:**
75
 
@@ -102,6 +105,12 @@ Individual tracking attempts with complete metrics.
102
  "top-left": 0.42
103
  }
104
  }
 
 
 
 
 
 
105
  }
106
  ```
107
 
@@ -221,7 +230,7 @@ This data is ideal for training models related to:
221
 
222
  ### Hyperparameter Optimization
223
 
224
- Predicting optimal tracking settings (pattern size, search size) based on footage characteristics and motion analysis.
225
 
226
  ### Outlier Detection
227
 
 
4
  - time-series-forecasting
5
  - robotics
6
  - video-classification
7
+ - feature-extraction
8
  tags:
9
  - blender
10
  - camera-tracking
 
71
  - **Feature Density:** Count of trackable features per 9-grid region (from Blender's detect_features)
72
  - **Time Series:** Per-frame active tracks, dropout rates, velocity profiles
73
  - **Track Lifecycle:** Per-marker survival, jitter, reprojection error
74
+ - **Track Healing:** Anchor tracks, healing attempts, gap interpolation results
75
+ - **Track Averaging:** Merged segment counts
76
 
77
  **Example Session:**
78
 
 
105
  "top-left": 0.42
106
  }
107
  }
108
+ "healing_stats": {
109
+ "candidates_found": 5,
110
+ "heals_attempted": 3,
111
+ "heals_successful": 2,
112
+ "avg_gap_frames": 15.0
113
+ }
114
  }
115
  ```
116
 
 
230
 
231
  ### Hyperparameter Optimization
232
 
233
+ Predicts optimal tracking settings (Search Size, Pattern Size, Correlation, Motion Models) based on footage characteristics and motion analysis.
234
 
235
  ### Outlier Detection
236