BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Remove a metada and return an updated list of the metada in the acquisition.
md = btkRemoveMetaData(h, idx)
md = btkRemoveMetaData(h, idx, subidx)
md = btkRemoveMetaData(h, idx, subidx, ...)
md = btkRemoveMetaData(h, label)
md = btkRemoveMetaData(h, label, sublabel)
md = btkRemoveMetaData(h, label, sublabel, ...)
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. |
md | Structure with the same format than the function btkGetMetaData. |
btkRemoveMetaData(h\, idx)
removes the metadata at the given index idx
contained in the metadata's root. btkRemoveMetaData(h\, idx, subidx)
removes the metadata contained at the index subidx
which is contained in the metadata with the index idx
. btkRemoveMetaData(h\, idx, subidx, ...)
removes any metadata specified by the given indices. btkRemoveMetaData(h\, label)
removes the metadata with the label label
contained in the metadata's root. btkRemoveMetaData(h\, label, sublabel)
removes the metadata with the label sublabel
contained in the metadata with the label label
. btkRemoveMetaData(h\, label, sublabel, ...)
removes any metadata specified by the given labels.