|
BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
Append a new metada into the given acquisition and (optionally) return an updated list of the metadata.
md = btkAppendMetaData(h, label)
md = btkAppendMetaData(h, label, sublabel)
md = btkAppendMetaData(h, label, sublabel, ...)
md = btkAppendMetaData(h, label, sublabel, ..., info) | h | Handle pointing to a C++ btk::Acquisition object. |
| label | String representing a metadata's label in the metadata's root. |
| sublabel | String representing a metadata's label contained in the metadata with the label label. |
| ... | Others strings to point on the desired metadata with any level of depth |
| info | Structure with the field format and values (see note #1).
|
| md | Structure with the same format than the function btkGetMetaData. |
btkAppendMetaData(h, label) appends a metadata with the label label to the root. This metadata has no child, nor information.btkAppendMetaData(h, label, sublabel, ...) appends a metadata with the label sublabel in another metadata with the label label. The metadata 'label' will be automatically generated if it doesn't exist. The metadata 'sublabel' has no child, nor information.btkAppendMetaData(h, label, sublabel, ..., info) appends a metadata with additional informations INFO corresponding to the metadata's values.label as a group and sublabel as a parameter. So the metadata has only 2 levels. This use was introduced in the C3D format.info should be build by using the function btkMetaDataInfo.
1.8.5