class documentation
A panel.
Method | execute |
Executes the operator. |
Method | on |
Undocumented |
Method | on |
Undocumented |
Method | render |
Defines the panel's layout and events. |
Method | resolve |
Returns the resolved input property. |
Inherited from Operator
:
Method | __init__ |
Undocumented |
Method | add |
Adds secrets to the operator. |
Method | method |
Converts a method name to a URI. |
Method | resolve |
Returns the resolved forced delegation flag. |
Method | resolve |
Returns the resolved execution options. |
Method | resolve |
Returns the resolved output property. |
Method | resolve |
Returns the resolved placement of the operator. |
Method | resolve |
Returns the resolved input or output property. |
Method | to |
Returns a JSON representation of the operator. |
Instance Variable | plugin |
Undocumented |
Property | builtin |
Whether the operator is builtin. |
Property | config |
The OperatorConfig for the operator. |
Property | name |
Undocumented |
Property | uri |
The unique identifier of the operator: plugin_name/operator_name. |
Instance Variable | _builtin |
Undocumented |
Instance Variable | _plugin |
Undocumented |
Executes the operator.
Subclasses must implement this method.
Parameters | |
ctx | the fiftyone.operators.executor.ExecutionContext |
Returns | |
JSON serializable data, or None |
Defines the panel's layout and events.
This method is called after every panel event is called (on load, button callback, context change event, etc).
Parameters | |
ctx | the fiftyone.operators.executor.ExecutionContext |
Returns | |
a fiftyone.operators.types.Property |
Returns the resolved input property.
Subclasses can implement this method to define the inputs to the
operator. This method should never be called directly. Instead
use resolve_type
.
By default, this method is called once when the operator is created. If the operator is dynamic, this method is called each time the input changes.
Parameters | |
ctx | the fiftyone.operators.executor.ExecutionContext |
Returns | |
a fiftyone.operators.types.Property , or None |