ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkVectorThresholdSegmentationLevelSetImageFilter.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 itkVectorThresholdSegmentationLevelSetImageFilter_h
19#define itkVectorThresholdSegmentationLevelSetImageFilter_h
20
24
25namespace itk
26{
89template <typename TInputImage, typename TFeatureImage, typename TOutputPixelType = float>
91 : public SegmentationLevelSetImageFilter<TInputImage, TFeatureImage, TOutputPixelType>
92{
93public:
94 ITK_DISALLOW_COPY_AND_MOVE(VectorThresholdSegmentationLevelSetImageFilter);
95
101
103 using typename Superclass::ValueType;
104 using typename Superclass::OutputImageType;
105 using typename Superclass::FeatureImageType;
106
113
115 itkOverrideGetNameOfClassMacro(VectorThresholdSegmentationLevelSetImageFilter);
116
118 itkNewMacro(Self);
119
123 void
125 {
126 m_ThresholdFunction->SetMean(mean);
127 this->Modified();
128 }
129
130 const MeanVectorType &
131 GetMean() const
132 {
133 return m_ThresholdFunction->GetMean();
134 }
135
136
137 void
139 {
140 m_ThresholdFunction->SetCovariance(cov);
141 this->Modified();
142 }
143
144 const CovarianceMatrixType &
146 {
147 return m_ThresholdFunction->GetCovariance();
148 }
149
152 void
154 {
155 m_ThresholdFunction->SetThreshold(thr);
156 this->Modified();
157 }
158
159 ScalarValueType
161 {
162 return m_ThresholdFunction->GetThreshold();
163 }
164
165
166protected:
169
170 void
171 PrintSelf(std::ostream & os, Indent indent) const override;
172
173private:
175};
176} // end namespace itk
177
178#ifndef ITK_MANUAL_INSTANTIATION
179# include "itkVectorThresholdSegmentationLevelSetImageFilter.hxx"
180#endif
181
182#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
Implements transparent reference counting.
This function is used in VectorThresholdSegmentationLevelSetImageFilter to segment structures in imag...
VectorThresholdSegmentationLevelSetFunction< OutputImageType, FeatureImageType > ThresholdFunctionType
SegmentationLevelSetImageFilter< TInputImage, TFeatureImage, TOutputPixelType > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....