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 Android

ScTrackedObject.h
Go to the documentation of this file.
1 
11 #ifndef SC_TRACKED_OBJECT_H_
12 #define SC_TRACKED_OBJECT_H_
13 
14 #include <Scandit/ScConfig.h>
15 
17 
18 #if defined(__cplusplus)
19 extern "C" {
20 #endif
21 
25 typedef enum {
32 
39 typedef struct ScOpaqueTrackedObject ScTrackedObject;
42 
51 SC_EXPORT ScTrackedObjectType
52 sc_tracked_object_get_type(const ScTrackedObject *object);
53 
65 SC_EXPORT uint32_t
66 sc_tracked_object_get_id(const ScTrackedObject *object);
67 
68 
77 SC_EXPORT ScQuadrilateral
78 sc_tracked_object_get_location(const ScTrackedObject *object);
79 
80 #if defined(__cplusplus)
81 }
82 #endif
83 
84 #endif // SC_TRACKED_OBJECT_H_
ScTrackedObjectType sc_tracked_object_get_type(const ScTrackedObject *object)
Get type of the tracked object.
Recognition context interface.
A 2-dimensional polygon with 4 corners.
Definition: ScCommon.h:65
uint32_t sc_tracked_object_get_id(const ScTrackedObject *object)
Retrieve unique id for the tracked object.
Definition: ScTrackedObject.h:30
ScQuadrilateral sc_tracked_object_get_location(const ScTrackedObject *object)
Get the location quadrilateral of the tracked object.
ScTrackedObjectType
Type of the tracked object.
Definition: ScTrackedObject.h:25
Common definitions used throughout the ScanditSDK API.