video-libs / opencv /sources /modules /dnn /src /factory.hpp
niobures's picture
ffmpeg (v6.0/v7.x), gensim, numpy, opencv
be94e5d verified
// 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.
#ifndef OPENCV_DNN_FACTORY_HPP
#define OPENCV_DNN_FACTORY_HPP
#include "backend.hpp"
namespace cv { namespace dnn_backend {
class IDNNBackendFactory
{
public:
virtual ~IDNNBackendFactory() {}
virtual std::shared_ptr<cv::dnn_backend::NetworkBackend> createNetworkBackend() const = 0;
};
//
// PluginDNNBackendFactory is implemented in plugin_wrapper
//
std::shared_ptr<IDNNBackendFactory> createPluginDNNBackendFactory(const std::string& baseName);
/// @brief Returns createPluginDNNBackendFactory()->createNetworkBackend()
cv::dnn_backend::NetworkBackend& createPluginDNNNetworkBackend(const std::string& baseName);
}} // namespace
#endif // OPENCV_DNN_FACTORY_HPP