/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/gapi/src/api/kernels_stereo.cpp
18 строк
500 B
aDanPin
Adding stereo operation and tests
31 мар 2021, 20:09
31 мар 2021, 20:09
e6f52b0
Код
Авторство
О чём код?
// 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) 2021 Intel Corporation #include <opencv2/gapi/stereo.hpp> namespace cv { namespace gapi { GMat stereo(const GMat& left, const GMat& right, const cv::gapi::StereoOutputFormat of) { return calib3d::GStereo::on(left, right, of); } } // namespace cv } // namespace gapi