mirror of
https://github.com/opencv/opencv.git
synced 2025-07-22 03:56:45 +08:00
32 lines
1.4 KiB
C++
32 lines
1.4 KiB
C++
// 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.
|
|
//
|
|
// Copyright (C) 2019 Intel Corporation
|
|
|
|
|
|
#ifndef OPENCV_GAPI_GCOMPILED_ASYNC_HPP
|
|
#define OPENCV_GAPI_GCOMPILED_ASYNC_HPP
|
|
|
|
#include <future> //for std::future
|
|
#include <exception> //for std::exception_ptr
|
|
#include <functional> //for std::function
|
|
#include "opencv2/gapi/garg.hpp"
|
|
|
|
namespace cv {
|
|
//fwd declaration
|
|
class GCompiled;
|
|
|
|
namespace gapi{
|
|
namespace wip {
|
|
//These functions asynchronously (i.e. probably on a separate thread of execution) call operator() member function of their first argument with copies of rest of arguments (except callback) passed in.
|
|
//The difference between the function is the way to get the completion notification (via callback or a waiting on std::future object)
|
|
//If exception is occurred during execution of apply it is transfered to the callback (via function parameter) or passed to future (and will be thrown on call to std::future::get)
|
|
GAPI_EXPORTS void async(GCompiled& gcmpld, std::function<void(std::exception_ptr)>&& callback, GRunArgs &&ins, GRunArgsP &&outs);
|
|
GAPI_EXPORTS std::future<void> async(GCompiled& gcmpld, GRunArgs &&ins, GRunArgsP &&outs);
|
|
} // namespace gapi
|
|
} // namespace wip
|
|
} // namespace cv
|
|
|
|
#endif // OPENCV_GAPI_GCOMPILED_ASYNC_HPP
|