-
Notifications
You must be signed in to change notification settings - Fork 2
Introduced new LogIntermediateStats boolean to allow the user to decide whether to only output the final value or each value every 100 frame #15
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: master
Are you sure you want to change the base?
Conversation
FranceBB
commented
Nov 23, 2025
- Updated maxcllfind.h: Added the new logIntermediateStats member variable and updated the constructor signature in the header.
- Updated maxcllfind.cpp: Updated the constructor definition, the parameter parsing in the function and added a conditional check to GetFrame() to decide whether to output the results every 100 frames or just the end value calculated based on the logIntermediateStats (by default is true for backwards compatibility with the current behavior).
- Updated Documentation with info and examples about the usage of the new LogIntermediateStats boolean.
Updated Documentation with LogIntermediateStats
Added the new logIntermediateStats member variable and updated the constructor signature in the header.
Updated the constructor definition, the parameter parsing in the function, and added a conditional check to GetFrame() to decide whether to output the results every 100 frames or just the end value calculated based on the logIntermediateStats (by default is true for backwards compatibility with the current behavior).
|
Example: Stats at frame 1: Stats at frame 101: Stats at frame 201: Stats at frame 301: Stats at frame 401: Stats at frame 501: Stats at frame 601: Stats at frame 701: Stats at frame 801: Stats at frame 901: Stats at frame 1001: Stats at frame 1101: Stats at frame 1201: Stats at frame 1301: Stats at frame 1401: Stats at frame 1501: Stats at frame 1601: Stats at frame 1701: Stats at frame 1801: Stats at frame 1901: Stats at frame 2001: Stats at frame 2101: Stats at frame 2201: Stats at frame 2301: Stats at frame 2401: Stats at frame 2501: Stats at frame 2601: Stats at frame 2701: Stats at frame 2801: Stats at frame 2901: Stats at frame 3001: Setting the new boolean to false makes the function only return the last valueMaxCLL: 400.011, raw value: 42767 0.652583 at X 0 Y 1101 at frame 7 In this last case, FALL Average is disabled. |