StructuralFeature#

class deeptrack.features.StructuralFeature(_input: Any = [], **kwargs: Dict[str, Any])#

Bases: Feature

Provides the structure of a feature set without input transformations.

Because it does not add new properties or affect data distribution, StructuralFeature is often used as a logical or organizational tool rather than a direct image transformer.

Since StructuralFeature doesn’t override __init__ or get, it just inherits the behavior of Feature.

Attributes#

__property_verbosity__int

Controls whether this feature’s properties are included in the output image’s property list. A value of 2 means do not include.

__distributed__bool

If set to False, the feature’s get method is called on the entire list rather than each element individually.