ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkVoronoiSegmentationImageFilterBase.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 itkVoronoiSegmentationImageFilterBase_h
19#define itkVoronoiSegmentationImageFilterBase_h
20
23#include "itkImage.h"
24
25namespace itk
26{
55template <typename TInputImage, typename TOutputImage, typename TBinaryPriorImage = Image<unsigned char, 2>>
56class ITK_TEMPLATE_EXPORT VoronoiSegmentationImageFilterBase : public ImageToImageFilter<TInputImage, TOutputImage>
57{
58public:
59 ITK_DISALLOW_COPY_AND_MOVE(VoronoiSegmentationImageFilterBase);
60
66
68 itkNewMacro(Self);
69
71 itkOverrideGetNameOfClassMacro(VoronoiSegmentationImageFilterBase);
72
74 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
75
77 using InputImageType = TInputImage;
78 using InputImagePointer = typename TInputImage::Pointer;
79 using InputImageConstPointer = typename TInputImage::ConstPointer;
80 using IndexType = typename TInputImage::IndexType;
81 using SizeType = typename TInputImage::SizeType;
82 using RegionType = typename TInputImage::RegionType;
83 using PixelType = typename TInputImage::PixelType;
84
85 using OutputImageType = TOutputImage;
86 using OutputPixelType = typename TOutputImage::PixelType;
87
94 using PointIdIterator = typename CellType::PointIdIterator;
99 using EdgeInfo = typename VoronoiDiagram::VoronoiEdge;
100 using PointTypeVector = std::vector<PointType>;
101 using PointTypeDeque = std::deque<PointType>;
102 using BinaryObjectImage = TBinaryPriorImage;
103 using BinaryObjectImagePointer = typename BinaryObjectImage::Pointer;
104 using IndexList = std::vector<IndexType>;
105
109
112 itkSetMacro(NumberOfSeeds, int);
113 itkGetConstMacro(NumberOfSeeds, int);
115
118 itkSetMacro(MinRegion, SizeValueType);
119 itkGetConstMacro(MinRegion, SizeValueType);
121
125 itkSetMacro(Steps, int);
126 itkGetConstMacro(Steps, int);
128
130 itkGetConstMacro(LastStepSeeds, int);
131
133 itkGetConstMacro(NumberOfSeedsToAdded, int);
134
137 itkSetMacro(UseBackgroundInAPrior, bool);
138 itkGetConstMacro(UseBackgroundInAPrior, bool);
140
143 itkSetMacro(OutputBoundary, bool);
144 itkGetConstMacro(OutputBoundary, bool);
146
150 itkSetMacro(InteractiveSegmentation, bool);
151 itkGetConstMacro(InteractiveSegmentation, bool);
152 itkBooleanMacro(InteractiveSegmentation);
154
157 itkSetMacro(MeanDeviation, double);
158 itkGetConstMacro(MeanDeviation, double);
160
163 itkSetMacro(Size, SizeType);
164 itkGetConstMacro(Size, SizeType);
166
169 virtual void
172
174 void
176
178 void
180
182 virtual void
184
185 virtual void
187
191 {
192 return m_WorkingVD;
193 }
194
195#if !defined(ITK_WRAPPING_PARSER) // generates invalid iterator instantiation
196 // with msvc
200 void
201 SetSeeds(int num, SeedsIterator begin)
202 {
203 m_NumberOfSeeds = num;
204 m_WorkingVD->SetSeeds(num, begin);
205 }
206#endif
207
211 void
213 {
214 m_NumberOfSeeds = seeds.size();
215 auto it = seeds.begin();
216 m_WorkingVD->SetSeeds(m_NumberOfSeeds, it);
217 }
218
220 PointType
221 GetSeed(int SeedID)
222 {
223 return m_WorkingVD->GetSeed(SeedID);
224 }
225
227 void
228 DrawDiagram(VDImagePointer result, unsigned char incolor, unsigned char outcolor, unsigned char boundcolor);
229
230 void
232
235 void
237
240 void
242
243protected:
246 void
247 PrintSelf(std::ostream & os, Indent indent) const override;
248
249 void
250 GenerateData() override; // general pipeline function.
251
253 int m_NumberOfSeeds{ 200 };
255 int m_Steps{ 0 };
259
260 std::vector<SizeValueType> m_NumberOfPixels{};
261 std::vector<unsigned char> m_Label{};
262
263 double m_MeanDeviation{ 0.8 };
265 bool m_OutputBoundary{ false }; // if =1 then output the boundaries, if = 0 then
266 // output the object.
268
270
272
273 std::vector<PointType> m_SeedsToAdded{};
274
275 // private methods:
276 // Classify all the voronoi cells as interior , exterior or boundary.
277 virtual void
279
280 // Generate the seeds to be added by dividing the boundary cells.
281 virtual void
283
284 // Compute the statistics of the pixels inside the cell.
285 void
287
288 virtual bool
290 {
291 return true;
292 }
293
294 void
296
297 // Draw a straight line to the output image.
298 void
300
301 // Draw the intermediate Voronoi Diagram structure.
302 void
303 drawVDline(VDImagePointer result, PointType p1, PointType p2, unsigned char color);
304};
305} // namespace itk
306
307#ifndef ITK_MANUAL_INSTANTIATION
308# include "itkVoronoiSegmentationImageFilterBase.hxx"
309#endif
310
311#endif
Base class for all data objects in ITK.
Templated n-dimensional image class.
Definition itkImage.h:89
SmartPointer< Self > Pointer
Definition itkImage.h:96
Control indentation during Print() invocation.
Definition itkIndent.h:50
CellInterface< CellPixelType, CellTraits > CellType
Definition itkMesh.h:222
typename CellType::CellAutoPointer CellAutoPointer
Definition itkMesh.h:233
Implements transparent reference counting.
Implement the Sweep Line Algorithm for the construction of the 2D Voronoi Diagram.
Implements the 2-Dimensional Voronoi Diagram.
typename SeedsType::iterator SeedsIterator
std::vector< PointType > SeedsType
typename std::vector< VoronoiEdge >::iterator VoronoiEdgeIterator
typename MeshTraits::PointType PointType
typename INTvector::iterator NeighborIdIterator
void PrintSelf(std::ostream &os, Indent indent) const override
void drawVDline(VDImagePointer result, PointType p1, PointType p2, unsigned char color)
void DrawDiagram(VDImagePointer result, unsigned char incolor, unsigned char outcolor, unsigned char boundcolor)
void EnlargeOutputRequestedRegion(DataObject *output) override
void GetPixelIndexFromPolygon(PointTypeDeque vertlist, IndexList *PixelPool)
~VoronoiSegmentationImageFilterBase() override=default
void drawLine(PointType p1, PointType p2)
void FillPolygon(PointTypeDeque vertlist, OutputPixelType color=1)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70