ljchang commited on
Commit
2c3d032
·
verified ·
1 Parent(s): 6ebe423

Upload cross_tool_methodology.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. cross_tool_methodology.md +22 -3
cross_tool_methodology.md CHANGED
@@ -188,9 +188,28 @@ normalized gaze); (2) the **FT_S floating-target session** sweeps ±49° yaw /
188
  pitch, wider than the screen-target sessions usually benchmarked; (3) these are
189
  general-purpose facial-analysis tools, not dedicated cross-dataset gaze nets.
190
  So the absolute number is inflated vs literature; the relative ordering is what
191
- holds. A normalized-protocol pass (apply EYEDIAP's head-pose + intrinsics
192
- normalization, use screen-target sessions) is the way to get literature-comparable
193
- numbers see `tools/*/run_gaze_normalized.py`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
 
195
  > Reproduce: `tools/<tool>/run_accuracy.py` (OF3/PyAFAR), `run_modalities.py`
196
  > (LibreFace), `run_gaze.py` + `run_pyfeat_modalities.py` (py-feat). Consolidated
 
188
  pitch, wider than the screen-target sessions usually benchmarked; (3) these are
189
  general-purpose facial-analysis tools, not dedicated cross-dataset gaze nets.
190
  So the absolute number is inflated vs literature; the relative ordering is what
191
+ holds.
192
+
193
+ **We ran the normalized-protocol pass too** (Sugano/Zhang data-normalization:
194
+ warp each face to a canonical virtual camera using EYEDIAP's head pose +
195
+ intrinsics, predict in the normalized frame — `shared/build_eyediap_normalized.py`).
196
+ It barely moved the numbers:
197
+
198
+ | Protocol | py-feat v2 | OpenFace 3.0 | LibreFace |
199
+ |---|:---:|:---:|:---:|
200
+ | camera-frame (raw crop) | 20.0° | 21.3° | 23.7° |
201
+ | **normalized** | **19.4°** | 21.5° | 28.1° |
202
+
203
+ py-feat stays marginally best under **both** protocols. Normalization didn't
204
+ help because **FT_S is a static-head session** — the head is already frontal, so
205
+ the normalization warp is near-identity. (It slightly hurt LibreFace, whose
206
+ landmark/geometric gaze dislikes the tight 448² crop.) So the ~20° is **robust,
207
+ not a frame artifact** — it's the genuine cross-dataset error of these
208
+ general-purpose tools on a wide-range floating-target session, ~2× the
209
+ gaze-specialist cross-dataset SOTA (~8–10°). The remaining gap would close with
210
+ EYEDIAP's screen-target (CS/DS) sessions (smaller gaze range) and dedicated
211
+ gaze nets — but the relative ordering (the three within a few °, py-feat ahead)
212
+ is stable across raw, normalized, and ETH-XGaze frames alike.
213
 
214
  > Reproduce: `tools/<tool>/run_accuracy.py` (OF3/PyAFAR), `run_modalities.py`
215
  > (LibreFace), `run_gaze.py` + `run_pyfeat_modalities.py` (py-feat). Consolidated