gapi.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-2021 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 Types
  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. @defgroup gapi_serialization G-API Serialization functionality
  19. @}
  20. */
  21. #include <opencv2/gapi/gmat.hpp>
  22. #include <opencv2/gapi/garray.hpp>
  23. #include <opencv2/gapi/gscalar.hpp>
  24. #include <opencv2/gapi/gopaque.hpp>
  25. #include <opencv2/gapi/gframe.hpp>
  26. #include <opencv2/gapi/gcomputation.hpp>
  27. #include <opencv2/gapi/gcompiled.hpp>
  28. #include <opencv2/gapi/gtyped.hpp>
  29. #include <opencv2/gapi/gkernel.hpp>
  30. #include <opencv2/gapi/operators.hpp>
  31. // Include these files here to avoid cyclic dependency between
  32. // Desync & GKernel & GComputation & GStreamingCompiled.
  33. #include <opencv2/gapi/streaming/desync.hpp>
  34. #include <opencv2/gapi/streaming/format.hpp>
  35. #endif // OPENCV_GAPI_HPP