countNonZero & boundingRect tests - added first versions
This commit is contained in:
28
modules/imgproc/test/test_boundingrect.cpp
Normal file
28
modules/imgproc/test/test_boundingrect.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
#include "test_precomp.hpp"
|
||||
#include <time.h>
|
||||
|
||||
using namespace cv;
|
||||
using namespace std;
|
||||
|
||||
class CV_BoundingRectTest: public cvtest::ArrayTest
|
||||
{
|
||||
public:
|
||||
CV_BoundingRectTest();
|
||||
~CV_BoundingRectTest();
|
||||
|
||||
protected:
|
||||
void run (int);
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
CV_BoundingRectTest::CV_BoundingRectTest() {}
|
||||
CV_BoundingRectTest::~CV_BoundingRectTest() {}
|
||||
|
||||
void CV_BoundingRectTest::run(int)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
TEST (Imgproc_BoundingRect, accuracy) { CV_BoundingRectTest test; test.safe_run(); }
|
Reference in New Issue
Block a user