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