BTK Matlab Wrapper
0.3dev.0
Matlab bindings for the Biomechanical ToolKit library (BTK)
|
et the unlock state of a metadata
md = btkSetMetaDataUnlock(h, idx, isunlocked)
md = btkSetMetaDataUnlock(h, idx, subidx, isunlocked)
md = btkSetMetaDataUnlock(h, idx, subidx, ..., isunlocked)
md = btkSetMetaDataUnlock(h, label, isunlocked)
md = btkSetMetaDataUnlock(h, label, sublabel, isunlocked)
md = btkSetMetaDataUnlock(h, label, sublabel, ..., isunlocked)
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. |
isunlocked | Integer (1 or 0) to set the metadata as unlocked or locked. |
md | Structure with the same format than the function btkGetMetaData. |
btkSetMetaDataUnlock(h, idx, isunlocked)
sets the unlock state of the metadata with the index idx
contained in the root. btkSetMetaDataUnlock(h, idx, subidx, isunlocked)
sets the unlock state of the metadata with the index subidx
contained in the metadata with the index idx
. btkSetMetaDataUnlock(h, idx, subidx, ..., isunlocked)
sets the unlock state of any metadata specified by the gives indices. btkSetMetaDataUnlock(h, label, isunlocked)
sets the unlock state of the metadata with the label label
contained in the root. btkSetMetaDataUnlock(h, label, sublabel, isunlocked)
sets the unlock state of the metadata with the label sublabel
contained in the metadata with the label label
. btkSetMetaDataUnlock(h, label, sublabel, ..., isunlocked)
sets the unlock state of any metadata specified by the given labels.