EFrame::EFrame

Namespace: Euresys::Open_eVision

[C++]

void EFrame(
)

void EFrame(
   float centerX,
   float centerY,
   float angle,
   float scale
)

void EFrame(
   const EPoint& center,
   float angle,
   float scale
)

void EFrame(
   const EFrame& frame
)

Parameters

centerX

Abscissa of the origin point of the frame.

centerY

Ordinate of the origin point of the frame.

angle

Orientation of the frame.

scale

Horizontal sensor resolution.

center

Coordinates of the origin point of the frame.

frame

Pre-existing EFrame object used by the copy constructor.

EFrame.EFrame

Constructs a EFrame object.

Namespace: Euresys.Open_eVision

[C#]

void EFrame(
)

void EFrame(
   float centerX,
   float centerY,
   float angle,
   float scale
)

void EFrame(
   EPoint center,
   float angle,
   float scale
)

void EFrame(
   EFrame frame
)

Parameters

centerX

Abscissa of the origin point of the frame.

centerY

Ordinate of the origin point of the frame.

angle

Orientation of the frame.

scale

Horizontal sensor resolution.

center

Coordinates of the origin point of the frame.

frame

Pre-existing EFrame object used by the copy constructor.

EFrame.__init__

Constructs a EFrame object.

Module: open_evision

[Python]

__init__() -> None

__init__(
    centerX: float
    centerY: float
    angle: float
    scale: float
) -> None

__init__(
    centerX: float
    centerY: float
    angle: float
) -> None

__init__(
    centerX: float
    centerY: float
) -> None

__init__(
    center: EPoint
    angle: float
    scale: float
) -> None

__init__(
    frame: EFrame
) -> None

Parameters

centerX

Abscissa of the origin point of the frame.

centerY

Ordinate of the origin point of the frame.

angle

Orientation of the frame.

scale

Horizontal sensor resolution.

center

Coordinates of the origin point of the frame.

frame

Pre-existing EFrame object used by the copy constructor.