countNonZero & boundingRect tests - added first versions

This commit is contained in:
Alexander Reshetnikov
2012-01-19 00:22:22 +00:00
parent a43c47d6cf
commit a3d2020db0
2 changed files with 410 additions and 0 deletions

View 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(); }