-
Notifications
You must be signed in to change notification settings - Fork 12
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
Add a .ini option to skip the initial calibration and just use zero offset #67
Comments
Clearly then it make sense to have this option enabled for all the "simulated" robots, or at least the one in which the simulated FT sensors do not have any offset to compensate. : ) |
That's really cool! I remember when I was young and naive that I spent two hours before understanding that |
I have a question regarding this. I am trying to bypass the initial calibration with simulation by turning a flag on/off from the configuration file. While doing this, I noted that there is a relevant flag
computeCalibration() method.
Does this computeCalibration() method have to be called every iteration ? As done in
or needs to be called only once? Also. would it be fine to call endCalibration() at the point where I reset the offsets directly? |
That attribute can be directly set to
It needs to be called at avery run, but it does nothing if the calibration is not active:
I would simply create a method or set directly |
The initial calibration can be skipped in order to use zero offsets for FT sensors at startup by setting a flag The PR #72 was merged. Closing this issue. |
Users of
whole-body-dynamics
tipically execute theresetOffset
command at the beginning of the simulation, to set the offset of the FT sensors in thewhole-body-dynamics
to zero. This is both boring and error-prone, as any manual step it may be erroneously skipped. For this reason, it would make sense to have an option in the.ini
configuration file ofwhole-body-dynamics
to automatically skip the initial calibration in https://github.com/robotology/whole-body-estimators/blob/v0.2.1/devices/wholeBodyDynamics/WholeBodyDynamicsDevice.cpp#L1181, and instead use the zero offset (as done in https://github.com/robotology/whole-body-estimators/blob/v0.2.1/devices/wholeBodyDynamics/WholeBodyDynamicsDevice.cpp#L2122 ).cc @GiulioRomualdi @Giulero @gabrielenava @HosameldinMohamed @prashanthr05
The text was updated successfully, but these errors were encountered: