fiftyone.operators.constants#
FiftyOne operator constants.
Classes:
Choices for target view that an operator should operate on |
- class fiftyone.operators.constants.ViewTarget#
Bases:
object
Choices for target view that an operator should operate on
See
fiftyone.operators.types.ViewTargetProperty()
for details.Attributes:
Base view from which a generated view was created
Current view in the app
Entire dataset
Empty dataset view, i.e.,
ctx.dataset.view()
.Selected labels in the app view, if any.
Selected samples in the app view, if any.
- BASE_VIEW = 'BASE_VIEW'#
Base view from which a generated view was created
If the current view is a generated view such as
fiftyone.core.clips.ClipsView
,fiftyone.core.video.FramesView
, orfiftyone.core.patches.PatchesView
), base view is the semantic equivalent of “entire dataset” for these views. The base view is the view from which the generated view was created. For example,dataset.limit(51).to_frames("ground_truth").limit(10)
has a base view ofdataset.limit(51).to_frames("ground_truth")
- CURRENT_VIEW = 'CURRENT_VIEW'#
Current view in the app
- DATASET = 'DATASET'#
Entire dataset
- DATASET_VIEW = 'DATASET_VIEW'#
Empty dataset view, i.e.,
ctx.dataset.view()
.Note: unlikely to be useful in the typical case.
- SELECTED_LABELS = 'SELECTED_LABELS'#
Selected labels in the app view, if any.
- SELECTED_SAMPLES = 'SELECTED_SAMPLES'#
Selected samples in the app view, if any.