Documentation for Face Intellect 7.3. Documentation for other versions of Intellect is available too.
Previous page Next page
Commands can be used in Intellect scripts (see Programming Guide) or sent directly to the core using the IIDK (see Intellect Integration Developer Kit (IIDK)).
The description of the FIRSERVER object commands:
Command | Description |
---|---|
GET_IMAGE | Getting the image by its ID |
SET_SOURCES | Rearranging the Recognition channel objects in the Intellect objects tree. The existing Recognition channel objects will be deleted, the new ones will be created and configured for the face detection objects whose IDs are specified in the sources<> parameter. Note. If the sources<> parameter contains non-existing IDs of face detection objects, the Recognition channel objects will be created with the default settings (as configured in Intellect) |
The list of the commands parameters:
Parameter | Parameter description |
---|---|
requestId<> | The request ID (is required to uniquely associate the request with the response on the client side) |
id<> | The image ID |
sources<> | The list of existing Face detection objects IDs |
The request example for getting the image by its ID:
DoReact(FIRSERVER|1|GET_IMAGE|id<052B723D-5C29-E811-88D3-005056C00008>,requestId<76C5B293-FD2F-4F25-B1D7-7B62442D2E89>);
In response to this request, a message will be received, where the "image" parameter will contain an image in the "base64" format (for the details on the event generated by the request, see FIRSERVER events).
The request example for rearranging the Recognition channel objects in the Intellect objects tree:
DoReact(FIRSERVER|1|SET_SOURCES|sources<2.1,3.1>);