Viam SDK
    Preparing search index...

    Interface BinaryDataCaptureUploadOptions

    Optional parameters for uploading binary sensor data.

    interface BinaryDataCaptureUploadOptions {
        datasetIds?: string[];
        fileExtension?: string;
        mimeType?: string;
        tags?: string[];
    }
    Index

    Properties

    datasetIds?: string[]

    Optional list of dataset IDs to add the data to.

    fileExtension?: string

    Optional file extension of the binary data including the period, for example ".jpg", ".png", or ".pcd".

    mimeType?: string

    Optional MIME type of the binary data (for example, "image/jpeg").

    If provided, the backend will use this value. Otherwise, it may derive the MIME type from the file extension.

    tags?: string[]

    Optional list of tags to allow for tag-based filtering when retrieving data.