ImageData Objects
file_type
file_size
signed_url
DataRow Objects
dict style member functions and the property accessors and setters is discouraged.
WARNING: Do NOT use the .data member of this class. Its usage could corrupt the correctness of the
datastructure.
uid
title
data_type
created_at
frames_per_second
None as a frames_per_second
field is not applicable.
duration
None as a duration field is not applicable.
client_metadata
width
None for data types of
IMG_GROUP () where
is_image_sequence () is False, because
each image in this group can have a different dimension. Inspect the
images () to get the height of individual images.
height
None for data types of
IMG_GROUP () where
is_image_sequence () is False, because
each image in this group can have a different dimension. Inspect the
images () to get the height of individual images.
file_link
DataType.DICOM then this returns None as no single file is associated with the
series.
signed_url
file_size
file_type
images_data
is_optimised_image_group
None for other data types.
DEPRECATED: This method is deprecated and will be removed in the upcoming library version.
Please use is_image_sequence() instead
is_image_sequence
None for other data types.
For more details refer to the
:ref:documentation on image sequences <https://docs.encord.com/docs/annotate-supported-data#image-sequences>
backing_item_uuid
refetch_data
signed_url- If True, this will fetch a generated signed url of the data asset.images_data_fetch_options- If not None, this will fetch the image data of the data asset. You can additionally specify what to fetch with the ImagesDataFetchOptions class.client_metadata- If True, this will fetch the client metadata of the data asset.
save
DataRows Objects
DatasetInfo Objects
Dataset Objects
__init__
dict style member functions and the property accessors and setters is discouraged.
WARNING: Do NOT use the .data member of this class. Its usage could corrupt the correctness of the
datastructure.
AddPrivateDataResponse Objects
CreateDatasetResponse Objects
__init__
dict style member functions and the property accessors and setters is discouraged.
WARNING: Do NOT use the .data member of this class. Its usage could corrupt the correctness of the
datastructure.
StorageLocation Objects
NEW_STORAGE
This is a placeholder for a new storage location that is not yet supported by your SDK version. Please update your SDK to the latest version.DatasetType
For backwards compatibilityDatasetData Objects
SignedVideoURL Objects
SignedImageURL Objects
SignedImagesURL Objects
SignedAudioURL Objects
SignedDicomURL Objects
SignedDicomsURL Objects
Video Objects
ImageGroup Objects
Image Objects
SingleImage Objects
Audio Objects
Images Objects
ReEncodeVideoTask Objects
DatasetAccessSettings Objects
fetch_client_metadata
Whether client metadata should be retrieved for eachdata_row.
ImagesDataFetchOptions Objects
fetch_signed_urls
Whether to fetch signed urls for each individual image. Only set this to true if you need to download the images.LongPollingStatus Objects
PENDING
Job will automatically start soon (waiting in queue) or already started processing.DONE
Job has finished successfully (possibly with errors ifignore_errors=True).
If ignore_errors=False was specified in :meth:encord.dataset.Dataset.add_private_data_to_dataset_start, the job will only have the status DONE` if there were no errors.
If ignore_errors=True was specified in add_private_data_to_dataset_start(),
the job will always show the status DONE once complete and will never show ERROR
status if this flag was set to True. There could be errors that were ignored.
Information about number of errors and stringified exceptions is available in the
units_error_count: int and errors: List[str] attributes.
ERROR
Job has completed with errors. This can only happen ifignore_errors was set to False.
Information about errors is available in the units_error_count: int and errors: List[str] attributes.
CANCELLED
Job was cancelled explicitly by the user through the Encord UI or via the Encord SDK using theadd_data_to_folder_job_cancel method.
In the context of this status:
- The job may have been partially processed, but it was explicitly interrupted before completion by a user action.
- Cancellation can occur either manually through the Encord UI or programmatically using the SDK
method
add_data_to_folder_job_cancel. - Once a job is cancelled, no further processing will occur, and any processed data before the cancellation will be available.
- The presence of cancelled data units (
units_cancelled_count) indicates that some data upload units were interrupted and cancelled before completion. - If
ignore_errorswas set toTrue, the job may continue despite errors, and cancellation will only apply to the unprocessed units.

