Page History
...
To read marker trajectories from a trc file into a TimeSeriesTableVec3, construct the a table by passing the filename into the TimeSeriesTableVec3 constructor. Afterwards, afterwords you can interrogate query the TimeSeriesTable for the actual data as shown in the code snippet below.
Code Block |
---|
>>> markerData = TimeSeriesTableVec3('markerdata.trc'); >>>numDataRows>>> numDataRows = markerData .getNumRows(); >>>numMarkersInTable>>> numMarkersInTable = markerData.getNumColumns(); |
...