Camera Settings
Defined in library scandit_datacapture_core
- CameraPosition
Added in version 6.7.0
- worldFacing
Added in version 6.7.0
The camera is attached at the back of the device and is facing away from the user.
- userFacing
Added in version 6.7.0
The camera is attached on the front of the device and facing towards the user.
- unspecified
Added in version 6.7.0
The camera position is unspecified.
- VideoResolution
Added in version 6.7.0
- hd
Added in version 6.7.0
Resolution is 1280x720.
- fullHd
Added in version 6.7.0
Resolution is 1920x1080.
- uhd4k
Added in version 6.7.0
Resolution is 3840x2160. Please note: Usage of this resolution is not part of every license. If you encounter issues, please contact us at support@scandit.com.
- FocusRange
Added in version 6.7.0
Enumeration of possible focus ranges to use. This can be used to restrict the auto-focus system to only consider objects in a certain range to focus on.
- full
Added in version 6.7.0
Use the full focus range supported by the camera.
- near
Added in version 6.7.0
Only focus on objects that are near to the camera.
- far
Added in version 6.7.0
Only focus on objects that are far from the camera.
- FocusGestureStrategy
Added in version 6.7.0
Enumeration of possible focus gesture strategies to use.
- none
Added in version 6.7.0
No effect when performing a focus gesture.
- manual
Added in version 6.7.0
Focus on PoI and only change with next focus gesture.
- manualUntilCapture
Added in version 6.7.0
Focus on PoI and reset to previous focus strategy on capture.
- autoOnLocation
Added in version 6.7.0
Continuously focus on the location of the gesture and only change with next focus gesture.
- CameraSettings
class CameraSettings
Added in version 6.7.0
Holds camera-specific settings such as preferred resolution, maximum frame rate etc. The defaults are chosen such that they work for a wide variety of use cases. You may apply custom settings to further optimize scan performance for your particular use case. There is typically no need to customize the camera settings beyond changing the preferred resolution.
For best performance use the camera settings returned by the capture mode you are using, e.g. BarcodeCapture.recommendedCameraSettings, or BarcodeTracking.recommendedCameraSettings etc.
Holds camera related settings such as preview resolution and maximum frame rate to use.
- preferredResolution
VideoResolution preferredResolution
Added in version 6.7.0
The preferred resolution to use for the camera. The camera will use the resolution that is closests to the resolution preference. For example, if only lower resolutions than the preferred resolution are available, the highest available resolution will be used.
The resolution chosen by the camera only takes the preferredResolution into account, it does not consider the resolution limit of your license key. When the device selects a resolution that is larger than what you have licensed, the data capture context will report a license status error.
The default value is VideoResolution.auto.
- zoomFactor
double zoomFactor
Added in version 6.7.0
The zoom factor to use for the camera. This value is a multiplier, a value of 1.0 means no zoom, while a value of 2.0 doubles the size of the image, but halves the field of view.
Values less than 1.0 are treated as 1.0. Values greater than the maximum available zoom factor are clamped to the maximum accepted value.
The default zoom factor is 1.0.
- shouldPreferSmoothAutoFocus
bool shouldPreferSmoothAutoFocus
Added in version 6.8.0
Whether to prefer smooth auto-focus. The default settings have this turned off. Enable it to switch to a smoother (but potentially less reliable) auto-focus strategy. For some devices, this property has no effect.
- focusRange
FocusRange focusRange
Added in version 6.7.0
The focus range to primarily use, if supported by the device.
On Android changing this property has no effect.
- focusGestureStrategy
FocusGestureStrategy focusGestureStrategy
Added in version 6.7.0
The focus gesture strategy to use.
- zoomGestureZoomFactor
double zoomGestureZoomFactor
Added in version 6.7.0
The zoom factor to move to when the zoom in gesture was performed. This value is a multiplier, a value of 1.0 means no zoom, while a value of 2.0 doubles the size of the image, but halves the field of view. See also zoomFactor.
The default zoom factor for the zoom in gesture is 2.0.
- setProperty(name, value)
void
setProperty<T
>(String name,T
value)Added in version 6.7.0
Set camera property to the provided value. Use this method to set properties that are not yet part of a stable API. Properties set through this method may or may not be used or change in a future release.
- getProperty(name)
T
getProperty<T
>(String name)Added in version 6.7.0
Retrieves the value of a previously set property. In case the property does not exist, an ArgumentException is thrown.