Ocean
Loading...
Searching...
No Matches
Bullseyes.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 OCEAN_CV_DETECTOR_BULLSEYES_BULLSEYES_H
9#define OCEAN_CV_DETECTOR_BULLSEYES_BULLSEYES_H
10
11namespace Ocean
12{
13
14namespace CV
15{
16
17namespace Detector
18{
19
20namespace Bullseyes
21{
22
23/**
24 * @ingroup cvdetector
25 * @defgroup cvdetectorbullseyes Ocean Bullseye Library
26 * @{
27 * The Ocean Bullseyes Library implements a detector for bullseye patterns.
28 * @}
29 */
30
31/**
32 * @namespace Ocean::CV::Detector::Bullseyes Namespace of the bullseye code library.<p>
33 * The namespace Ocean::CV::Detector::Bullseyes is used in the entire Ocean Bullseye Library.
34 */
35
36// Defines OCEAN_CV_DETECTOR_BULLSEYES_EXPORT for dll export and import.
37#if defined(_WINDOWS) && defined(OCEAN_RUNTIME_SHARED)
38 #ifdef USE_OCEAN_CV_DETECTOR_BULLSEYES_EXPORT
39 #define OCEAN_CV_DETECTOR_BULLSEYES_EXPORT __declspec(dllexport)
40 #else
41 #define OCEAN_CV_DETECTOR_BULLSEYES_EXPORT __declspec(dllimport)
42 #endif
43#else
44 #define OCEAN_CV_DETECTOR_BULLSEYES_EXPORT
45#endif
46
47} // namespace Bullseyes
48
49} // namespace Detector
50
51} // namespace CV
52
53} // namespace Ocean
54
55#endif // OCEAN_CV_DETECTOR_BULLSEYES_BULLSEYES_H
std::vector< Bullseye > Bullseyes
Definition of a vector holding bullseyes.
Definition Bullseye.h:103
The namespace covering the entire Ocean framework.
Definition Accessor.h:15