class documentation

Exporter for image or video datasets whose location data and labels are stored in GeoJSON format.

See :ref:`this page <GeoJSONDataset-export>` for format details.

Parameters
export_dirthe directory to write the export. This has no effect if data_path and labels_path are absolute paths
data_path

an optional parameter that enables explicit control over the location of the exported media. Can be any of the following:

  • a folder name like "data" or "data/" specifying a subfolder of export_dir in which to export the media
  • an absolute directory path in which to export the media. In this case, the export_dir has no effect on the location of the data
  • a JSON filename like "data.json" specifying the filename of the manifest file in export_dir generated when export_media is "manifest"
  • an absolute filepath specifying the location to write the JSON manifest file when export_media is "manifest". In this case, export_dir has no effect on the location of the data

If None, the default value of this parameter will be chosen based on the value of the export_media parameter

labels_path

an optional parameter that enables explicit control over the location of the exported labels. Can be any of the following:

  • a filename like "labels.json" specifying the location in export_dir in which to export the labels
  • an absolute filepath to which to export the labels. In this case, the export_dir has no effect on the location of the labels

If None, the labels will be exported into export_dir using the default filename

export_media

controls how to export the raw media. The supported values are:

  • True: copy all media files into the output directory
  • False: don't export media
  • "move": move all media files into the output directory
  • "symlink": create symlinks to the media files in the output directory
  • "manifest": create a data.json in the output directory that maps UUIDs used in the labels files to the filepaths of the source media, rather than exporting the actual media

If None, the default value of this parameter will be chosen based on the value of the data_path parameter

rel_diran optional relative directory to strip from each input filepath to generate a unique identifier for each media. When exporting media, this identifier is joined with data_path to generate an output path for each exported media. This argument allows for populating nested subdirectories that match the shape of the input paths. The path is converted to an absolute path (if necessary) via fiftyone.core.storage.normalize_path
abs_pathswhether to store absolute paths to the images in the exported labels
image_formatthe image format to use when writing in-memory images to disk. By default, fiftyone.config.default_image_ext is used
location_field

the name of the field containing the location data for each sample. Can be any of the following:

  • The name of a fiftyone.core.fields.GeoLocation field
  • The name of a fiftyone.core.fields.GeoLocations field
  • None, in which case there must be a single fiftyone.core.fields.GeoLocation field on the samples, which is used by default
property_makersan optional dict mapping sample field names to functions that convert the field values to property values to be stored in the properties field of the GeoJSON Feature for the sample. By default, no properties are written
omit_none_fieldswhether to omit None-valued Sample fields from the output properties
pretty_printwhether to render the JSON in human readable format with newlines and indentations
Method __init__ Undocumented
Method close Performs any necessary actions after the last sample has been exported.
Method export_sample Exports the given sample to the dataset.
Method log_collection Logs any relevant information about the fiftyone.core.collections.SampleCollection whose samples will be exported.
Method setup Performs any necessary setup before exporting the first sample in the dataset.
Instance Variable abs_paths Undocumented
Instance Variable data_path Undocumented
Instance Variable export_media Undocumented
Instance Variable image_format Undocumented
Instance Variable labels_path Undocumented
Instance Variable location_field Undocumented
Instance Variable omit_none_fields Undocumented
Instance Variable pretty_print Undocumented
Instance Variable property_makers Undocumented
Instance Variable rel_dir Undocumented
Instance Variable _features Undocumented
Instance Variable _location_field Undocumented
Instance Variable _media_exporter Undocumented

Inherited from DatasetExporter (via GenericSampleDatasetExporter):

Method __enter__ Undocumented
Method __exit__ Undocumented

Inherited from ExportPathsMixin (via GenericSampleDatasetExporter, DatasetExporter):

Static Method _parse_data_path Helper function that computes default values for the data_path and export_media parameters supported by many exporters.
Static Method _parse_labels_path Helper function that computes default values for the labels_path parameter supported by many exporters.
def __init__(self, export_dir=None, data_path=None, labels_path=None, export_media=None, rel_dir=None, abs_paths=False, image_format=None, location_field=None, property_makers=None, omit_none_fields=True, pretty_print=False): (source)
def close(self, *args): (source)

Performs any necessary actions after the last sample has been exported.

This method is called when the exporter's context manager interface is exited, DatasetExporter.__exit__.

Parameters
*argsthe arguments to DatasetExporter.__exit__
def export_sample(self, sample): (source)

Exports the given sample to the dataset.

Parameters
samplea fiftyone.core.sample.Sample
def log_collection(self, sample_collection): (source)

Logs any relevant information about the fiftyone.core.collections.SampleCollection whose samples will be exported.

Subclasses can optionally implement this method if their export format can record information such as the fiftyone.core.collections.SampleCollection.info of the collection being exported.

By convention, this method must be optional; i.e., if it is not called before the first call to export_sample, then the exporter must make do without any information about the fiftyone.core.collections.SampleCollection (which may not be available, for example, if the samples being exported are not stored in a collection).

Parameters
sample_collectionthe fiftyone.core.collections.SampleCollection whose samples will be exported
def setup(self): (source)

Performs any necessary setup before exporting the first sample in the dataset.

This method is called when the exporter's context manager interface is entered, DatasetExporter.__enter__.

abs_paths: False = (source)

Undocumented

data_path: None = (source)

Undocumented

export_media: None = (source)

Undocumented

image_format: None = (source)

Undocumented

labels_path: None = (source)

Undocumented

location_field: None = (source)

Undocumented

omit_none_fields: True = (source)

Undocumented

pretty_print: False = (source)

Undocumented

property_makers: None = (source)

Undocumented

Undocumented

_features: list = (source)

Undocumented

_location_field = (source)

Undocumented

_media_exporter = (source)

Undocumented