ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkRGBGibbsPriorFilter.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 itkRGBGibbsPriorFilter_h
19#define itkRGBGibbsPriorFilter_h
20
21#include "vnl/vnl_vector.h"
22#include "vnl/vnl_matrix.h"
23
24#include "itkMRFImageFilter.h"
25
26#include <memory> // For unique_ptr.
27
28namespace itk
29{
55template <typename TInputImage, typename TClassifiedImage>
56class ITK_TEMPLATE_EXPORT RGBGibbsPriorFilter : public MRFImageFilter<TInputImage, TClassifiedImage>
57{
58public:
59 ITK_DISALLOW_COPY_AND_MOVE(RGBGibbsPriorFilter);
60
66
68 itkNewMacro(Self);
69
71 itkOverrideGetNameOfClassMacro(RGBGibbsPriorFilter);
72
79 using typename Superclass::IndexValueType;
80
82 using InputImageType = TInputImage;
83 using InputImagePointer = typename TInputImage::Pointer;
84 using InputImageConstPointer = typename TInputImage::ConstPointer;
85
87 using InputPixelType = typename TInputImage::PixelType;
88
90 using ClassifiedImageType = TClassifiedImage;
91 using TrainingImageType = typename TClassifiedImage::Pointer;
92
95 using LabelledImageType = typename TClassifiedImage::Pointer;
96
98 using LabelledImageIndexType = typename TClassifiedImage::IndexType;
99
103 using LabelType = unsigned int;
104
107
109 using InputImageVecType = typename TInputImage::PixelType;
110 using IndexType = typename TInputImage::IndexType;
111
114 itkSetMacro(TrainingImage, TrainingImageType);
115 itkGetConstMacro(TrainingImage, TrainingImageType);
117
119 void
121
125 {
126 return m_LabelledImage;
127 }
128
130 void
131 SetClassifier(typename ClassifierType::Pointer ptrToClassifier);
132
134 void
135 SetNumberOfClasses(const unsigned int numberOfClasses) override
136 {
137 itkDebugMacro("setting NumberOfClasses to " << numberOfClasses);
138 if (this->m_NumberOfClasses != numberOfClasses)
139 {
140 this->m_NumberOfClasses = numberOfClasses;
141 this->Modified();
142 }
143 }
144
146 unsigned int
147 GetNumberOfClasses() const override
148 {
149 return this->m_NumberOfClasses;
150 }
151
154 void
155 SetMaximumNumberOfIterations(const unsigned int numberOfIterations) override
156 {
157 itkDebugMacro("setting MaximumNumberOfIterations to " << numberOfIterations);
158 if (this->m_MaximumNumberOfIterations != numberOfIterations)
159 {
160 this->m_MaximumNumberOfIterations = numberOfIterations;
161 this->Modified();
162 }
163 }
164
167 unsigned int
169 {
170 return this->m_MaximumNumberOfIterations;
171 }
172
175 itkSetMacro(ClusterSize, unsigned int);
176 itkGetConstMacro(ClusterSize, unsigned int);
178
181 itkSetMacro(ObjectLabel, LabelType);
182 itkGetConstMacro(ObjectLabel, LabelType);
184
186 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
187
188 itkSetMacro(StartPoint, IndexType);
189 itkGetConstMacro(StartPoint, IndexType);
190
191 itkSetMacro(BoundaryGradient, unsigned int);
192 itkGetConstMacro(BoundaryGradient, unsigned int);
193
194 itkSetMacro(ObjectThreshold, double);
195 itkGetConstMacro(ObjectThreshold, double);
196
199 itkSetMacro(CliqueWeight_1, double);
200 itkGetConstMacro(CliqueWeight_1, double);
201 itkSetMacro(CliqueWeight_2, double);
202 itkGetConstMacro(CliqueWeight_2, double);
203 itkSetMacro(CliqueWeight_3, double);
204 itkGetConstMacro(CliqueWeight_3, double);
205 itkSetMacro(CliqueWeight_4, double);
206 itkGetConstMacro(CliqueWeight_4, double);
207 itkSetMacro(CliqueWeight_5, double);
208 itkGetConstMacro(CliqueWeight_5, double);
209 itkSetMacro(CliqueWeight_6, double);
210 itkGetConstMacro(CliqueWeight_6, double);
212
214 using MatrixType = vnl_matrix<double>;
215
216protected:
218 ~RGBGibbsPriorFilter() override = default;
219 void
220 PrintSelf(std::ostream & os, Indent indent) const override;
221
223 void
225
226 void
228
229 void
230 GenerateData() override;
231
232 virtual void
234
235 virtual void
237
239 SameDimension,
242
243private:
244 using InputImageSizeType = typename TInputImage::SizeType;
245
248
251
254
256 unsigned int m_NumberOfClasses{ 0 };
257
259 unsigned int m_MaximumNumberOfIterations{ 10 };
260
262
264 unsigned int m_BoundaryGradient{ 7 };
265
267 double m_BoundaryWeight{ 1 };
268
271
273 int m_StartRadius{ 10 };
274
277
279 std::unique_ptr<LabelType[]> m_LabelStatus{ nullptr };
280
283
285 unsigned int m_Temp{ 0 };
286
289
291 unsigned int m_ImageWidth{ 0 };
292
294 unsigned int m_ImageHeight{ 0 };
295
297 unsigned int m_ImageDepth{ 0 };
298
300 unsigned int m_ClusterSize{ 10 };
301
304
306 unsigned int m_VecDim{ 0 };
307
310
312 std::unique_ptr<unsigned short[]> m_Region{ nullptr };
313
315 std::unique_ptr<unsigned short[]> m_RegionCount{ nullptr };
316
317 // Weights for different clique configurations.
318
320 double m_CliqueWeight_1{ 0.0 };
321
323 double m_CliqueWeight_2{ 0.0 };
324
326 double m_CliqueWeight_3{ 0.0 };
327
329 double m_CliqueWeight_4{ 0.0 };
330
332 double m_CliqueWeight_5{ 0.0 };
333
335 double m_CliqueWeight_6{ 0.0 };
336
339 void
341
343 double
344 GibbsEnergy(unsigned int i, unsigned int k, unsigned int k1);
345
347 int
348 Sim(int a, int b);
349
351 unsigned int
352 LabelRegion(int i, int l, int change);
353
356 void
358
360 void
362
365 void
367
368 double m_ObjectThreshold{ 5.0 };
369};
370} // end namespace itk
371#ifndef ITK_MANUAL_INSTANTIATION
372# include "itkRGBGibbsPriorFilter.hxx"
373#endif
374#endif
Base class for the ImageClassifierBase object.
Control indentation during Print() invocation.
Definition itkIndent.h:50
ImageRegionIterator< TClassifiedImage > LabelledImageRegionIterator
ImageRegionConstIterator< TInputImage > InputImageRegionConstIterator
typename LabelledImageIndexType::IndexValueType IndexValueType
ImageRegionIterator< TInputImage > InputImageRegionIterator
typename TClassifiedImage::PixelType LabelledImagePixelType
typename TInputImage::PixelType InputImagePixelType
virtual void Modified() const
ImageClassifierBase< TInputImage, TClassifiedImage > ClassifierType
~RGBGibbsPriorFilter() override=default
MRFImageFilter< TInputImage, TClassifiedImage > Superclass
void SetMaximumNumberOfIterations(const unsigned int numberOfIterations) override
typename TInputImage::IndexType IndexType
SmartPointer< const Self > ConstPointer
typename TClassifiedImage::IndexType LabelledImageIndexType
void GibbsTotalEnergy(int i)
void GenerateData() override
void SetClassifier(typename ClassifierType::Pointer ptrToClassifier)
typename TInputImage::PixelType InputPixelType
unsigned int GetMaximumNumberOfIterations() const override
void SetNumberOfClasses(const unsigned int numberOfClasses) override
unsigned int LabelRegion(int i, int l, int change)
double GibbsEnergy(unsigned int i, unsigned int k, unsigned int k1)
typename TClassifiedImage::Pointer LabelledImageType
void GreyScalarBoundary(LabelledImageIndexType Index3D)
ClassifierType::Pointer m_ClassifierPtr
unsigned int GetNumberOfClasses() const override
static constexpr unsigned int ImageDimension
LabelledImageType GetLabelledImage()
typename TInputImage::Pointer InputImagePointer
typename TClassifiedImage::Pointer TrainingImageType
void MinimizeFunctional() override
InputImageConstPointer m_InputImage
typename TInputImage::SizeType InputImageSizeType
typename TInputImage::PixelType InputImageVecType
int Sim(int a, int b)
typename TInputImage::ConstPointer InputImageConstPointer
std::unique_ptr< unsigned short[]> m_RegionCount
virtual void ApplyGPImageFilter()
void SetLabelledImage(LabelledImageType image)
virtual void ApplyGibbsLabeller()
std::unique_ptr< LabelType[]> m_LabelStatus
void PrintSelf(std::ostream &os, Indent indent) const override
std::unique_ptr< unsigned short[]> m_Region
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....