Ocean
Loading...
Searching...
No Matches
Point.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_POINT_POINT_H
9#define META_OCEAN_TRACKING_POINT_POINT_H
10
12
13namespace Ocean
14{
15
16namespace Tracking
17{
18
19namespace Point
20{
21
22/**
23 * @ingroup tracking
24 * @defgroup trackingpoint Ocean Point Tracking Interface
25 * @{
26 * The Ocean Point Tracker Library allows to simply track points between several frames.
27 * @}
28 */
29
30/**
31 * @namespace Ocean::Tracking::Point Namespace of the Point Tracker library.<p>
32 * The Namespace Ocean::Tracking::Point is used in the entire Ocean Point Tracker Library.
33 */
34
35// Defines OCEAN_TRACKING_POINT_EXPORT for dll export and import.
36#if defined(_WINDOWS) && defined(OCEAN_RUNTIME_SHARED)
37 #ifdef USE_OCEAN_TRACKING_POINT_EXPORT
38 #define OCEAN_TRACKING_POINT_EXPORT __declspec(dllexport)
39 #else
40 #define OCEAN_TRACKING_POINT_EXPORT __declspec(dllimport)
41 #endif
42#else
43 #define OCEAN_TRACKING_POINT_EXPORT
44#endif
45
46}
47
48}
49
50}
51
52#endif // META_OCEAN_TRACKING_POINT_POINT_H
The namespace covering the entire Ocean framework.
Definition Accessor.h:15