mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
/* |
|
* Copyright 1993-2010 NVIDIA Corporation. All rights reserved. |
|
* |
|
* NVIDIA Corporation and its licensors retain all intellectual |
|
* property and proprietary rights in and to this software and |
|
* related documentation and any modifications thereto. |
|
* Any use, reproduction, disclosure, or distribution of this |
|
* software and related documentation without an express license |
|
* agreement from NVIDIA Corporation is strictly prohibited. |
|
*/ |
|
#ifndef _testrectstddev_h_ |
|
#define _testrectstddev_h_ |
|
|
|
#include "NCVTest.hpp" |
|
#include "NCVTestSourceProvider.hpp" |
|
|
|
|
|
class TestRectStdDev : public NCVTestProvider |
|
{ |
|
public: |
|
|
|
TestRectStdDev(std::string testName, NCVTestSourceProvider<Ncv8u> &src, |
|
Ncv32u width, Ncv32u height, NcvRect32u rect, Ncv32f scaleFactor, |
|
NcvBool bTextureCache); |
|
|
|
virtual bool init(); |
|
virtual bool process(); |
|
virtual bool deinit(); |
|
virtual bool toString(std::ofstream &strOut); |
|
|
|
private: |
|
TestRectStdDev(const TestRectStdDev&); |
|
TestRectStdDev& operator=(const TestRectStdDev&); |
|
|
|
NCVTestSourceProvider<Ncv8u> &src; |
|
NcvRect32u rect; |
|
Ncv32u width; |
|
Ncv32u height; |
|
Ncv32f scaleFactor; |
|
|
|
NcvBool bTextureCache; |
|
}; |
|
|
|
#endif // _testrectstddev_h_
|
|
|