/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/gapi/src/streaming/onevpl/cfg_params_parser.hpp
47 строк
1 KB
Sergey Ivanov
Merge pull request #21232 from sivanov-work:vpl_gpu_remote_infer
24 янв 2022, 17:05
Не верифицирован
24 янв 2022, 17:05
266835c
Код
Авторство
О чём код?
// 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 #ifndef GAPI_STREAMING_ONEVPL_CFG_PARAM_PARSER_HPP #define GAPI_STREAMING_ONEVPL_CFG_PARAM_PARSER_HPP #ifdef HAVE_ONEVPL #include "streaming/onevpl/onevpl_export.hpp" #include <map> #include <string> #include <opencv2/gapi/streaming/onevpl/source.hpp> namespace cv { namespace gapi { namespace wip { namespace onevpl { template<typename ValueType> std::vector<ValueType> get_params_from_string(const std::string& str); template <typename ReturnType> struct ParamCreator { template<typename ValueType> ReturnType create(const std::string& name, ValueType&& value, bool is_major = false); }; mfxVariant cfg_param_to_mfx_variant(const CfgParam& value); void extract_optional_param_by_name(const std::string &name, const std::vector<CfgParam>& in_params, cv::util::optional<size_t> &out_param); unsigned long strtoul_or_throw(const char* str); size_t strtoull_or_throw(const char* str); int64_t strtoll_or_throw(const char* str); } // namespace onevpl } // namespace wip } // namespace gapi } // namespace cv #endif // HAVE_ONEVPL #endif // GAPI_STREAMING_ONEVPL_CFG_PARAM_PARSER_HPP