[VB]
objActiveDcam.OverlayPixel X, Y [C/C++]
HRESULT OverlayPixel( short X, short Y );
Data Types [VB]
X, Y : Integer
Parameters [C/C++]
X [in], Y [in]
Coordinates of the pixel relative to the image origin.
Return Values
S_OK
Success
E_FAIL
Failure.
Example
The following VB example overlays four red pixels on the live video:
ActiveDcam1.Acquire = True
ActiveDcam1.OverlayPixel 100,100
ActiveDcam1.OverlayPixel 100,200
ActiveDcam1.OverlayPixel 200,100
ActiveDcam1.OverlayPixel 200,200
ActiveDcam1.OverlayColor=RGB(255,0,0)
ActiveDcam1.Overlay= True
Remarks