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