CameraConfiguration constructor

CameraConfiguration({
  1. double horizontalFOV = 0.0,
  2. double verticalFOV = 0.0,
  3. int frameWidth = 0,
  4. int frameHeight = 0,
  5. ImagePixelFormat pixelFormat = ImagePixelFormat.unknown,
  6. double frameRate = 0.0,
  7. OrientationType orientation = OrientationType.unknown,
  8. double focalLengthHorizontal = 0.0,
  9. double focalLengthVertical = 0.0,
  10. double focalLengthMinimum = 0.0,
  11. double physicalSensorWidth = 0.0,
  12. double physicalSensorHeight = 0.0,
  13. double exposure = 0.0,
  14. double minExposure = 0.0,
  15. double maxExposure = 0.0,
  16. double exposureTargetOffset = 0.0,
  17. double isoValue = 0.0,
  18. double minIso = 0.0,
  19. double maxIso = 0.0,
})

Constructor for CameraConfiguration

All values are optional and have default fallbacks.

Implementation

CameraConfiguration({
  this.horizontalFOV = 0.0,
  this.verticalFOV = 0.0,
  this.frameWidth = 0,
  this.frameHeight = 0,
  this.pixelFormat = ImagePixelFormat.unknown,
  this.frameRate = 0.0,
  this.orientation = OrientationType.unknown,
  this.focalLengthHorizontal = 0.0,
  this.focalLengthVertical = 0.0,
  this.focalLengthMinimum = 0.0,
  this.physicalSensorWidth = 0.0,
  this.physicalSensorHeight = 0.0,
  this.exposure = 0.0,
  this.minExposure = 0.0,
  this.maxExposure = 0.0,
  this.exposureTargetOffset = 0.0,
  this.isoValue = 0.0,
  this.minIso = 0.0,
  this.maxIso = 0.0,
});