test_precomp.hpp 712 B

123456789101112131415161718192021222324
  1. // This file is part of OpenCV project.
  2. // It is subject to the license terms in the LICENSE file found in the top-level directory
  3. // of this distribution and at http://opencv.org/license.html
  4. // This code is also subject to the license terms in the LICENSE_KinectFusion.md file found in this module's directory
  5. // This code is also subject to the license terms in the LICENSE_WillowGarage.md file found in this module's directory
  6. #ifndef __OPENCV_TEST_PRECOMP_HPP__
  7. #define __OPENCV_TEST_PRECOMP_HPP__
  8. #include <opencv2/ts.hpp>
  9. #include <opencv2/rgbd.hpp>
  10. #include <opencv2/calib3d.hpp>
  11. #ifdef HAVE_OPENCL
  12. #include <opencv2/core/ocl.hpp>
  13. #endif
  14. namespace opencv_test {
  15. using namespace cv::rgbd;
  16. }
  17. #endif