Go to documentation repository
Documentation for Intellect 4.10.4. Documentation for other versions of Intellect is available too.
Previous page Next page
Messages sent to port 900 are passed to the video subsystem directly; for this reason, such messages have a different syntax.
Messages sent to the video subsystem have the following syntax:
OBJECT TYPE|OBJECT ID|ACTION [|PARAMETER<VALUE>]
Below is the syntax of messages that contain n parameters.
OBJECT TYPE|OBJECT ID|ACTION [|PARAMETER 1<VALUE>,PARAMETER 2<VALUE>,…,PARAMETER N<VALUE>]
Attention!
The message parameters are described in the table below.
Parameter | Description |
Object type | Object type (GRABBER, CAM, or MONITOR) |
Object ID | The object ID set during creation of the object in Intellect |
Action | Action (command) |
Parameter <Value> | Parameter name. The value is enclosed by angle brackets. |
Example 1. Setting camera 1 to recording mode.
CString msg = “CAM|1|REC”;
SendMsg (id,msg);
Example 2. Saving video from all cameras to local disk C.
CString msg = “GRABBER|1|SET_DRIVES|drives<C:\>” ;
SendMsg(id,msg);
Note.
Note.