BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Set a metadata's description.
md = btkSetMetaDataDescription(h, idx, newdesc)
md = btkSetMetaDataDescription(h, idx, subidx, newdesc)
md = btkSetMetaDataDescription(h, idx, subidx, ..., newdesc)
md = btkSetMetaDataDescription(h, label, newdesc)
md = btkSetMetaDataDescription(h, label, sublabel, newdesc)
md = btkSetMetaDataDescription(h, label, sublabel, ..., newdesc)
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. |
newdesc | String with the new decription. |
md | Structure with the same format than the function btkGetMetaData. |
btkSetMetaDataDescription(h, idx, newdesc)
sets the description of the metadata with the index idx
contained in the root.btkSetMetaDataDescription(h, idx, subidx, newdesc)
sets the description of the metadata with the index subidx
contained in the metadata with the index idx
.btkSetMetaDataDescription(h, idx, subidx, ..., newdesc)
sets the description of any metadata specified by the gives indices.btkSetMetaDataDescription(h, label, newdesc)
sets the description of the metadata with the label label
contained in the rootbtkSetMetaDataDescription(h, label, sublabel, newdesc)
sets the description of the metadata with the label sublabel
contained in the metadata with the label label
.btkSetMetaDataDescription(h, label, sublabel, ..., newdesc)
sets the description of any metadata specified by the given labels.