ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetImage.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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
19#ifndef itkLevelSetImage_h
20#define itkLevelSetImage_h
21
22#include "itkLevelSetBase.h"
23#include "itkObjectFactory.h"
24#include "itkIndex.h"
25#include "itkImageBase.h"
26
27namespace itk
28{
38template <typename TInput, unsigned int VDimension, typename TOutput>
39class ITK_TEMPLATE_EXPORT LevelSetImage : public LevelSetBase<TInput, VDimension, TOutput, ImageBase<VDimension>>
40{
41public:
42 ITK_DISALLOW_COPY_AND_MOVE(LevelSetImage);
43
45
50
52 itkOverrideGetNameOfClassMacro(LevelSetImage);
53
54 static constexpr unsigned int Dimension = Superclass::Dimension;
55
56 using typename Superclass::InputType;
57 using typename Superclass::OutputType;
58 using typename Superclass::OutputRealType;
59 using typename Superclass::GradientType;
60 using typename Superclass::HessianType;
61 using typename Superclass::LevelSetDataType;
64
65 /* Set/Get the domain offset from input domain */
66 itkSetMacro(DomainOffset, OffsetType);
67 itkGetConstMacro(DomainOffset, OffsetType);
68
69protected:
71
72 ~LevelSetImage() override = default;
73
77
78 virtual bool
79 IsInsideDomain(const InputType & iP) const = 0;
80
81private:
82};
83
84} // end namespace itk
85
86#ifndef ITK_MANUAL_INSTANTIATION
87# include "itkLevelSetImage.hxx"
88#endif
89
90#endif // itkLevelSetImage_h
Base class for templated image classes.
Offset< VImageDimension > OffsetType
typename OffsetType::OffsetValueType OffsetValueType
typename NumericTraits< OutputType >::RealType OutputRealType
CovariantVector< OutputRealType, VDimension > GradientType
static constexpr unsigned int Dimension
Matrix< OutputRealType, VDimension, VDimension > HessianType
typename ImageBaseType::OffsetValueType OffsetValueType
LevelSetBase< IndexType, VDimension, TOutput, ImageBaseType > Superclass
~LevelSetImage() override=default
virtual bool IsInsideDomain(const InputType &iP) const =0
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Convenient data structure to cache computed characteristics.