PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ATrousWaveletTransform.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/ATrousWaveletTransform.h - Released 2025-02-21T12:13:32Z
8 // ----------------------------------------------------------------------------
9 // This file is part of the PixInsight Class Library (PCL).
10 // PCL is a multiplatform C++ framework for development of PixInsight modules.
11 //
12 // Copyright (c) 2003-2025 Pleiades Astrophoto S.L. All Rights Reserved.
13 //
14 // Redistribution and use in both source and binary forms, with or without
15 // modification, is permitted provided that the following conditions are met:
16 //
17 // 1. All redistributions of source code must retain the above copyright
18 // notice, this list of conditions and the following disclaimer.
19 //
20 // 2. All redistributions in binary form must reproduce the above copyright
21 // notice, this list of conditions and the following disclaimer in the
22 // documentation and/or other materials provided with the distribution.
23 //
24 // 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
25 // of their contributors, may be used to endorse or promote products derived
26 // from this software without specific prior written permission. For written
27 // permission, please contact info@pixinsight.com.
28 //
29 // 4. All products derived from this software, in any form whatsoever, must
30 // reproduce the following acknowledgment in the end-user documentation
31 // and/or other materials provided with the product:
32 //
33 // "This product is based on software from the PixInsight project, developed
34 // by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
35 //
36 // Alternatively, if that is where third-party acknowledgments normally
37 // appear, this acknowledgment must be reproduced in the product itself.
38 //
39 // THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
40 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
41 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
43 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44 // EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
45 // INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
46 // DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
49 // POSSIBILITY OF SUCH DAMAGE.
50 // ----------------------------------------------------------------------------
51 
52 #ifndef __PCL_ATrousWaveletTransform_h
53 #define __PCL_ATrousWaveletTransform_h
54 
56 
57 #include <pcl/Defs.h>
58 #include <pcl/Diagnostics.h>
59 
60 #include <pcl/AutoPointer.h>
61 #include <pcl/KernelFilter.h>
63 #include <pcl/SeparableFilter.h>
64 
65 #ifdef __PCL_BUILDING_PIXINSIGHT_APPLICATION
66 namespace pi
67 {
68  class PixInsightPerformanceAnalyzer;
69 }
70 #endif
71 
72 namespace pcl
73 {
74 
75 // ----------------------------------------------------------------------------
76 
77 class InterlacedTransformation;
78 
131 {
132 public:
133 
138 
143 
148 
168  {
171 
176 
182  {
183  kernelFilter = f.Clone();
184  PCL_CHECK( !kernelFilter.IsNull() )
185  }
186 
192  {
193  separableFilter = f.Clone();
194  PCL_CHECK( !separableFilter.IsNull() )
195  }
196 
202  {
203  if ( !s.kernelFilter.IsNull() )
204  {
205  kernelFilter = s.kernelFilter->Clone();
206  PCL_CHECK( !kernelFilter.IsNull() )
207  }
208  if ( !s.separableFilter.IsNull() )
209  {
210  separableFilter = s.separableFilter->Clone();
211  PCL_CHECK( !separableFilter.IsNull() )
212  }
213  }
214 
219  : kernelFilter( s.kernelFilter )
220  , separableFilter( s.separableFilter )
221  {
222  }
223 
229  {
230  }
231 
236  {
237  if ( s.kernelFilter.IsNull() )
238  kernelFilter.Destroy();
239  else
240  {
241  kernelFilter = s.kernelFilter->Clone();
242  PCL_CHECK( !kernelFilter.IsNull() )
243  }
244 
245  if ( s.separableFilter.IsNull() )
246  separableFilter.Destroy();
247  else
248  {
249  separableFilter = s.separableFilter->Clone();
250  PCL_CHECK( !separableFilter.IsNull() )
251  }
252 
253  return *this;
254  }
255 
259  WaveletScalingFunction& operator =( WaveletScalingFunction&& ) = default;
260 
265  bool IsSeparable() const
266  {
267  return !separableFilter.IsNull() && !separableFilter->IsEmpty();
268  }
269 
274  bool IsNonseparable() const
275  {
276  return !kernelFilter.IsNull() && !kernelFilter->IsEmpty();
277  }
278 
283  bool IsValid() const
284  {
285  return IsSeparable() || IsNonseparable();
286  }
287 
293  void Set( const KernelFilter& f )
294  {
295  separableFilter.Destroy();
296  kernelFilter = f.Clone();
297  PCL_CHECK( !kernelFilter.IsNull() )
298  }
299 
305  void Set( const SeparableFilter& f )
306  {
307  kernelFilter.Destroy();
308  separableFilter = f.Clone();
309  PCL_CHECK( !separableFilter.IsNull() )
310  }
311 
316  void Clear()
317  {
318  kernelFilter.Destroy();
319  separableFilter.Destroy();
320  }
321 
326  bool operator ==( const WaveletScalingFunction& other ) const
327  {
328  if ( !kernelFilter.IsNull() )
329  return !other.kernelFilter.IsNull() && *kernelFilter == *other.kernelFilter;
330  if ( !separableFilter.IsNull() )
331  return !other.separableFilter.IsNull() && *separableFilter == *other.separableFilter;
332  return other.kernelFilter.IsNull() && other.separableFilter.IsNull();
333  }
334  };
335 
345 
363  ATrousWaveletTransform( const WaveletScalingFunction& f, int n = 4, int d = 0 )
365  , m_scalingFunction( f )
366  {
367  PCL_CHECK( m_scalingFunction.IsValid() )
368  }
369 
388  ATrousWaveletTransform( const KernelFilter& f, int n = 4, int d = 0 )
390  , m_scalingFunction( f )
391  {
392  PCL_CHECK( m_scalingFunction.IsValid() )
393  }
394 
412  ATrousWaveletTransform( const SeparableFilter& f, int n = 4, int d = 0 )
414  , m_scalingFunction( f )
415  {
416  PCL_CHECK( m_scalingFunction.IsValid() )
417  }
418 
423 
428 
435  {
436  }
437 
441  ATrousWaveletTransform& operator =( const ATrousWaveletTransform& ) = default;
442 
446  ATrousWaveletTransform& operator =( ATrousWaveletTransform&& ) = default;
447 
453  {
454  return m_scalingFunction;
455  }
456 
464  {
465  DestroyLayers();
466  m_scalingFunction = f;
467  PCL_CHECK( m_scalingFunction.IsValid() )
468  }
469 
478  {
479  DestroyLayers();
480  m_scalingFunction.Set( f );
481  PCL_CHECK( m_scalingFunction.IsValid() )
482  }
483 
492  {
493  DestroyLayers();
494  m_scalingFunction.Set( f );
495  PCL_CHECK( m_scalingFunction.IsValid() )
496  }
497 
549  double NoiseKSigma( int j = 0, float k = 3,
550  float eps = 0.01, int n = 10, size_type* N = nullptr ) const;
551 
580  double NoiseKSigma( int j, const ImageVariant& image,
581  float low = 0.00002F, float high = 0.99998F,
582  float k = 3, float eps = 0.01, int n = 10, size_type* N = nullptr ) const;
583 
644  double NoiseMRS( const ImageVariant& image, const float sj[],
645  double sigma = 0, float k = 3, size_type* N = nullptr,
646  float low = 0.00002F, float high = 0.99998F ) const;
647 
648 private:
649 
650  /*
651  * Wavelet scaling function.
652  */
653  WaveletScalingFunction m_scalingFunction;
654 
655  /*
656  * Transform (decomposition)
657  */
658  void Transform( const pcl::Image& ) override;
659  void Transform( const pcl::DImage& ) override;
660  void Transform( const pcl::ComplexImage& ) override;
661  void Transform( const pcl::DComplexImage& ) override;
662  void Transform( const pcl::UInt8Image& ) override;
663  void Transform( const pcl::UInt16Image& ) override;
664  void Transform( const pcl::UInt32Image& ) override;
665 
666  void ValidateScalingFunction() const;
667 
668  double PCL_PA_NoiseMRS_F32( const Image&, const float [], double, int ) const;
669  double PCL_PA_NoiseMRS_F64( const DImage&, const float [], double, int ) const;
670 
671  friend class ATWTDecomposition;
672 
673 #ifdef __PCL_BUILDING_PIXINSIGHT_APPLICATION
674  friend class pi::PixInsightPerformanceAnalyzer;
675 #endif
676 };
677 
678 // ----------------------------------------------------------------------------
679 
692 
693 // ----------------------------------------------------------------------------
694 
695 } // pcl
696 
697 #endif // __PCL_ATrousWaveletTransform_h
698 
699 // ----------------------------------------------------------------------------
700 // EOF pcl/ATrousWaveletTransform.h - Released 2025-02-21T12:13:32Z
Discrete isotropic à trous wavelet transform.
ATrousWaveletTransform(const SeparableFilter &f, int n=4, int d=0)
double NoiseKSigma(int j=0, float k=3, float eps=0.01, int n=10, size_type *N=nullptr) const
void SetScalingFunction(const SeparableFilter &f)
ATrousWaveletTransform(const KernelFilter &f, int n=4, int d=0)
ATrousWaveletTransform(const WaveletScalingFunction &f, int n=4, int d=0)
ATrousWaveletTransform(const ATrousWaveletTransform &)=default
const WaveletScalingFunction & ScalingFunction() const
ATrousWaveletTransform(ATrousWaveletTransform &&)=default
double NoiseKSigma(int j, const ImageVariant &image, float low=0.00002F, float high=0.99998F, float k=3, float eps=0.01, int n=10, size_type *N=nullptr) const
double NoiseMRS(const ImageVariant &image, const float sj[], double sigma=0, float k=3, size_type *N=nullptr, float low=0.00002F, float high=0.99998F) const
void SetScalingFunction(const WaveletScalingFunction &f)
void SetScalingFunction(const KernelFilter &f)
A smart pointer with exclusive object ownership and optional automatic object destruction.
Definition: AutoPointer.h:246
bool IsNull() const
Definition: AutoPointer.h:458
Implements a generic, two-dimensional, shared or local image.
Definition: Image.h:278
Acts like a union for all types of images in PCL, with optional class-wide ownership of transported i...
Definition: ImageVariant.h:322
Kernel filter in two dimensions.
Definition: KernelFilter.h:90
virtual KernelFilter * Clone() const
Definition: KernelFilter.h:190
Base class of all redundant multiscale transforms.
Separable filter in two dimensions.
virtual SeparableFilter * Clone() const
bool operator==(const Array< T, A > &x1, const Array< T, A > &x2) noexcept
Definition: Array.h:2285
size_t size_type
Definition: Defs.h:609
PCL root namespace.
Definition: AbstractImage.h:77
The scaling function of a wavelet transform.
AutoPointer< SeparableFilter > separableFilter
Separable filter.
AutoPointer< KernelFilter > kernelFilter
Non-separable kernel filter.