BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Set a metadata's label.
md = btkSetMetaDataLabel(h, idx, newlabel)
md = btkSetMetaDataLabel(h, idx, subidx, newlabel)
md = btkSetMetaDataLabel(h, idx, subidx, ..., newlabel)
md = btkSetMetaDataLabel(h, label, newlabel)
md = btkSetMetaDataLabel(h, label, sublabel, newlabel)
md = btkSetMetaDataLabel(h, label, sublabel, ..., newlabel)
h | Handle pointing to a C++ btk::Acquisition object. |
idx | Integer specifying the index of a metadata. |
subidx | Integer specifying the index of a metadata. |
label | String specifying the label of a metadata. |
sublabel | String specifying the label of a metadata. |
... | Others integers and/or strings to select the metadata to remove. |
newlabel | String with the new label. |
md | Structure with the same format than the function btkGetMetaData. |
btkSetMetaDataLabel(h, idx, newlabel)
sets the label of the metadata with the index idx
contained in the root. btkSetMetaDataLabel(h, idx, subidx, newlabel)
sets the label of the metadata with the index subidx
contained in the metadata with the index idx
. btkSetMetaDataLabel(h, idx, subidx, ..., newlabel)
sets the label of any metadata specified by the gives indices. btkSetMetaDataLabel(h, label, newlabel)
sets the label of the metadata with the label label
contained in the root. btkSetMetaDataLabel(h, label, sublabel, newlabel)
sets the label of the metadata with the label sublabel
contained in the metadata with the label label
. btkSetMetaDataLabel(h, label, sublabel, ..., newlabel)
sets the label of any metadata specified by the given labels.