2017-11-05 21:48:40 +08:00
|
|
|
// This file is part of OpenCV project.
|
|
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
|
|
// of this distribution and at http://opencv.org/license.html.
|
2011-02-10 04:55:11 +08:00
|
|
|
#ifndef __OPENCV_TEST_PRECOMP_HPP__
|
|
|
|
#define __OPENCV_TEST_PRECOMP_HPP__
|
|
|
|
|
2017-11-05 21:48:40 +08:00
|
|
|
#include <functional>
|
|
|
|
#include <numeric>
|
|
|
|
|
2013-03-13 20:22:44 +08:00
|
|
|
#include "opencv2/ts.hpp"
|
|
|
|
#include "opencv2/calib3d.hpp"
|
2011-02-10 04:55:11 +08:00
|
|
|
|
|
|
|
namespace cvtest
|
|
|
|
{
|
|
|
|
void Rodrigues(const Mat& src, Mat& dst, Mat* jac=0);
|
|
|
|
}
|
|
|
|
|
2017-11-05 21:48:40 +08:00
|
|
|
namespace opencv_test {
|
|
|
|
CVTEST_GUARD_SYMBOL(Rodrigues)
|
|
|
|
} // namespace
|
|
|
|
|
2011-02-10 04:55:11 +08:00
|
|
|
#endif
|