| // 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) 2018 Intel Corporation | |
| cv::gapi::own::Size, \ | |
| cv::gapi::own::Point, \ | |
| cv::gapi::own::Point2f, \ | |
| cv::gapi::own::Scalar, \ | |
| cv::gapi::own::Mat | |
| // replacement of cv's structures: | |
| namespace cv { | |
| using Rect = gapi::own::Rect; | |
| using Size = gapi::own::Size; | |
| using Point = gapi::own::Point; | |
| using Point2f = gapi::own::Point2f; | |
| using Point3f = gapi::own::Point3f; | |
| using Scalar = gapi::own::Scalar; | |
| using Mat = gapi::own::Mat; | |
| } // namespace cv | |