최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 eye tracking 은 user gaze direction 의 measure — pupil/cornea reflection 또는 ML model 의 사용". 2026 의 mainstream: Apple Vision Pro, Meta Quest 3S Pro, PSVR2. 매 foveated rendering, gaze-based UI selection, accessibility (ALS), UX research 의 enables.
매 핵심
매 Sensing Methods
PCCR (Pupil Center Corneal Reflection): IR LED illumination + IR camera. Sub-degree accuracy, dedicated HW (Tobii, Vision Pro).
Webcam-based ML: WebGazer.js, MediaPipe Iris. ~3-5° accuracy, no special HW.
Fixations: stable gaze (>100ms) — what user actually reads.
Saccades: rapid eye movement between fixations.
Smooth pursuit: tracking moving target.
매 응용
Foveated rendering (high-res only at gaze point — VR perf 4-10x).
Gaze + pinch UI selection (Apple Vision Pro paradigm).
Accessibility: gaze-typing for ALS/locked-in patients.
UX research: heatmaps, attention analysis.
Driver monitoring (drowsiness detection).
💻 패턴
WebGazer.js (browser, no HW)
importwebgazerfrom'webgazer';awaitwebgazer.setRegression('ridge').setGazeListener((data,timestamp)=>{if(!data)return;console.log('gaze:',data.x,data.y);// screen px
}).begin();// User must calibrate by clicking around