BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Modify point's label and return updated points.
[points, pointsInfo] = btkSetPointLabel(h, index, newlabel)
[points, pointsInfo] = btkSetPointLabel(h, label, newlabel)
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. |
newlabel | String with the new label. |
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. |
btkSetPointLabel(h, idx, newlabel)
modifies the label of the point specified by the index idx
. btkSetPointLabel(h, label, newlabel)
modifies the label of the point specified by the label label
.