ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkPatchBasedDenoisingImageFilter.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 itkPatchBasedDenoisingImageFilter_h
19#define itkPatchBasedDenoisingImageFilter_h
20
24#include "itkVector.h"
25#include "itkVectorImage.h"
26#include "itkRGBPixel.h"
27#include "itkRGBAPixel.h"
29#include "itkFixedArray.h"
30#include "itkMatrix.h"
32#include <type_traits>
33
34#include <vector>
35#include "ITKDenoisingExport.h"
36
37namespace itk
38{
60template <typename TInputImage, typename TOutputImage>
61class ITK_TEMPLATE_EXPORT PatchBasedDenoisingImageFilter
62 : public PatchBasedDenoisingBaseImageFilter<TInputImage, TOutputImage>
63{
64public:
65 ITK_DISALLOW_COPY_AND_MOVE(PatchBasedDenoisingImageFilter);
66
72 using typename Superclass::OutputImagePointer;
73
75 itkNewMacro(Self);
76
78 itkOverrideGetNameOfClassMacro(PatchBasedDenoisingImageFilter);
79
81 using typename Superclass::InputImageType;
82 using typename Superclass::OutputImageType;
83
85 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
86
88 using InputImageRegionType = typename InputImageType::RegionType;
89
93
96 using typename Superclass::PixelType;
97 using typename Superclass::PixelValueType;
98
104
106 using typename Superclass::ListAdaptorType;
107 using typename Superclass::PatchRadiusType;
110 using typename Superclass::PatchWeightsType;
111
116
124 using EigenValuesCacheType = std::vector<EigenValuesArrayType>;
125 using EigenVectorsCacheType = std::vector<EigenVectorsMatrixType>;
126
139
145 itkSetMacro(UseSmoothDiscPatchWeights, bool);
146 itkBooleanMacro(UseSmoothDiscPatchWeights);
147 itkGetConstMacro(UseSmoothDiscPatchWeights, bool);
154 void
156 itkGetConstMacro(KernelBandwidthSigma, RealArrayType);
163 itkSetClampMacro(KernelBandwidthFractionPixelsForEstimation, double, 0.01, 1.0);
164 itkGetConstReferenceMacro(KernelBandwidthFractionPixelsForEstimation, double);
169 itkSetMacro(ComputeConditionalDerivatives, bool);
170 itkBooleanMacro(ComputeConditionalDerivatives);
171 itkGetConstMacro(ComputeConditionalDerivatives, bool);
185 itkSetMacro(UseFastTensorComputations, bool);
186 itkBooleanMacro(UseFastTensorComputations);
187 itkGetConstMacro(UseFastTensorComputations, bool);
190 static constexpr unsigned int MaxSigmaUpdateIterations = 20;
191
199 itkSetClampMacro(KernelBandwidthMultiplicationFactor, double, 0.01, 100);
200 itkGetConstReferenceMacro(KernelBandwidthMultiplicationFactor, double);
205 void
206 SetNoiseSigma(const RealType & sigma);
207
208 itkGetConstMacro(NoiseSigma, RealType);
209
212 itkSetObjectMacro(Sampler, BaseSamplerType);
213 itkGetModifiableObjectMacro(Sampler, BaseSamplerType);
216 itkGetConstMacro(NumIndependentComponents, unsigned int);
217
218protected:
221 void
222 PrintSelf(std::ostream & os, Indent indent) const override;
223
225 virtual void
227
229 void
231
232 void
234
235 void
237
238 template <typename T, typename U = void>
239 using DisableIfMultiComponent = typename std::enable_if<std::is_same_v<T, typename NumericTraits<T>::ValueType>, U>;
240
241 template <typename T, typename U = void>
242 using EnableIfMultiComponent = typename std::enable_if<!std::is_same_v<T, typename NumericTraits<T>::ValueType>, U>;
243
244
251 template <typename T>
253 GetComponent(const T pix, unsigned int itkNotUsed(idx)) const
254 {
255 // The enable if idiom is used to overload this method for both
256 // scalars and multi-component types. By exploiting that
257 // NumericTraits' ValueType type alias (defines the per-element type
258 // for multi-component types ) is different then the parameterize
259 // type, the bracket operator is used only for multi-component
260 // types.
261 return pix;
262 }
263
264 template <typename T>
265 typename EnableIfMultiComponent<T, typename NumericTraits<T>::ValueType>::type
266 GetComponent(const T & pix, unsigned int idx) const
267 {
268 return pix[idx];
269 }
270
272 template <typename T>
273 void
275 unsigned int itkNotUsed(idx),
277 {
278 pix = val;
279 }
280
281 template <typename T>
282 void
283 SetComponent(T & pix, unsigned int idx, typename EnableIfMultiComponent<T, RealValueType>::type val) const
284 {
285 pix[idx] = val;
286 }
287
290
291 void
293 {
294 if (this->GetComponentSpace() == Superclass::ComponentSpaceEnum::RIEMANNIAN)
295 {
297 }
298 else
299 {
301 }
302 }
303
304 template <typename TImageType>
305 typename DisableIfMultiComponent<typename TImageType::PixelType>::type
306 ComputeMinMax(const TImageType * img)
307 {
308 DispatchedMinMax(img);
309 }
310
311 template <typename TImageType>
312 typename EnableIfMultiComponent<typename TImageType::PixelType>::type
313 ComputeMinMax(const TImageType * img)
314 {
316 }
317
326 void
329 const RealArrayType & weight,
330 bool useCachedComputations,
331 SizeValueType cacheIndex,
332 EigenValuesCacheType & eigenValsCache,
333 EigenVectorsCacheType & eigenVecsCache,
334 RealType & diff,
335 RealArrayType & norm)
336 {
337 if (this->GetComponentSpace() == Superclass::ComponentSpaceEnum::RIEMANNIAN)
338 {
340 a, b, weight, useCachedComputations, cacheIndex, eigenValsCache, eigenVecsCache, diff, norm);
341 }
342 else
343 {
345 a, b, weight, useCachedComputations, cacheIndex, eigenValsCache, eigenVecsCache, diff, norm);
346 }
347 }
348
349 template <typename PixelT>
350 void
352 const PixelT & b,
353 const RealArrayType & weight,
354 bool useCachedComputations,
355 SizeValueType cacheIndex,
356 EigenValuesCacheType & eigenValsCache,
357 EigenVectorsCacheType & eigenVecsCache,
358 RealType & diff,
359 RealArrayType & norm)
360 {
362 a, b, weight, useCachedComputations, cacheIndex, eigenValsCache, eigenVecsCache, diff, norm);
363 }
364
370 {
371 if (this->GetComponentSpace() == Superclass::ComponentSpaceEnum::RIEMANNIAN)
372 {
373 return this->AddExponentialMapUpdate(a, b);
374 }
375
376 return this->AddEuclideanUpdate(a, b);
377 }
378
379 template <typename RealT>
381 AddUpdate(const RealT & a, const RealType & b)
382 {
383 return this->AddEuclideanUpdate(a, b);
384 }
385
386 virtual void
388
389 void
390 Initialize() override;
391
392 virtual void
394
395 void
397
398 virtual void
400
401 void
403
404 void
405 ComputeKernelBandwidthUpdate() override; // derived from base class;
406
407 // define here
408
409 virtual ThreadDataStruct
411 const int itkNotUsed(threadId),
412 ThreadDataStruct threadData);
413
414 virtual RealArrayType
416
417 void
419
420 virtual ThreadDataStruct
422 const int threadId,
423 ThreadDataStruct threadData);
424
425 virtual RealType
427 typename ListAdaptorType::Pointer & inList,
428 BaseSamplerPointer & sampler,
429 ThreadDataStruct & threadData);
430
431 void
432 ApplyUpdate() override;
433
434 virtual void
435 ThreadedApplyUpdate(const InputImageRegionType & regionToProcess, const int itkNotUsed(threadId));
436
437 void
439 {}
440
441 virtual void
442 SetThreadData(int threadId, const ThreadDataStruct & data);
443
444 virtual ThreadDataStruct
445 GetThreadData(int threadId);
446
447private:
452
457
462
463 template <typename TInputImageType>
464 void
465 DispatchedMinMax(const TInputImageType * img);
466
467 template <typename TInputImageType>
468 void
469 DispatchedArrayMinMax(const TInputImageType * img);
470
471 template <typename TInputImageType>
472 void
473 DispatchedVectorMinMax(const TInputImageType * img);
474
475 template <typename TInputImageType>
476 void
477 DispatchedRiemannianMinMax(const TInputImageType * img);
478
483
486 const int itkNotUsed(threadId),
487 const InputImageType * img,
488 ThreadDataStruct threadData);
489
490 virtual void
492
493 void
495 const PixelType & b,
496 const RealArrayType & weight,
497 bool useCachedComputations,
498 SizeValueType cacheIndex,
499 EigenValuesCacheType & eigenValsCache,
500 EigenVectorsCacheType & eigenVecsCache,
501 RealType & diff,
502 RealArrayType & norm);
503
505 void
507 const DiffusionTensor3D<PixelValueType> & spdMatrixB,
508 const RealArrayType & weight,
509 bool useCachedComputations,
510 SizeValueType cacheIndex,
511 EigenValuesCacheType & eigenValsCache,
512 EigenVectorsCacheType & eigenVecsCache,
513 RealType & symMatrixLogMap,
514 RealArrayType & geodesicDist);
515
516 template <typename TensorValueT>
517 void
519 FixedArray<TensorValueT, 3> & eigenVals,
520 Matrix<TensorValueT, 3, 3> & eigenVecs);
521
523 AddEuclideanUpdate(const RealType & a, const RealType & b);
524
528 const DiffusionTensor3D<RealValueType> & symMatrix);
529
535
536 std::vector<ThreadDataStruct> m_ThreadData{};
537
539 typename OutputImageType::Pointer m_UpdateBuffer{};
540
541 unsigned int m_NumPixelComponents{ 0 };
542 unsigned int m_NumIndependentComponents{ 0 };
543 unsigned int m_TotalNumberPixels{ 0 };
544
546
548
557 double m_MinSigma{};
563
566 bool m_NoiseSigmaIsSet{ false };
567
569 typename ListAdaptorType::Pointer m_SearchSpaceList{};
570};
571} // end namespace itk
572
573#ifndef ITK_MANUAL_INSTANTIATION
574# include "itkPatchBasedDenoisingImageFilter.hxx"
575#endif
576
577#endif
Array class with size defined at construction time.
Definition itkArray.h:48
Represent a diffusion tensor as used in DTI images.
Simulate a standard C array with copy semantics.
A multi-dimensional iterator templated over image type that walks a region of pixels.
A multi-dimensional iterator templated over image type that walks a region of pixels.
typename OutputImageType::Pointer OutputImagePointer
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
A templated class holding a M x N size Matrix.
Definition itkMatrix.h:53
typename NumericTraits< PixelType >::ValueType PixelValueType
typename itk::Statistics::ImageToNeighborhoodSampleAdaptor< OutputImageType, BoundaryConditionType > ListAdaptorType
virtual ComponentSpaceEnum GetComponentSpace() const
typename ListAdaptorType::NeighborhoodRadiusType PatchRadiusType
ConstNeighborhoodIterator< InputImageType, BoundaryConditionType > InputImagePatchIterator
virtual void ThreadedApplyUpdate(const InputImageRegionType &regionToProcess, const int threadId)
void DispatchedArrayMinMax(const TInputImageType *img)
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION RiemannianMinMaxThreaderCallback(void *arg)
void Compute3x3EigenAnalysis(const DiffusionTensor3D< TensorValueT > &spdMatrix, FixedArray< TensorValueT, 3 > &eigenVals, Matrix< TensorValueT, 3, 3 > &eigenVecs)
void PrintSelf(std::ostream &os, Indent indent) const override
PatchBasedDenoisingBaseImageFilter< TInputImage, TOutputImage > Superclass
ThreadDataStruct ThreadedRiemannianMinMax(const InputImageRegionType &regionToProcess, const int threadId, const InputImageType *img, ThreadDataStruct threadData)
virtual ThreadDataStruct ThreadedComputeSigmaUpdate(const InputImageRegionType &regionToProcess, const int threadId, ThreadDataStruct threadData)
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION ComputeImageUpdateThreaderCallback(void *arg)
typename itk::Statistics::ImageToNeighborhoodSampleAdaptor< OutputImageType, BoundaryConditionType > ListAdaptorType
void DispatchedMinMax(const TInputImageType *img)
DisableIfMultiComponent< typenameTImageType::PixelType >::type ComputeMinMax(const TImageType *img)
void ComputeDifferenceAndWeightedSquaredNorm(const DiffusionTensor3D< PixelValueType > &a, const DiffusionTensor3D< PixelValueType > &b, const RealArrayType &weight, bool useCachedComputations, SizeValueType cacheIndex, EigenValuesCacheType &eigenValsCache, EigenVectorsCacheType &eigenVecsCache, RealType &diff, RealArrayType &norm)
void ComputeMinMax(const Image< DiffusionTensor3D< PixelValueType >, ImageDimension > *img)
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION ApplyUpdateThreaderCallback(void *arg)
itk::Statistics::RegionConstrainedSubsampler< PatchSampleType, InputImageRegionType > BaseSamplerType
virtual ThreadDataStruct ThreadedComputeImageUpdate(const InputImageRegionType &regionToProcess, const int threadId, ThreadDataStruct threadData)
virtual void SetThreadData(int threadId, const ThreadDataStruct &data)
void ComputeLogMapAndWeightedSquaredGeodesicDifference(const DiffusionTensor3D< PixelValueType > &spdMatrixA, const DiffusionTensor3D< PixelValueType > &spdMatrixB, const RealArrayType &weight, bool useCachedComputations, SizeValueType cacheIndex, EigenValuesCacheType &eigenValsCache, EigenVectorsCacheType &eigenVecsCache, RealType &symMatrixLogMap, RealArrayType &geodesicDist)
std::vector< EigenVectorsMatrixType > EigenVectorsCacheType
virtual void InitializePatchWeightsSmoothDisc()
typename std::enable_if<!std::is_same_v< T, typename NumericTraits< T >::ValueType >, U > EnableIfMultiComponent
RealType AddUpdate(const RealT &a, const RealType &b)
DisableIfMultiComponent< T, T >::type GetComponent(const T pix, unsigned int idx) const
A method to generically get a component.
typename BaseSamplerType::Pointer BaseSamplerPointer
virtual ThreadDataStruct GetThreadData(int threadId)
void ComputeKernelBandwidthUpdate() override
void SetKernelBandwidthSigma(const RealArrayType &kernelSigma)
void SetComponent(T &pix, unsigned int idx, typename DisableIfMultiComponent< T, RealValueType >::type val) const
A method to generically set a component.
RealType AddExponentialMapUpdate(const DiffusionTensor3D< RealValueType > &spdMatrix, const DiffusionTensor3D< RealValueType > &symMatrix)
void ComputeDifferenceAndWeightedSquaredNorm(const PixelT &a, const PixelT &b, const RealArrayType &weight, bool useCachedComputations, SizeValueType cacheIndex, EigenValuesCacheType &eigenValsCache, EigenVectorsCacheType &eigenVecsCache, RealType &diff, RealArrayType &norm)
RealType AddEuclideanUpdate(const RealType &a, const RealType &b)
void ComputeSignedEuclideanDifferenceAndWeightedSquaredNorm(const PixelType &a, const PixelType &b, const RealArrayType &weight, bool useCachedComputations, SizeValueType cacheIndex, EigenValuesCacheType &eigenValsCache, EigenVectorsCacheType &eigenVecsCache, RealType &diff, RealArrayType &norm)
typename std::enable_if< std::is_same_v< T, typename NumericTraits< T >::ValueType >, U > DisableIfMultiComponent
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION ComputeSigmaUpdateThreaderCallback(void *arg)
void SetComponent(T &pix, unsigned int idx, typename EnableIfMultiComponent< T, RealValueType >::type val) const
EnableIfMultiComponent< T, typenameNumericTraits< T >::ValueType >::type GetComponent(const T &pix, unsigned int idx) const
typename NumericTraits< PixelValueType >::RealType RealValueType
EnableIfMultiComponent< typenameTImageType::PixelType >::type ComputeMinMax(const TImageType *img)
ImageRegionIterator< OutputImageType > OutputImageRegionIteratorType
typename InputImageType::RegionType InputImageRegionType
void SetNoiseSigma(const RealType &sigma)
typename NumericTraits< PixelType >::RealType RealType
std::vector< EigenValuesArrayType > EigenValuesCacheType
typename BaseSamplerType::InstanceIdentifier InstanceIdentifier
ImageRegionConstIterator< InputImageType > InputImageRegionConstIteratorType
virtual RealArrayType ResolveSigmaUpdate()
void DispatchedVectorMinMax(const TInputImageType *img)
void DispatchedRiemannianMinMax(const TInputImageType *img)
virtual RealType ComputeGradientJointEntropy(InstanceIdentifier id, typename ListAdaptorType::Pointer &inList, BaseSamplerPointer &sampler, ThreadDataStruct &threadData)
void GenerateInputRequestedRegion() override
RealType AddUpdate(const DiffusionTensor3D< RealValueType > &a, const RealType &b)
Implements transparent reference counting.
This an abstract subsampler that constrains subsamples to be contained within a given image region.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86
itk::ITK_THREAD_RETURN_TYPE ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION