Basler SCOUT LIGHT User Manual Page 133

  • Download
  • Add to my manuals
  • Print
  • Page
    / 166
  • Table of contents
  • TROUBLESHOOTING
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 132
Standard Features
Basler scout light 125
9.11 Device Information Parameters
Each camera includes a set of "device information" parameters. These parameters provide some
basic information about the camera. The device information parameters include:
Device Vendor Name (read only) - contains the name of the camera’s vendor. For scout
cameras, this string will always indicate Basler as the vendor.
Device Model Name (read only) - contains the model name of the camera, for example,
slA1000-30fm.
Firmware Version (read only) - contains the version of the firmware in the camera.
Device ID (read only) - contains the serial number of the camera.
Device Scan Type (read only) - contains the scan type of the camera, for example, area scan.
Sensor Width (read only) - contains the physical width of the sensor in pixels.
Sensor Height (read only) - contains the physical height of the sensor.
Max Width (read only) - Indicates the camera’s maximum area of interest (AOI) width setting.
Max Height (read only) - Indicates the camera’s maximum area of interest (AOI) height setting.
You can read the values for all of the device information parameters or set the value of the Device
ID parameter from within your application software by using the pylon API. The following code
snippets illustrate using the API to read the parameters or write the Device ID:
// Read the Vendor Name parameter
Pylon::String_t vendorName = Camera.DeviceVendorName.GetValue();
// Read the Model Name parameter
Pylon::String_t modelName = Camera.DeviceModelName.GetValue();
// Read the Firmware Version parameter
Pylon::String_t firmwareVersion = Camera.DeviceFirmwareVersion.GetValue();
// Write and read the Device ID
Camera.DeviceID = "custom name";
Pylon::String_t deviceID = Camera.DeviceID.GetValue();
// Read the Sensor Width parameter
int64_t sensorWidth = Camera.SensorWidth.GetValue();
// Read the Sensor Height parameter
int64_t sensorHeight = Camera.SensorHeight.GetValue();
// Read the Max Width parameter
int64_t maxWidth = Camera.WidthMax.GetValue();
// Read the Max Height parameter
int64_t maxHeight = Camera.HeightMax.GetValue();
Page view 132
1 2 ... 128 129 130 131 132 133 134 135 136 137 138 ... 165 166

Comments to this Manuals

No comments