SBSMatrixScanOverlay.h
Go to the documentation of this file.
1 //
2 // SBSMatrixScanOverlay.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 02.03.18.
6 // Copyright © 2018 Scandit. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @class SBSTrackedCode;
12 @class SBSBarcodePicker;
13 
14 NS_ASSUME_NONNULL_BEGIN
15 
27 
32 @property (nonatomic, weak, nullable) SBSBarcodePicker *picker;
33 
39 
49 - (void)addCode:(SBSTrackedCode *)code withIdentifier:(NSNumber *)identifier;
50 
57 - (void)updateCode:(SBSTrackedCode *)code withIdentifier:(NSNumber *)identifier;
58 
64 - (void)removeCodeWithIdentifier:(NSNumber *)identifier;
65 
66 @end
67 
68 NS_ASSUME_NONNULL_END
void removeAllAugmentations()
Remove augmentations that are part of the MatrixScanOverlay.
Controls the camera and orchestrates the barcode scanning process.
Definition: SBSBarcodePicker.h:145
SBSBarcodePicker * picker
The SBSBarcodePicker instance.
Definition: SBSMatrixScanOverlay.h:32
Represents a recognized/localized barcode/2D code that is being tracked over multiple frames...
Definition: SBSTrackedCode.h:18
The protocol overlays need to conform to.
Definition: SBSMatrixScanOverlay.h:26