Ocean
Offline.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Meta Platforms, Inc. and affiliates.
3  *
4  * This source code is licensed under the MIT license found in the
5  * LICENSE file in the root directory of this source tree.
6  */
7 
8 #ifndef META_OCEAN_TRACKING_OFFLINE_OFFLINE_H
9 #define META_OCEAN_TRACKING_OFFLINE_OFFLINE_H
10 
12 
13 namespace Ocean
14 {
15 
16 namespace Tracking
17 {
18 
19 namespace Offline
20 {
21 
22 /**
23  * @ingroup tracking
24  * @defgroup trackingoffline Ocean Offline Tracking Library
25  * @{
26  * The Ocean Offline Tracker Library implements a 6DOF computer vision tracker that is designed for post processing.
27  * Offline tracker are not expected to be applied in real-time applications as these trackers need the entire video information in-advance.<br>
28  * An offline tracker applies several individual iterations to improve the tracking accuracy and robustness.<br>
29  * Thus, a main feature of an offline tracker is that it uses the CV::FrameProviderInterface as input for the visual information.
30  * @see FeatureTracker6DOF, FeatureMap.
31  * @}
32  */
33 
34 /**
35  * @namespace Ocean::Tracking::Offline Namespace of the Offline Tracker library.<p>
36  * The Namespace Ocean::Tracking::Offline is used in the entire Ocean Offline Tracker Library.
37  */
38 
39 // Defines OCEAN_TRACKING_OFFLINE_EXPORT for dll export and import.
40 #if defined(_WINDOWS) && defined(OCEAN_RUNTIME_SHARED)
41  #ifdef USE_OCEAN_TRACKING_OFFLINE_EXPORT
42  #define OCEAN_TRACKING_OFFLINE_EXPORT __declspec(dllexport)
43  #else
44  #define OCEAN_TRACKING_OFFLINE_EXPORT __declspec(dllimport)
45  #endif
46 #else
47  #define OCEAN_TRACKING_OFFLINE_EXPORT
48 #endif
49 
50 }
51 
52 }
53 
54 }
55 
56 #endif // META_OCEAN_TRACKING_OFFLINE_OFFLINE_H
The namespace covering the entire Ocean framework.
Definition: Accessor.h:15