My Project
2d/vfregularizerkernel.hh
Go to the documentation of this file.
1 /* -*- mia-c++ -*-
2  *
3  * This file is part of MIA - a toolbox for medical image analysis
4  * Copyright (c) Leipzig, Madrid 1999-2017 Gert Wollny
5  *
6  * MIA is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with MIA; if not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20 
21 
22 #ifndef mia_2d_vfregularizerkernel_hh
23 #define mia_2d_vfregularizerkernel_hh
24 
25 #include <mia/core/factory.hh>
26 #include <mia/2d/vectorfield.hh>
27 
29 
42 {
43 public:
46 
47  class CBuffers
48  {
49  public:
50  virtual ~CBuffers();
51  };
52 
53  typedef std::unique_ptr<CBuffers> PBuffers;
54 
55  static const char *type_descr;
56 
57  typedef std::shared_ptr< C2DFVectorfieldRegularizerKernel > Pointer;
58 
59  C2DFVectorfieldRegularizerKernel(bool has_pertuberation);
60 
61  float evaluate_pertuberation_row(unsigned y, CBuffers& buffers) const;
62 
64 
65  void set_data_fields(C2DFVectorfield *output, const C2DFVectorfield *input);
66 
67  void set_update_fields(const T2DDatafield<unsigned char> *update_flags,
69  float residual_thresh);
70 
71  float evaluate_row(unsigned y, CBuffers& buffers);
72 
73  float evaluate_row_sparse(unsigned y, CBuffers& buffers);
74 
75  unsigned get_boundary_padding() const;
76 
77  PBuffers get_buffers() const;
78 
79  void start_row(unsigned y, CBuffers& buffers) const;
80 
81  bool has_pertuberation() const;
82 protected:
83  C2DFVectorfield& get_output_field() const;
84  const C2DFVectorfield& get_input_field() const;
85  T2DDatafield<float>& get_residua() const;
86  const T2DDatafield<unsigned char>& get_update_flags() const;
87  T2DDatafield<unsigned char>& get_set_flags() const;
88  float get_residual_thresh() const;
89 private:
90  virtual void post_set_data_fields();
91 
92  virtual float do_evaluate_row(unsigned y, CBuffers& buffers) = 0;
93 
94  virtual float do_evaluate_row_sparse(unsigned y, CBuffers& buffers) = 0;
95 
96  virtual unsigned do_get_boundary_padding() const = 0;
97 
98  virtual PBuffers do_get_buffers() const;
99 
100  virtual void do_start_row(unsigned y, CBuffers& buffers) const;
101 
102  virtual float do_evaluate_pertuberation_row(unsigned y, CBuffers& buffers) const;
103 
104  C2DFVectorfield *m_output;
105  const C2DFVectorfield *m_input;
106  T2DDatafield<float> *m_residua;
107  const T2DDatafield<unsigned char> *m_update_flags;
108  T2DDatafield<unsigned char> *m_set_flags;
109  float m_residual_thresh;
110  bool m_has_pertuberation;
111 };
112 
113 inline
115 {
116  return m_has_pertuberation;
117 }
118 
119 inline
121 {
122  return *m_output;
123 }
124 
125 inline
127 {
128  return *m_input;
129 }
130 
131 inline
133 {
134  return *m_residua;
135 }
136 
137 inline
139 {
140  return *m_update_flags;
141 }
142 
143 inline
145 {
146  return *m_set_flags;
147 }
148 
149 inline
151 {
152  return m_residual_thresh;
153 }
154 
156 
158 
160 
161 
166 
174 
175 
176 
178 #endif
C2DFVectorfieldRegularizerKernel::PBuffers
std::unique_ptr< CBuffers > PBuffers
Definition: 2d/vfregularizerkernel.hh:53
C2DFVectorfieldRegularizerKernel::get_input_field
const C2DFVectorfield & get_input_field() const
Definition: 2d/vfregularizerkernel.hh:126
C2DFVectorfieldRegularizerKernel::type_descr
static const char * type_descr
Definition: 2d/vfregularizerkernel.hh:55
factory.hh
NS_MIA_BEGIN
#define NS_MIA_BEGIN
conveniance define to start the mia namespace
Definition: defines.hh:33
C2DFVectorfieldRegularizerKernel::plugin_type
C2DFVectorfieldRegularizerKernel plugin_type
Definition: 2d/vfregularizerkernel.hh:44
C2DFVectorfieldRegularizerKernel::Pointer
std::shared_ptr< C2DFVectorfieldRegularizerKernel > Pointer
Definition: 2d/vfregularizerkernel.hh:57
C2DFVectorfieldRegularizerKernel::has_pertuberation
bool has_pertuberation() const
Definition: 2d/vfregularizerkernel.hh:114
C2DFVectorfieldRegularizerKernelPluginHandler
THandlerSingleton< TFactoryPluginHandler< C2DFVectorfieldRegularizerKernelPlugin > > C2DFVectorfieldRegularizerKernelPluginHandler
Definition: 2d/vfregularizerkernel.hh:159
C2DFVectorfieldRegularizerKernelPlugin
TFactory< C2DFVectorfieldRegularizerKernel > C2DFVectorfieldRegularizerKernelPlugin
Definition: 2d/vfregularizerkernel.hh:157
C2DFVectorfieldRegularizerKernel::get_output_field
C2DFVectorfield & get_output_field() const
Definition: 2d/vfregularizerkernel.hh:120
NS_MIA_END
#define NS_MIA_END
conveniance define to end the mia namespace
Definition: defines.hh:36
THandlerSingleton
the singleton that a plug-in handler really is
Definition: handler.hh:158
C2DFVectorfieldRegularizerKernel::get_update_flags
const T2DDatafield< unsigned char > & get_update_flags() const
Definition: 2d/vfregularizerkernel.hh:138
C2DFVectorfieldRegularizerKernel::CBuffers
Definition: 2d/vfregularizerkernel.hh:47
C2DFVectorfieldRegularizerKernel
Definition: 2d/vfregularizerkernel.hh:41
TPluginHandler
The basic template of all plugin handlers.
Definition: handler.hh:56
CProductBase
The base class for all plug-in created object.
Definition: product_base.hh:40
C2DFVectorfield
a 2D field of floating point single accuracy 2D vectors
Definition: 2d/vectorfield.hh:79
T2DDatafield< unsigned char >
TFactoryPluginHandler
the Base class for all plugn handlers that deal with factory plugins.
Definition: factory.hh:94
C2DFVectorfieldRegularizerKernel::get_set_flags
T2DDatafield< unsigned char > & get_set_flags() const
Definition: 2d/vfregularizerkernel.hh:144
FACTORY_TRAIT
#define FACTORY_TRAIT(F)
Definition: factory_trait.hh:69
C2DFVectorfieldRegularizerKernel::get_residual_thresh
float get_residual_thresh() const
Definition: 2d/vfregularizerkernel.hh:150
P2DVectorfieldRegularizerKernel
C2DFVectorfieldRegularizerKernel::Pointer P2DVectorfieldRegularizerKernel
Definition: 2d/vfregularizerkernel.hh:155
CCmdOptionFlags::input
C2DFVectorfieldRegularizerKernel::plugin_data
C2DFVectorfield plugin_data
Definition: 2d/vfregularizerkernel.hh:45
CCmdOptionFlags::output
C2DFVectorfieldRegularizerKernel::get_residua
T2DDatafield< float > & get_residua() const
Definition: 2d/vfregularizerkernel.hh:132
vectorfield.hh
EXPORT_2D
#define EXPORT_2D
Definition: defines2d.hh:37
TFactory
This is tha base of all plugins that create "things", like filters, cost functions time step operator...
Definition: factory.hh:49