Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
// 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
|
|
|