|
static biorbd::Model | readModelFile (const biorbd::utils::Path &path) |
| Create a biorbd model from a bioMod file. More...
|
|
static void | readModelFile (const biorbd::utils::Path &path, biorbd::Model *model) |
| Create a biorbd model from a bioMod file. More...
|
|
static std::vector< std::vector< biorbd::utils::Vector3d > > | readMarkerDataFile (const utils::Path &path) |
| Read a bioMark file, containing markers data. More...
|
|
static std::vector< biorbd::rigidbody::GeneralizedCoordinates > | readQDataFile (const biorbd::utils::Path &path) |
| Read a bioKin file, containing kinematics data. More...
|
|
static std::vector< biorbd::utils::Vector > | readActivationDataFile (const biorbd::utils::Path &path) |
| Read a bioMus fine, containing muscle activations data. More...
|
|
static std::vector< biorbd::utils::Vector > | readTorqueDataFile (const biorbd::utils::Path &path) |
| Read a bioTorque file containing generalized torques data. More...
|
|
static std::vector< biorbd::utils::Vector > | readGroundReactionForceDataFile (const biorbd::utils::Path &path) |
| Read a bioGRF file containing ground reaction force (GRF) data. More...
|
|
static void | readViconForceFile (const biorbd::utils::Path &path, std::vector< std::vector< unsigned int >> &frame, std::vector< unsigned int > &frequency, std::vector< std::vector< biorbd::utils::Vector3d >> &force, std::vector< std::vector< biorbd::utils::Vector3d >> &moment, std::vector< std::vector< biorbd::utils::Vector3d >> &cop) |
| Read a Vicon ASCII force file. More...
|
|
static std::vector< std::vector< biorbd::utils::SpatialVector > > | readViconForceFile (const biorbd::utils::String &path) |
| Read a Vicon ASCII force file. More...
|
|
static std::vector< std::vector< biorbd::utils::Vector3d > > | readViconMarkerFile (const biorbd::utils::Path &path, int nFramesToGet=-1) |
| Read a Vicon ASCII marker file (CSV formated) More...
|
|
static std::vector< std::vector< biorbd::utils::Vector3d > > | readViconMarkerFile (const biorbd::utils::Path &path, std::vector< biorbd::utils::String > &markOrder, int nFramesToGet=-1) |
| Read a Vicon ASCII marker file (CSV formated) More...
|
|
static biorbd::rigidbody::Mesh | readMeshFileBiorbdSegments (const biorbd::utils::Path &path) |
| Read a bioMesh file containing the meshing of a segment. More...
|
|
static biorbd::rigidbody::Mesh | readMeshFilePly (const biorbd::utils::Path &path) |
| Read a PLY file containing the meshing of a segment. More...
|
|
static biorbd::rigidbody::Mesh | readMeshFileObj (const biorbd::utils::Path &path) |
| Read a OBJ file containing the meshing of a segment. More...
|
|
Reader for bioMod files.
Definition at line 26 of file ModelReader.h.
Read a Vicon ASCII marker file (CSV formated)
- Parameters
-
path | The path of the file |
markOrder | The markers to keep |
nFramesToGet | The number of frames |
- Returns
- Returns the data
markOrder can be used for both changing the order of the marker to read and to skip some markers
If the number of frame asked is less than the total number of frames, frames are evenly skip while reading. To get all frames, nFramesToGet should be set to -1.
Definition at line 1416 of file ModelReader.cpp.