Ocean
InitializerAppearanceMapping.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Meta Platforms, Inc. and affiliates.
3  *
4  * This source code is licensed under the MIT license found in the
5  * LICENSE file in the root directory of this source tree.
6  */
7 
8 #ifndef META_OCEAN_CV_SYNTHESIS_INITIALIZER_APPEARANCE_MAPPING_H
9 #define META_OCEAN_CV_SYNTHESIS_INITIALIZER_APPEARANCE_MAPPING_H
10 
13 
14 namespace Ocean
15 {
16 
17 namespace CV
18 {
19 
20 namespace Synthesis
21 {
22 
23 /**
24  * This class implements the abstract base class for all appearance initializers.
25  * @ingroup cvsynthesis
26  */
28 {
29  protected:
30 
31  /**
32  * Creates a new initializer object.
33  * @param layer The layer that has to be initialized
34  */
35  inline InitializerAppearanceMapping(Layer& layer);
36 };
37 
39  Initializer(layer)
40 {
41  // nothing to do here
42 }
43 
44 }
45 
46 }
47 
48 }
49 
50 #endif // META_OCEAN_CV_SYNTHESIS_INITIALIZER_APPEARANCE_MAPPING_H
This class implements the abstract base class for all appearance initializers.
Definition: InitializerAppearanceMapping.h:28
InitializerAppearanceMapping(Layer &layer)
Creates a new initializer object.
Definition: InitializerAppearanceMapping.h:38
This class implements the base class for all synthesis initializers.
Definition: Initializer.h:34
This class implements the base class for all inpainting layers.
Definition: Layer.h:35
The namespace covering the entire Ocean framework.
Definition: Accessor.h:15