-
Notifications
You must be signed in to change notification settings - Fork 19
Add Face autocalibration. #133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
RedInJector
commented
Sep 17, 2025

- implementation of the same algorithm used in the legacy app
702b545
to
2c873a1
Compare
Also, I don't seem to have src/Baballonia/Views/CalibrationView.axaml checked out as part of this PR. Maybe rebase, see if that helps? |
{ | ||
if (expressions == null) return; | ||
if (expressions.Length == 0) return; | ||
Debug.Assert(expressions != null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove these Debug.Assert
s, or change them to throw an exception instead.
wait nvm |
FYI i wrote the algorithm and it worked on me, but wider deployment showed issues, Maybe a simple min max autocalibration with a slow decay on the min side (min side decays to 0.5 or something) would make it work better on more people? |