Merge pull request #17388 from alalek:dnn_update_network_dump
commit
7d9e1be588
5 changed files with 91 additions and 26 deletions
@ -0,0 +1,34 @@ |
|||||||
|
// 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_COMMON_HPP__ |
||||||
|
#define __OPENCV_DNN_COMMON_HPP__ |
||||||
|
|
||||||
|
#include <opencv2/dnn.hpp> |
||||||
|
|
||||||
|
namespace cv { namespace dnn { |
||||||
|
CV__DNN_EXPERIMENTAL_NS_BEGIN |
||||||
|
#define IS_DNN_OPENCL_TARGET(id) (id == DNN_TARGET_OPENCL || id == DNN_TARGET_OPENCL_FP16) |
||||||
|
Mutex& getInitializationMutex(); |
||||||
|
void initializeLayerFactory(); |
||||||
|
|
||||||
|
namespace detail { |
||||||
|
|
||||||
|
struct NetImplBase |
||||||
|
{ |
||||||
|
const int networkId; // network global identifier
|
||||||
|
int networkDumpCounter; // dump counter
|
||||||
|
int dumpLevel; // level of information dumps (initialized through OPENCV_DNN_NETWORK_DUMP parameter)
|
||||||
|
|
||||||
|
NetImplBase(); |
||||||
|
|
||||||
|
std::string getDumpFileNameBase(); |
||||||
|
}; |
||||||
|
|
||||||
|
} // namespace detail
|
||||||
|
|
||||||
|
CV__DNN_EXPERIMENTAL_NS_END |
||||||
|
}} // namespace
|
||||||
|
|
||||||
|
#endif // __OPENCV_DNN_COMMON_HPP__
|
Loading…
Reference in new issue