BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Modify point's description and return updated points.
[points, pointsInfo] = btkSetPointDescription(h, index, newdesc)
[points, pointsInfo] = btkSetPointDescription(h, label, newdesc)
h | Handle pointing to a C++ btk::Acquisition object. |
index | Integer containing the index of the point to modify. |
label | String containing the label of the point to modify. |
newdesc | String with the new description. |
points | Updated list of points. Its format is the same than using the function btkGetPoints. |
pointsInfo | Updated informations related to the points. Its format is the same than using the function btkGetPoints. |
btkSetPointDescription(h, idx, newdesc)
modifies the description of the point specified by the index idx
. btkSetPointDescription(h, label, newdesc)
modifies the description of the point specified by the label label
.