Ocean
TestCVDetector.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_TEST_TESTCV_TESTDETECTOR_TESTCVDETECTOR_H
9 #define META_OCEAN_TEST_TESTCV_TESTDETECTOR_TESTCVDETECTOR_H
10 
12 
13 namespace Ocean
14 {
15 
16 namespace Test
17 {
18 
19 namespace TestCV
20 {
21 
22 namespace TestDetector
23 {
24 
25 /**
26  * @ingroup testcv
27  * @defgroup testcvdetector Ocean Test CV Detector Library
28  * @{
29  * The Ocean Test CV Detector Library provides several functions to test the performance and validation of the computer vision detector functionalities.
30  * The library is platform independent.
31  * @}
32  */
33 
34 /**
35  * @namespace Ocean::Test::TestCV::TestDetector Namespace of the CV Detector Test library.<p>
36  * The Namespace Ocean::Test::TestCV::TestDetector is used in the entire Ocean CV Detector Test Library.
37  */
38 
39 // Defines OCEAN_TEST_CV_DETECTOR_EXPORT for dll export and import.
40 #if defined(_WINDOWS) && defined(OCEAN_RUNTIME_SHARED)
41  #ifdef USE_OCEAN_TEST_CV_DETECTOR_EXPORT
42  #define OCEAN_TEST_CV_DETECTOR_EXPORT __declspec(dllexport)
43  #else
44  #define OCEAN_TEST_CV_DETECTOR_EXPORT __declspec(dllimport)
45  #endif
46 #else
47  #define OCEAN_TEST_CV_DETECTOR_EXPORT
48 #endif
49 
50 /**
51  * Tests the entire Computer Vision Detector library.
52  * @param testDuration Number of seconds for each test, with range (0, infinity)
53  * @param worker The worker object to distribute some computation on as many CPU cores as defined in the worker object.
54  * @param testImageFilename The filename of the image to be used for testing
55  * @param testFunctions Optional name of the functions to be tested
56  * @return True, if the entire test succeeded
57  * @ingroup testcvdetector
58  */
59 OCEAN_TEST_CV_DETECTOR_EXPORT bool testCVDetector(const double testDuration, Worker& worker, const std::string& testImageFilename, const std::string& testFunctions = std::string());
60 
61 /**
62  * Tests the entire Computer Vision Detector library.
63  * This function returns directly as the actual test is invoked in an own thread.<br>
64  * Use this function in intendet for non-console applications like e.g., mobile devices.
65  * @param testDuration Number of seconds for each test, with range (0, infinity)
66  * @param testImageFilename The filename of the image to be used for testing
67  * @param testFunctions Optional name of the functions to be tested
68  * @ingroup testcvdetector
69  */
70 OCEAN_TEST_CV_DETECTOR_EXPORT void testCVDetectorAsynchron(const double testDuration, const std::string& testImageFilename, const std::string& testFunctions = std::string());
71 
72 }
73 
74 }
75 
76 }
77 
78 }
79 
80 #endif // META_OCEAN_TEST_TESTCV_TESTDETECTOR_TESTCVDETECTOR_H
This class implements a worker able to distribute function calls over different threads.
Definition: Worker.h:33
OCEAN_TEST_CV_DETECTOR_EXPORT bool testCVDetector(const double testDuration, Worker &worker, const std::string &testImageFilename, const std::string &testFunctions=std::string())
Tests the entire Computer Vision Detector library.
OCEAN_TEST_CV_DETECTOR_EXPORT void testCVDetectorAsynchron(const double testDuration, const std::string &testImageFilename, const std::string &testFunctions=std::string())
Tests the entire Computer Vision Detector library.
The namespace covering the entire Ocean framework.
Definition: Accessor.h:15