Tutorial
Measure canthal tilt in 60 seconds
The angle is the rise of the outer corner relative to the inner corner, after the photo is given a face-relative horizontal.
- 01Level the photoCamera at eye level. Face the lens. Both corners visible.
- 02Mark inner cornerThe medial canthus, next to the nose.
- 03Mark outer cornerThe lateral canthus, toward the ear.
- 04Read the anglePositive means the outer corner is higher.
Fig. 05 — Manual measurement
Drag the corners
The live number uses the same signed angle as the scanner.
+7.7°
Drag either corner, or focus a point and use the arrow keys. Positive means the outer corner is higher.
The formula
In a browser, y increases downward. If the outer corner is higher on the screen, its y is smaller. The rise used here is inner y minus outer y, so a higher outer corner produces a positive rise.
angle = atan2(rise, run)
Run is the horizontal distance between the corners. Rise is innerY − outerY after the points have been rotated to remove head roll. A mirror that flips left and right does not flip the sign, because the run is an absolute distance and the rise still compares the two heights.
A numeric example
Suppose the leveled corners are 100 pixels apart and the outer corner is 8 pixels higher. Rise = 8, run = 100. atan2(8, 100) is about 4.6°. That is a positive direction. If the outer corner were 8 pixels lower, rise = −8 and the angle would be about −4.6°.
Why the image horizontal can be wrong
Roll is a lean of the head in the picture plane. Mild roll can be removed by rotating the landmarks back to the face midline. The inner-canthus line is not used for that, because the two inner corners can sit at different heights.[1]
Pitch is looking up or down. Yaw is turning left or right. Both change perspective. This tool rejects large pitch and yaw instead of pretending to undo them. The automatic points come from MediaPipe Face Landmarker.[2]
The methodology page records the reference choice, the mirror rule, and the limits.
Or measure from a photo
The scanner places the four corners, then lets you move them.
Use your own photo
Front-facing · Eye-level · Neutral expression · Good lighting
Local processingYour image stays on this device.How privacy worksReferences
- 01
Diagnostic analysis of vertical orbital dystopia and canthal tilt for surgical correction
PubMed ↗ - 02
Face landmark detection guide
Documentation ↗