precomp.hpp 625 B

1234567891011121314151617181920212223
  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. #ifndef __OPENCV_DNN_SUPERRES_PRECOMP_HPP__
  5. #define __OPENCV_DNN_SUPERRES_PRECOMP_HPP__
  6. #include <iostream>
  7. #include <vector>
  8. #include <memory>
  9. #include <string>
  10. #include <map>
  11. #include <numeric>
  12. #include <algorithm>
  13. #include "opencv2/core.hpp"
  14. #include <opencv2/core/utils/logger.hpp>
  15. #include "opencv2/dnn.hpp"
  16. #include "opencv2/imgproc.hpp"
  17. #include "opencv2/dnn_superres.hpp"
  18. #endif // __OPENCV_DNN_SUPERRES_PRECOMP_HPP__