Data Capture Context Frame Listener

Defined in framework ScanditDataCaptureCore

SDCDataCaptureContextFrameListener
@protocol SDCDataCaptureContextFrameListener <NSObject>

Added in version 6.0.0

Protocol for observing/listening to frame processing related events of a data capture context.

To observe changes of the data capture context’s frame processing, one or more SDCDataCaptureContextFrameListener may be added. These listeners provide hooks into different parts of the data capture context.

Frame processing only happens if at least one SDCDataCaptureMode is added.

- context:willProcessFrame:
- (void)context:(SDCDataCaptureContext *)context
willProcessFrame:(id<SDCFrameData>)frame

Added in version 6.0.0

Called when a frame will be processed.

- context:didProcessFrame:
- (void)context:(SDCDataCaptureContext *)context
didProcessFrame:(id<SDCFrameData>)frame

Added in version 6.0.0

Called when a frame has been processed.