Data Capture Context
Defined under the namespace Scandit.Datacapture.Core
- DataCaptureContextCreationOptions
interface DataCaptureContextCreationOptions
Added in version 6.8.0
- DataCaptureContext
class DataCaptureContext
Added in version 6.8.0
Data capture context is the main class for running data-capture related tasks. The context manages one or more capture modes, such as BarcodeCapture that perform the recognition. The context itself acts as a scheduler, but does not provide any interfaces for configuring data capture capabilities. Configuration and result handling is handled by the data capture modes directly.
Each data capture context has exactly one frame source (typically a built-in camera). The frame source delivers the frames on which the capture modes should perform recognition on. When a new capture context is created, it’s frame source is null and must be initialized for recognition to work.
Typically a DataCaptureView is used to visualize the ongoing data capture process on screen together with one or more overlays. However it’s also possible to use the data capture context without a view to perform off-screen processing.
Related topics: Get Started, Core Concepts <https://docs.scandit.com/core-concepts>.
- forLicenseKey(licenseKey)
static forLicenseKey(licenseKey: string): DataCaptureContext
Added in version 6.8.0
Constructs a data capture context with the provided license key.
- forLicenseKeyWithOptions(licenseKey, options)
static forLicenseKeyWithOptions(licenseKey: string, options: DataCaptureContextCreationOptions | null): DataCaptureContext
Added in version 6.8.0
Constructs a data capture context with the provided license key and additional options.
- forLicenseKeyWithSettings(licenseKey, settings)
static forLicenseKeyWithSettings(licenseKey: string, settings: DataCaptureContextSettings | null): DataCaptureContext
Added in version 6.8.0
Constructs a data capture context with the provided license key and optional settings.
- deviceID
static get deviceID(): string | null
Added in version 6.8.0
The unique identifier of the device as used by the Scandit Data Capture SDK. This identifier does not contain any device identifying information that would be usable outside of the context of the Scandit Data Capture SDK itself.
- setFrameSource(frameSource)
setFrameSource(frameSource: FrameSource | null): Promise<
void
>Added in version 6.8.0
Set the frame source of this data capture context.
Frame sources produce frames to be processed by the data capture context. The user typically doesn’t create their own frame sources, but use one of the frame sources provided by the Scandit Data Capture SDK. Typical frame sources are web cams, or built-in cameras of a mobile device.
Setting the frame source to null will effectively stop recognition of this capture context.
- frameSource
get frameSource(): FrameSource | null
Added in version 6.8.0
Readonly attribute to get the current frame source. To change the frame source use setFrameSource().
- addListener(listener)
addListener(listener: DataCaptureContextListener):
void
Added in version 6.8.0
Adds the listener to this data capture context. Context listeners receive events when new data capture modes are added, or the frame source changes.
In case the same listener is already observing this instance, calling this method will not add the listener again.
- removeListener(listener)
removeListener(listener: DataCaptureContextListener):
void
Added in version 6.8.0
Removes a previously added listener from this data capture context.
In case the listener is not currently observing this instance, calling this method has no effect.
- addMode(mode)
addMode(mode: DataCaptureMode):
void
Added in version 6.8.0
Adds the specified data capture mode to this capture context. Please note that it is not possible to add a mode associated with a context to a different context. If the mode is already associated with this context, this call has no effect.
A data capture context can only be associated with one mode at a time. If multiple modes are associated with the same context, the context will not process any frames and report an error.
- removeMode(mode)
removeMode(mode: DataCaptureMode):
void
Added in version 6.8.0
Removes the mode from this capture context. If the capture mode is currently not associated to the context, this call has no effect.
- removeAllModes()
removeAllModes():
void
Added in version 6.8.0
Removes all modes from this capture context. If there currently are no captures modes associated to the context, this call has no effect.
- dispose()
dispose():
void
Added in version 6.8.0
Disposes/releases this data capture context. This frees most associated resources and can be used to save some memory. Disposed/released contexts cannot be used for recognition anymore, trying will result in a ContextStatus with error code 1025. Data capture modes and listeners remain untouched.
This method may be called multiple times on the same context. Further calls have no effect.
- applySettings(settings)
applySettings(settings: DataCaptureContextSettings): Promise<
void
>Added in version 6.8.0
Applies the given settings to the data capture context.