| // 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. | |
| 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 | |