Deprecation warning

Please note that this is outdated documentation for an older release of the Scandit Barcode Scanner SDK.

We are deprecating the 5.x API on all platforms (except Linux). Release 5.19 in April 2021 will be our final. Applications running 5.x will continue to work, and we will continue to release critical bug fixes and security patches only, for one year. We encourage you to migrate to 6.x and take advantage of our latest / advanced features and improved performance.

You'll find the updated documentation at: Data Capture SDK Documentation for iOS

SBSTrackedCode.h
Go to the documentation of this file.
1 //
2 // SBSTrackedCode.h
3 // ScanditBarcodeScanner
4 //
5 // Created by Luca Torella on 20.01.17.
6 // Copyright © 2017 Scandit AG. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "SBSCode.h"
11 
18 @interface SBSTrackedCode : SBSCode
19 
28 @property (nonatomic, readonly) SBSQuadrilateral predictedLocation;
29 
40 @property (nonatomic, readonly) NSTimeInterval deltaTimeForPrediction;
41 
50 @property (nonatomic, readonly) BOOL shouldAnimateFromPreviousToNextState;
51 
52 @end
SBSQuadrilateral predictedLocation
The predicted location of the tracked code.
Definition: SBSTrackedCode.h:28
Represents a recognized/localized barcode/2D code.
Definition: SBSCode.h:259
BOOL shouldAnimateFromPreviousToNextState
Whether the change in location should be animated.
Definition: SBSTrackedCode.h:50
Represents a recognized/localized barcode/2D code that is being tracked over multiple frames...
Definition: SBSTrackedCode.h:18
NSTimeInterval deltaTimeForPrediction
The delta time for the predicted location of the code in seconds.
Definition: SBSTrackedCode.h:40
Quadrilateral represented by 4 corners.
Definition: SBSCode.h:20