layer.hpp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  14. // Third party copyrights are property of their respective owners.
  15. //
  16. // Redistribution and use in source and binary forms, with or without modification,
  17. // are permitted provided that the following conditions are met:
  18. //
  19. // * Redistribution's of source code must retain the above copyright notice,
  20. // this list of conditions and the following disclaimer.
  21. //
  22. // * Redistribution's in binary form must reproduce the above copyright notice,
  23. // this list of conditions and the following disclaimer in the documentation
  24. // and/or other materials provided with the distribution.
  25. //
  26. // * The name of the copyright holders may not be used to endorse or promote products
  27. // derived from this software without specific prior written permission.
  28. //
  29. // This software is provided by the copyright holders and contributors "as is" and
  30. // any express or implied warranties, including, but not limited to, the implied
  31. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  32. // In no event shall the Intel Corporation or contributors be liable for any direct,
  33. // indirect, incidental, special, exemplary, or consequential damages
  34. // (including, but not limited to, procurement of substitute goods or services;
  35. // loss of use, data, or profits; or business interruption) however caused
  36. // and on any theory of liability, whether in contract, strict liability,
  37. // or tort (including negligence or otherwise) arising in any way out of
  38. // the use of this software, even if advised of the possibility of such damage.
  39. //
  40. //M*/
  41. #ifndef __OPENCV_DNN_LAYER_HPP__
  42. #define __OPENCV_DNN_LAYER_HPP__
  43. #include <opencv2/dnn.hpp>
  44. namespace cv
  45. {
  46. namespace dnn
  47. {
  48. //! @addtogroup dnn
  49. //! @{
  50. //!
  51. //! @defgroup LayerFactoryModule Utilities for new layers registration
  52. //! @{
  53. /** @brief %Layer factory allows to create instances of registered layers. */
  54. class CV_EXPORTS LayerFactory
  55. {
  56. public:
  57. //! Each Layer class must provide this function to the factory
  58. typedef Ptr<Layer>(*Constuctor)(LayerParams &params);
  59. //! Registers the layer class with typename @p type and specified @p constructor.
  60. static void registerLayer(const String &type, Constuctor constructor);
  61. //! Unregisters registered layer with specified type name.
  62. static void unregisterLayer(const String &type);
  63. /** @brief Creates instance of registered layer.
  64. * @param type type name of creating layer.
  65. * @param params parameters which will be used for layer initialization.
  66. */
  67. static Ptr<Layer> createLayerInstance(const String &type, LayerParams& params);
  68. private:
  69. LayerFactory();
  70. struct Impl;
  71. static Ptr<Impl> impl();
  72. };
  73. /** @brief Registers layer constructor in runtime.
  74. * @param type string, containing type name of the layer.
  75. * @param constuctorFunc pointer to the function of type LayerRegister::Constuctor, which creates the layer.
  76. * @details This macros must be placed inside the function code.
  77. */
  78. #define REG_RUNTIME_LAYER_FUNC(type, constuctorFunc) \
  79. LayerFactory::registerLayer(#type, constuctorFunc);
  80. /** @brief Registers layer class in runtime.
  81. * @param type string, containing type name of the layer.
  82. * @param class C++ class, derived from Layer.
  83. * @details This macros must be placed inside the function code.
  84. */
  85. #define REG_RUNTIME_LAYER_CLASS(type, class) \
  86. LayerFactory::registerLayer(#type, _layerDynamicRegisterer<class>);
  87. /** @brief Registers layer constructor on module load time.
  88. * @param type string, containing type name of the layer.
  89. * @param constuctorFunc pointer to the function of type LayerRegister::Constuctor, which creates the layer.
  90. * @details This macros must be placed outside the function code.
  91. */
  92. #define REG_STATIC_LAYER_FUNC(type, constuctorFunc) \
  93. static _LayerStaticRegisterer __LayerStaticRegisterer_##type(#type, constuctorFunc);
  94. /** @brief Registers layer class on module load time.
  95. * @param type string, containing type name of the layer.
  96. * @param class C++ class, derived from Layer.
  97. * @details This macros must be placed outside the function code.
  98. */
  99. #define REG_STATIC_LAYER_CLASS(type, class) \
  100. Ptr<Layer> __LayerStaticRegisterer_func_##type(LayerParams &params) \
  101. { return Ptr<Layer>(new class(params)); } \
  102. static _LayerStaticRegisterer __LayerStaticRegisterer_##type(#type, __LayerStaticRegisterer_func_##type);
  103. //! @}
  104. //! @}
  105. template<typename LayerClass>
  106. Ptr<Layer> _layerDynamicRegisterer(LayerParams &params)
  107. {
  108. return Ptr<Layer>(new LayerClass(params));
  109. }
  110. //allows automatically register created layer on module load time
  111. struct _LayerStaticRegisterer
  112. {
  113. String type;
  114. _LayerStaticRegisterer(const String &type, LayerFactory::Constuctor constuctor)
  115. {
  116. this->type = type;
  117. LayerFactory::registerLayer(type, constuctor);
  118. }
  119. ~_LayerStaticRegisterer()
  120. {
  121. LayerFactory::unregisterLayer(type);
  122. }
  123. };
  124. }
  125. }
  126. #endif