tlc.core.builtins.types¶

A module containing basic builtin types used throughout 3LC.

Modules and Packages¶

Module

Description

bb_crop_interface

bounding_box

Defines representations of bounding boxes in 3LC

segmentation_helper

Helper class for working with segmentation data in 3LC.

Package Contents¶

Classes¶

Class

Description

MetricTableInfo

A dictionary containing summary metadata about a metric table.

Data¶

Data

Description

MetricData

SampleData

API¶

MetricData = None¶
class MetricTableInfo¶

Bases: typing.TypedDict

A dictionary containing summary metadata about a metric table.

Initialize self. See help(type(self)) for accurate signature.

file_size: int = None¶

The size of the metric table in bytes.

row_count: int = None¶

The number of rows in the metric table.

stream_name: str = None¶

The stream name of the metric table.

url: str = None¶

The url of the metric table.

SampleData = None¶