gapi.hpp 932 B

12345678910111213141516171819202122232425262728293031323334
  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. //
  5. // Copyright (C) 2018 Intel Corporation
  6. #ifndef OPENCV_GAPI_HPP
  7. #define OPENCV_GAPI_HPP
  8. #include <memory>
  9. /** \defgroup gapi G-API framework
  10. @{
  11. @defgroup gapi_main_classes G-API Main Classes
  12. @defgroup gapi_data_objects G-API Data Objects
  13. @{
  14. @defgroup gapi_meta_args G-API Metadata Descriptors
  15. @}
  16. @defgroup gapi_std_backends G-API Standard backends
  17. @defgroup gapi_compile_args G-API Graph Compilation Arguments
  18. @}
  19. */
  20. #include "opencv2/gapi/gmat.hpp"
  21. #include "opencv2/gapi/garray.hpp"
  22. #include "opencv2/gapi/gcomputation.hpp"
  23. #include "opencv2/gapi/gcompiled.hpp"
  24. #include "opencv2/gapi/gtyped.hpp"
  25. #include "opencv2/gapi/gkernel.hpp"
  26. #include "opencv2/gapi/operators.hpp"
  27. #endif // OPENCV_GAPI_HPP