F_VN_GetRoi

F_VN_GetRoi 1:

Gets the coordinates of the region of interest (ROI) within the image.

Syntax

Definition:

FUNCTION F_VN_GetRoi : HRESULT
VAR_INPUT
    ipSrcImage : ITcVnImage;
END_VAR
VAR_IN_OUT
    stRoi      : TcVnRectangle_UDINT;
END_VAR
VAR_INPUT
    hrPrev     : HRESULT;
END_VAR

F_VN_GetRoi 2: Inputs

Name

Type

Description

ipSrcImage

ITcVnImage

Source image

hrPrev

HRESULT

HRESULT indicating the result of previous operations (If SUCCEEDED(hrPrev) equals false, no operation is executed.)

F_VN_GetRoi 3: In/Outputs

Name

Type

Description

stRoi

TcVnRectangle_UDINT

Returns the coordinates of the region of interest

F_VN_GetRoi 4: Return value

HRESULT

Weiterführende Informationen

Die Funktion F_VN_GetRoi zeigt an, welche Region Of Interest zurzeit auf dem Eingangsbild ipSrcImage gesetzt ist. Die Information wird z. B. benötigt, wenn Punkte in dem Bild in Relation zum Gesamtbild angegeben werden sollen oder wenn die ROI dynamisch vergrößert werden soll.

Anwendung

Das Beziehen eines Punktes auf die Koordinaten des Originalbildes sieht z. B. so aus:

hr := F_VN_ContourCenterOfMass(ipContour, aCenter, hr);
hr := F_VN_GetRoi(ipImageWork, stRoi, hr);
aCenter[0] := aCenter[0] + stRoi.nX;
aCenter[1] := aCenter[1] + stRoi.nY;

Verwandte Funktionen

Required License

TC3 Vision Base

System Requirements

Development environment

Target platform

PLC libraries to include

TwinCAT V3.1.4024.54 or later

PC or CX (x64) with PL50, e.g. Intel 4-core Atom CPU

Tc3_Vision