Ocean
Loading...
Searching...
No Matches
TestMaskCreator.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_TESTSEGMENTATION_TEST_MASK_CREATOR_H
9#define META_OCEAN_TEST_TESTCV_TESTSEGMENTATION_TEST_MASK_CREATOR_H
10
12
14
15namespace Ocean
16{
17
18namespace Test
19{
20
21namespace TestCV
22{
23
24namespace TestSegmentation
25{
26
27/**
28 * This class implements a mask analyzer test.
29 * @ingroup testcvsegmentation
30 */
31class OCEAN_TEST_CV_SEGMENTATION_EXPORT TestMaskCreator
32{
33 public:
34
35 /**
36 * Tests all mask creator functions.
37 * @param width The width of the test frame in pixel, with range [32, infinity)
38 * @param height The height of the test frame in pixel, with range [32, infinity)
39 * @param testDuration Number of seconds for each test, with range (0, infinity)
40 * @param worker The worker object to distribute the computational load
41 * @param selector The test selector
42 * @return True, if succeeded
43 */
44 static bool test(const unsigned int width, const unsigned int height, const double testDuration, Worker& worker, const TestSelector& selector);
45
46 /**
47 * Tests the join masks function.
48 * @param width The width of the test frame in pixel, with range [1, infinity)
49 * @param height The height of the test frame in pixel, with range [1, infinity)
50 * @param testDuration Number of seconds for each test, with range (0, infinity)
51 * @param worker The worker object to distribute the computational load
52 * @return True, if succeeded
53 */
54 static bool testJoinMasks(const unsigned int width, const unsigned int height, const double testDuration, Worker& worker);
55};
56
57}
58
59}
60
61}
62
63}
64
65#endif // META_OCEAN_TEST_TESTCV_TESTSEGMENTATION_TEST_MASK_CREATOR_H
This class implements a mask analyzer test.
Definition TestMaskCreator.h:32
static bool testJoinMasks(const unsigned int width, const unsigned int height, const double testDuration, Worker &worker)
Tests the join masks function.
static bool test(const unsigned int width, const unsigned int height, const double testDuration, Worker &worker, const TestSelector &selector)
Tests all mask creator functions.
This class implements a test selector that parses test function strings and determines which tests sh...
Definition TestSelector.h:51
This class implements a worker able to distribute function calls over different threads.
Definition Worker.h:33
The namespace covering the entire Ocean framework.
Definition Accessor.h:15