How can I fit shapes to my sensor data (e.g. CT scan mesh)? #867
-
As you know the process of building subject specific OpenSim model, it is necessary to have joint centers. For example, when you have a mesh file of femur which is segmented from medical images, the center of a sphere fitted to the femoral head would be hip joint center. Similarly, the axis of a cylinder fitted to femoral condyles would be knee flexion/extension axis. So, is there any way to:
These features would ease the process of building OpenSim models from bone geometries created via medical images segmentation software. Please find the following projects that do similar things via MATLAB: https://simtk.org/projects/subj-spec-model/ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
OpenSim Creator has basic facilities for fitting analytic geometry to meshes in an OpenSim model. The way that's done is:
At time of writing (v0.5.12), this is limited to fitting the entire mesh, not a manually-selected subset (as requested). The fitting algorithms are were ported to C++ from the MATLAB code that's in the supplementary information of this paper:
Practically speaking, if you want a "hacky" way to fit only part of a mesh, then you could:
|
Beta Was this translation helpful? Give feedback.
OpenSim Creator has basic facilities for fitting analytic geometry to meshes in an OpenSim model. The way that's done is:
Fit Analytic Geometry to This
menuSphere
)At time of writing (v0.5.12), this is limited to fitting the entire mesh, not a manually-selected subset (as requested). The fitting algorithms are were ported to C++ from the MATLAB code that's in the supplementary information of this paper:
Practica…