ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBSplineScatteredDataPointSetToImageFilter.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 itkBSplineScatteredDataPointSetToImageFilter_h
19#define itkBSplineScatteredDataPointSetToImageFilter_h
20
22
25#include "itkVectorContainer.h"
26
27#include "vnl/vnl_matrix.h"
28
29namespace itk
30{
120
121template <typename TInputPointSet, typename TOutputImage>
123 : public PointSetToImageFilter<TInputPointSet, TOutputImage>
124{
125public:
126 ITK_DISALLOW_COPY_AND_MOVE(BSplineScatteredDataPointSetToImageFilter);
127
133
135 itkNewMacro(Self);
136
138 itkOverrideGetNameOfClassMacro(BSplineScatteredDataPointSetToImageFilter);
139
141 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
142
143 using ImageType = TOutputImage;
144 using PointSetType = TInputPointSet;
145
147 using PixelType = typename ImageType::PixelType;
148 using RegionType = typename ImageType::RegionType;
150 using SizeType = typename ImageType::SizeType;
151 using IndexType = typename ImageType::IndexType;
152
154 using PointType = typename PointSetType::PointType;
155 using PointSetPointer = typename PointSetType::Pointer;
156 using PointDataType = typename PointSetType::PixelType;
157 using PointDataContainerType = typename PointSetType::PointDataContainer;
158 using PointDataContainerPointer = typename PointDataContainerType::Pointer;
159
161 using RealType = float;
163
171
178
179
184 void
185 SetSplineOrder(unsigned int);
186
190 void
192
196 itkGetConstReferenceMacro(SplineOrder, ArrayType);
197
203 itkSetMacro(NumberOfControlPoints, ArrayType);
204 itkGetConstReferenceMacro(NumberOfControlPoints, ArrayType);
210 itkGetConstReferenceMacro(CurrentNumberOfControlPoints, ArrayType);
211
216 void
217 SetNumberOfLevels(unsigned int);
218
223 void
225
230 itkGetConstReferenceMacro(NumberOfLevels, ArrayType);
231
239 itkSetMacro(BSplineEpsilon, RealType);
240 itkGetConstMacro(BSplineEpsilon, RealType);
259 itkSetMacro(CloseDimension, ArrayType);
260 itkGetConstReferenceMacro(CloseDimension, ArrayType);
264 void
266
271 itkSetMacro(GenerateOutputImage, bool);
272 itkGetConstReferenceMacro(GenerateOutputImage, bool);
273 itkBooleanMacro(GenerateOutputImage);
278 {
279 return static_cast<PointDataImageType *>(this->ProcessObject::GetOutput(1));
280 }
281
282protected:
285
286 void
287 PrintSelf(std::ostream & os, Indent indent) const override;
288
289 void
291
292 void
294 {
295 itkExceptionMacro("This class requires threadId so it must use classic multi-threading model");
296 }
297
298 void
300
301 void
303
304 unsigned int
305 SplitRequestedRegion(unsigned int, unsigned int, RegionType &) override;
306
307 void
308 GenerateData() override;
309
310private:
313 void
315
318 void
320
322 void
324
326 void
328
330 void
332
335 void
337
340 void
342
346 NumberToIndex(const unsigned int, const SizeType);
347
348 bool m_DoMultilevel{ false };
350 bool m_UsePointWeights{ false };
351 unsigned int m_MaximumNumberOfLevels{ 1 };
352 unsigned int m_CurrentLevel{ 0 };
358
360
363
365
367
369
374
375 std::vector<RealImagePointer> m_OmegaLatticePerThread{};
376 std::vector<PointDataImagePointer> m_DeltaLatticePerThread{};
377
378 RealType m_BSplineEpsilon{ static_cast<RealType>(1e-3) };
379 bool m_IsFittingComplete{ false };
381};
382} // end namespace itk
383
384#ifndef ITK_MANUAL_INSTANTIATION
385# include "itkBSplineScatteredDataPointSetToImageFilter.hxx"
386#endif
387
388#endif
BSpline kernel used for density estimation and nonparametric regression.
void ThreadedGenerateDataForReconstruction(const RegionType &, ThreadIdType)
void PrintSelf(std::ostream &os, Indent indent) const override
IndexType NumberToIndex(const unsigned int, const SizeType)
void SetPointWeights(WeightsContainerType *weights)
unsigned int SplitRequestedRegion(unsigned int, unsigned int, RegionType &) override
void ThreadedGenerateDataForUpdatingResidualValues(const RegionType &, ThreadIdType)
void CollapsePhiLattice(PointDataImageType *, PointDataImageType *, const RealType, const unsigned int)
~BSplineScatteredDataPointSetToImageFilter() override=default
PointSetToImageFilter< TInputPointSet, TOutputImage > Superclass
void ThreadedGenerateDataForFitting(const RegionType &, ThreadIdType)
void ThreadedGenerateData(const RegionType &, ThreadIdType) override
BSpline kernel used for density estimation and nonparametric regression.
Simulate a standard C array with copy semantics.
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
DataObject * GetOutput(const DataObjectIdentifierType &key)
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType
detail::VectorContainer< std::conditional_t< std::is_void_v< T2 >, SizeValueType, T1 >, std::conditional_t< std::is_void_v< T2 >, T1, T2 > > VectorContainer