/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/gapi/src/api/kernels_ot.cpp
43 строки
1 KB
Anastasiya Pronina
Enabled VAS OT in G-API Python interface
19 дек 2023, 20:51
19 дек 2023, 20:51
d20727a
Код
Авторство
О чём код?
// 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) 2023 Intel Corporation #include <opencv2/gapi/ot.hpp> #include <opencv2/gapi/cpu/gcpukernel.hpp> #include <vas/ot.hpp> namespace cv { namespace gapi { namespace ot { GAPI_EXPORTS_W std::tuple<cv::GArray<cv::Rect>, cv::GArray<int32_t>, cv::GArray<uint64_t>, cv::GArray<int>> track(const cv::GMat& mat, const cv::GArray<cv::Rect>& detected_rects, const cv::GArray<int>& detected_class_labels, float delta) { return GTrackFromMat::on(mat, detected_rects, detected_class_labels, delta); } GAPI_EXPORTS_W std::tuple<cv::GArray<cv::Rect>, cv::GArray<int32_t>, cv::GArray<uint64_t>, cv::GArray<int>> track(const cv::GFrame& frame, const cv::GArray<cv::Rect>& detected_rects, const cv::GArray<int>& detected_class_labels, float delta) { return GTrackFromFrame::on(frame, detected_rects, detected_class_labels, delta); } } // namespace ot } // namespace gapi } // namespace cv