I need to have the position of force plate corners in c3d files. Is there any method to access these data?
This method works for BTK package:
Code: Select all
acq = btkReadAcquisition(c3dpath);
meta = btkGetMetaData(acq);
origin = meta.children.FORCE_PLATFORM.children.ORIGIN.info.values;
corners = meta.children.FORCE_PLATFORM.children.CORNERS.info.values;
Your help would be greatly appreciated.
Regards