Ocean
Loading...
Searching...
No Matches
Initializer1.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_1_H
9#define META_OCEAN_CV_SYNTHESIS_INITIALIZER_1_H
10
13
14namespace Ocean
15{
16
17namespace CV
18{
19
20namespace Synthesis
21{
22
23/**
24 * This class is the base class for all initializers that are provided for a single frame only.
25 * The resulting mapping starts and ends in the same frame.
26 * @ingroup cvsynthesis
27 */
28class Initializer1 : virtual public Initializer
29{
30 protected:
31
32 /**
33 * Creates a new initializer object.
34 * @param layer The layer for that the initial mapping has to be provided
35 */
36 inline Initializer1(Layer& layer);
37};
38
40 Initializer(layer)
41{
42 // nothing to do here
43}
44
45}
46
47}
48
49}
50
51#endif // META_OCEAN_CV_SYNTHESIS_INITIALIZER_1_H
This class is the base class for all initializers that are provided for a single frame only.
Definition Initializer1.h:29
Initializer1(Layer &layer)
Creates a new initializer object.
Definition Initializer1.h:39
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