ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkScalarChanAndVeseDenseLevelSetImageFilter.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#ifndef itkScalarChanAndVeseDenseLevelSetImageFilter_h
19#define itkScalarChanAndVeseDenseLevelSetImageFilter_h
20
24
25namespace itk
26{
40template <typename TInputImage,
41 typename TFeatureImage,
42 typename TOutputImage,
44 class TSharedData = typename TFunction::SharedDataType>
46 : public MultiphaseDenseFiniteDifferenceImageFilter<TInputImage, TFeatureImage, TOutputImage, TFunction>
47{
48public:
49 ITK_DISALLOW_COPY_AND_MOVE(ScalarChanAndVeseDenseLevelSetImageFilter);
50
55
57 itkNewMacro(Self);
58
60 itkOverrideGetNameOfClassMacro(ScalarChanAndVeseDenseLevelSetImageFilter);
61
62 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
63
65 using typename Superclass::InputImageType;
66 using typename Superclass::InputImagePointer;
67 using typename Superclass::InputPointType;
68 using typename Superclass::ValueType;
69 using InputSpacingType = typename InputImageType::SpacingType;
70
71 using FeatureImageType = TFeatureImage;
72 using FeatureImagePointer = typename FeatureImageType::Pointer;
73 using FeaturePixelType = typename FeatureImageType::PixelType;
74 using FeatureIndexType = typename FeatureImageType::IndexType;
75 using FeatureIndexValueType = typename FeatureIndexType::IndexValueType;
76 using FeatureRegionType = typename FeatureImageType::RegionType;
77
79 using OutputImageType = TOutputImage;
80 using IndexType = typename OutputImageType::IndexType;
81 using OutputPixelType = typename OutputImageType::PixelType;
82
83 using typename Superclass::TimeStepType;
85
86 using FunctionType = TFunction;
87 using FunctionPointer = typename FunctionType::Pointer;
88
89 using SharedDataType = TSharedData;
90 using SharedDataPointer = typename SharedDataType::Pointer;
91
94
95 itkConceptMacro(OutputHasNumericTraitsCheck, (Concept::HasNumericTraits<OutputPixelType>));
96
99 virtual void
101 {
102 this->SetInput(f);
103 }
104
105protected:
106 ScalarChanAndVeseDenseLevelSetImageFilter() { this->m_SharedData = SharedDataType::New(); }
107
109
111
112 void
113 Initialize() override;
114
115 void
117};
118} // end namespace itk
119
120#ifndef ITK_MANUAL_INSTANTIATION
121# include "itkScalarChanAndVeseDenseLevelSetImageFilter.hxx"
122#endif
123
124#endif
virtual void SetInput(const InputImageType *input)
typename FiniteDifferenceFunctionType::TimeStepType TimeStepType
Extract a region of interest from the input image.
RegionOfInterestImageFilter< FeatureImageType, FeatureImageType > ROIFilterType
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction > Superclass
~ScalarChanAndVeseDenseLevelSetImageFilter() override=default
LevelSet function that computes a speed image based on regional integrals of probabilities.
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....