ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkLevelSetEquationRegionTerm.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkLevelSetEquationRegionTerm_h
19 #define itkLevelSetEquationRegionTerm_h
20 
22 
23 namespace itk
24 {
25 template< typename TInput,
26  typename TLevelSetContainer >
28  public LevelSetEquationTermBase< TInput, TLevelSetContainer >
29 {
30 public:
31  ITK_DISALLOW_COPY_AND_ASSIGN(LevelSetEquationRegionTerm);
32 
37 
38  using InputType = TInput;
39  using InputPointer = typename InputType::Pointer;
40 
41  using LevelSetContainerType = TLevelSetContainer;
42  using LevelSetContainerPointer = typename LevelSetContainerType::Pointer;
43  using LevelSetOutputType = typename LevelSetContainerType::OutputType;
44  using LevelSetInputType = typename LevelSetContainerType::InputType;
45  using GradientType = typename LevelSetContainerType::GradientType;
46  using HessianType = typename LevelSetContainerType::HessianType;
47 
48 protected:
50  {}
51 
52  virtual ~LevelSetEquationRegionTerm() = default;
53 };
54 }
55 #endif // itkLevelSetEquationRegionTerm_h
Light weight base class for most itk classes.
typename LevelSetContainerType::HessianType HessianType
typename LevelSetContainerType::OutputType LevelSetOutputType
typename LevelSetContainerType::Pointer LevelSetContainerPointer
Abstract class to represents a term in the level-set evolution PDE.
typename LevelSetContainerType::InputType LevelSetInputType
virtual ~LevelSetEquationRegionTerm()=default
typename LevelSetContainerType::GradientType GradientType