跳转到内容

Basler Vision Connector Messaging: Loading the UserSet Configuration#

With the GenICam protocol you can store parameter sets on the camera, and with the Basler Vision Connector you can save, load, and define the default user set to be used on camera restart.

To upload a configured UserSet on the camera, you can send the LoadUserSet message.

JSON Payload#

Field Optional 键入 描述
TransactionID String Transaction identification
操作 String Method called. Fixed value: LoadUserSet
DeviceID String Device identification
UserSet String/Integer (64-bit signed) {Value} or {IntValue} of the User Set Object as defined in Retrieving Available User Sets
{
  "TransactionID": "23423423563456",
  "Action": "LoadUserSet",
  "DeviceID": "548451887",
  "UserSet": "UserSet2"
}

Response Object#

Field Optional 键入 描述
TransactionID String Transaction identification
ReturnCode Integer (32-bit unsigned) Message code following Message Codes
消息 String Response message
{
  "TransactionID": "1232116",
  "ReturnCode": 0,
  "Message": "Userset loaded."
}