Go to documentation repository
Documentation for Axxon One 2.0. Documentation for other versions of Axxon One is available too.
Previous page Next page
Get the list of detection tool parameters
To get the list of detection tool parameters, do the following:
Use ListUnits to request the required detection tool.
Request body:{ "method":"axxonsoft.bl.config.ConfigurationService.ListUnits", "data":{ "unit_uids": ["hosts/D-COMPUTER/AVDetector.2"] } }
Get the response. It will have all parameters of the detection tool.
Response example:The list of the detection tool parameters is received.
Make a request to change the configuration of the detection tool main parameter
To make a request to change the configuration of the detection tool main parameter, do the following:
Select the required main parameter.
For example, “Minimal similarity”.where{ "id": "plateProbMin", "name": "Minimal similarity", "description": "Specify in % the minimal similarity to the template required for recognition.", "category": "", "type": "int32", "readonly": false, "internal": false, "range_constraint": { "min_int": 0, "max_int": 100, "default_int": 40 }, "value_int32": 40 }
- id—detection tool parameter ID;
value—parameter value.
Note
The value parameter must be used as in the response.
For example, "value_int32": 40.
- "value_int32"—integer type;
- "value_string"—string type;
- "value_bool"—boolean type, accepting only True or False.
Note
If the parameter has a range of the available values, you should set the value within the defined range.
Make a request for editing.
Request example:{ "method": "axxonsoft.bl.config.ConfigurationService.ChangeConfig", "data": { "changed": [ { "uid": "hosts/D-COMPUTER/AVDetector.2", "type": "AVDetector", "properties": [ { "id": "plateProbMin", "value_int32": 100 } ] } ] } }
Request to change the configuration of the detection tool main parameter is made.
Make a request to change the configuration of an optional detection tool parameter
To make a request to change the configuration of an optional detection tool parameter, do the following:
Select the required optional parameter.
For example, "Detection area (rectangle)".where
- uid—detection tool ID;
- type—detection tool type;
- id—detection tool parameter ID;
value—parameter value.
Note
The value parameter must be used as in the response.
For example, "value_int32": 40.
- "value_int32"—integer type;
- "value_string"—string type;
- "value_bool"—boolean type, accepting only True or False.
Note
If the parameter has a range of the available values, you should set the value within the defined range.
Make a request for editing.
Request example:{ "method": "axxonsoft.bl.config.ConfigurationService.ChangeConfig", "data": { "changed": [ { "uid": "hosts/D-COMPUTER/AVDetector.2/VisualElement.19aa889c-a00b-470c-9d7f-765fbc49e5c2", "type": "VisualElement", "properties": [ { "id": "rectangle", "value_rectangle": { "x": 0.21, "y": 0.41, "w": 0.58, "h": 0.88, "index": 0 } } ] } ] } }
Request to change the configuration of an optional detection tool parameter is made.