OpenCV 4.5.3(日本語機械翻訳)
|
Layer factory allows to create instances of registered layers. [詳解]
#include <layer.hpp>
公開型 |
|
typedef Ptr< Layer >(* | Constructor) (LayerParams ¶ms) |
各Layerクラスは、この関数をファクトリに提供する必要があります。 |
|
静的公開メンバ関数 |
|
static void | registerLayer (const String &type, Constructor constructor) |
レイヤクラスを typenametype と指定されたconstructor . スレッドセーフです。 |
|
static void | unregisterLayer (const String &type) |
指定された型名で登録されたレイヤの登録を解除します。スレッドセーフです。 |
|
static Ptr< Layer > | createLayerInstance (const String &type, LayerParams ¶ms) |
登録されたレイヤーのインスタンスを作成します。[【詳解】(英語]
|
|
レイヤファクトリは、登録されているレイヤのインスタンスを作成します。
|
static |
登録されたレイヤーのインスタンスを作成します。
type | タイプ 作成するレイヤーの名前。 |
params | レイヤーの初期化に使用されるパラメータ。 |