Equals#

class deeptrack.features.Equals(value: float | Callable[[...], float] = 0, **kwargs: Dict[str, Any])#

Bases: ArithmeticOperationFeature

Determine whether input is equal to value.

This feature performs element-wise comparison (==) of the input.

Parameters#

valuePropertyLike[int or float], optional

The value to compare (==) with the input. Defaults to 0.

**kwargsAny

Additional keyword arguments passed to the parent constructor.