module documentation
FiftyOne operator registry.
Class |
|
Operator registry. |
Function | get |
Gets the operator with the given URI. |
Function | list |
Returns all available operators. |
Function | operator |
Checks if the given operator exists. |
Gets the operator with the given URI.
Parameters | |
operator | the operator URI |
enabled:True | whether to include only enabled operators (True) or only disabled operators (False) or all operators ("all") |
Returns | |
an fiftyone.operators.Operator | |
Raises | |
ValueError | if the operator is not found |
Returns all available operators.
Parameters | |
enabled:True | whether to include only enabled operators (True) or only disabled operators (False) or all operators ("all") |
builtin:"all" | whether to include only builtin operators (True) or only non-builtin operators (False) or all operators ("all") |
type:None | whether to include only "panel" or "operator" type
operators, or a specific fiftyone.operators.Operator
subclass to restrict to |
Returns | |
a list of fiftyone.operators.Operator instances |