Skip to content

Commit

Permalink
Reverting untested changes to the dynamics_pass
Browse files Browse the repository at this point in the history
  • Loading branch information
keenon committed Oct 1, 2024
1 parent b47579c commit fcbe260
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions server/engine/src/dynamics_pass/dynamics_pass.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,13 @@ def dynamics_pass(subject: nimble.biomechanics.SubjectOnDisk):
# .setIncludeInertias(True)
# .setIncludeCOMs(True)
.setIncludeBodyScales(True)
.setIncludeMarkerOffsets(True)
.setIncludeMarkerOffsets(False)
.setIncludePoses(True)
.setJointWeight(0.0) # We have to disable this, because we don't have the joint info
.setMarkerWeight(50.0)
.setRegularizeAnatomicalMarkerOffsets(0.1)
.setRegularizeTrackingMarkerOffsets(0.01)
# .setRegularizeAnatomicalMarkerOffsets(0.1)
# .setRegularizeTrackingMarkerOffsets(0.01)
# .setRegularizeBodyScales(1.0)
.setRegularizeBodyScales(1.0)
.setRegularizePoses(0.01)
.setRegularizeJointAcc(1e-6))
Expand Down

0 comments on commit fcbe260

Please sign in to comment.