/
selectByMarkerRadius
selectByMarkerRadius
Description
Selects markers by marker radius. Markers have a radius channel. When reconstructing in Shogun Post, it's possible for reconstruction to place the radius of the marker at each frame on the radius channel. This command allows markers with an average radius between the min and max radius arguments to be selected. This can be useful for selecting all face markers or finger markers separately from body markers, even when the markers are unlabeled.
Functional area
Selection
Command syntax
Syntax
selectByMarkerRadius minRadius maxRadius[-a] [-r] [-childOf string] |
Arguments
Name | Type | Required | Comments |
---|---|---|---|
minRadius | float | yes | Markers with a radius smaller then this value are not selected. |
maxRadius | float | yes | Markers with a radius larger then this value are not selected. |
Flags
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
a | 0 | — | r | Adds to the current selection. |
r | 0 | — | a | Removes from the current selection. |
childOf | 1 | string | — | Selects only markers that are a child of the given module. |
Return value
void
Examples
// Select all markers with a radius between 2 and 6 under the // character named Bob. selectByMarkerRadius 2.0 6.0 -childOf "Bob";
Additional information
Related commands
- select
- selectabilityOn
- selectBranch
- selectByName
- selectByPart
- selectBySide
- selectByType
- selectChildren
- selectParent
- selectSet
- selectTree
- setPrimary
, multiple selections available,