Reads motion capture data exported from the OptiTrack -> Motive -> Venus3D
pipeline. The Venus3D CSV format uses #-prefixed header lines for metadata
and stores 3D marker coordinates in wide format with columns like 1(X),
1(Y), 1(Z), 2(X), etc.
Value
A PhysioExperiment with assays:
- position_x
X coordinates matrix (frames x markers)
- position_y
Y coordinates matrix (frames x markers)
- position_z
Z coordinates matrix (frames x markers)
The colData contains columns label (marker names) and type
("marker"). The metadata list contains format, source_file,
format_version, units, coordinate_system, and time (numeric vector
of frame times).
Details
Because Venus3D randomly reassigns marker labels across frames, downstream
use of trackMarkers() is typically required to establish consistent marker
identities.
See also
trackMarkers() for resolving Venus3D's random label assignment,
readMoCapCSV() for generic CSV formats, readMoCapAuto() for automatic
format detection.
Examples
if (FALSE) { # \dontrun{
pe <- readVenus3D("capture.csv")
# Assign meaningful marker names
pe <- readVenus3D("capture.csv",
marker_names = c("Hip", "Knee", "Ankle"))
# Follow with marker tracking to resolve label shuffling
pe_tracked <- trackMarkers(pe)
} # }