Gets the percentage of the subject's markers that are labeled.
The Issues map displays the percentage of markers that are labeled as a percentage of the total number of markers in the subject's labeling skeleton (see Get an overview with the time bar Issues map
, in Getting Started with Vicon Shogun |
). This command enables access to this information.
Data Retrieval
getPercentSubjectLabeled 'subjectName or all' |
Name | Type | Required | Comments |
---|---|---|---|
subjectName | string | yes | The name of the subject or all. |
None
float, with range 0.0 to 100.0
// Get percent labeled of current subject at current frame
string $cs = `getCurrentSubject`;
float $pl = `getPercentSubjectLabeled $cs`;
print $pl;
// Get percent labeled of all subjects at current frame
float $pl = `getPercentSubjectLabeled "all"`;
print $pl;
// Get percent labeled of paul at current frame
float $pl = `getPercentSubjectLabeled "paul"`;
print $pl;