ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkScalarChanAndVeseSparseLevelSetImageFilter.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 itkScalarChanAndVeseSparseLevelSetImageFilter_h
19#define itkScalarChanAndVeseSparseLevelSetImageFilter_h
20
24
25namespace itk
26{
48template <typename TInputImage,
49 typename TFeatureImage,
50 typename TOutputImage,
52 class TSharedData = typename TFunction::SharedDataType,
53 typename TIdCell = unsigned int>
55 : public MultiphaseSparseFiniteDifferenceImageFilter<TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell>
56{
57public:
59 using Superclass =
63
65 itkNewMacro(Self);
66
68 itkOverrideGetNameOfClassMacro(ScalarChanAndVeseSparseLevelSetImageFilter);
69
70 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
71
73 using typename Superclass::InputImageType;
74 using typename Superclass::InputImagePointer;
75 using typename Superclass::InputPointType;
76 using typename Superclass::ValueType;
77 using typename Superclass::InputSpacingType;
78
79 using FeatureImageType = TFeatureImage;
80 using FeatureImagePointer = typename FeatureImageType::Pointer;
81 using FeaturePixelType = typename FeatureImageType::PixelType;
82 using FeatureIndexType = typename FeatureImageType::IndexType;
83 using FeatureIndexValueType = typename FeatureIndexType::IndexValueType;
84 using FeatureRegionType = typename FeatureImageType::RegionType;
85
87 using OutputImageType = TOutputImage;
88 using IndexType = typename OutputImageType::IndexType;
89 using OutputPixelType = typename OutputImageType::PixelType;
90
91 using typename Superclass::TimeStepType;
93
94 using typename Superclass::IdCellType;
95
96 using FunctionType = TFunction;
97 using FunctionPtr = typename FunctionType::Pointer;
98
99 using SharedDataType = TSharedData;
100 using SharedDataPointer = typename SharedDataType::Pointer;
101
104
105 itkConceptMacro(OutputHasNumericTraitsCheck, (Concept::HasNumericTraits<OutputPixelType>));
106
109 virtual void
111 {
112 this->SetInput(f);
113 }
114
115protected:
117 {
118 this->SetNumberOfLayers(2); // Narrow-band usage
119 this->m_SharedData = SharedDataType::New();
120 }
121
123
125
126 void
127 Initialize() override;
128
129 void
131
132 void
133 UpdatePixel(unsigned int functionIndex,
134 unsigned int idx,
136 ValueType & newValue,
137 bool & status) override;
138};
139} // end namespace itk
140
141#ifndef ITK_MANUAL_INSTANTIATION
142# include "itkScalarChanAndVeseSparseLevelSetImageFilter.hxx"
143#endif
144
145#endif
virtual void SetInput(const InputImageType *input)
virtual void SetNumberOfLayers(unsigned int _arg)
Defines iteration of a local N-dimensional neighborhood of pixels across an itk::Image.
Extract a region of interest from the input image.
LevelSet function that computes a speed image based on regional integrals of probabilities.
~ScalarChanAndVeseSparseLevelSetImageFilter() override=default
void UpdatePixel(unsigned int functionIndex, unsigned int idx, NeighborhoodIterator< InputImageType > &iterator, ValueType &newValue, bool &status) override
RegionOfInterestImageFilter< FeatureImageType, FeatureImageType > ROIFilterType
MultiphaseSparseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell > Superclass
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....