mrpro.data.Limits

class mrpro.data.Limits(min: int = 0, max: int = 0, center: int = 0)[source]

Bases: object

Limits dataclass with min, max, and center attributes.

__init__(min: int = 0, max: int = 0, center: int = 0) None
classmethod from_ismrmrd(limit_type: limitType) Self[source]

Create Limits from ismrmrd.limitType.

center: int

Center.

property length: int

Length of the limits.

max: int

Upper boundary.

min: int

Lower boundary.