PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
FFTConvolution.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/FFTConvolution.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_FFTConvolution_h
53 #define __PCL_FFTConvolution_h
54 
56 
57 #include <pcl/Defs.h>
58 #include <pcl/Diagnostics.h>
59 
60 #include <pcl/AutoPointer.h>
62 #include <pcl/KernelFilter.h>
63 #include <pcl/ParallelProcess.h>
64 
65 namespace pcl
66 {
67 
68 // ----------------------------------------------------------------------------
69 
87 class PCL_CLASS FFTConvolution : public ImageTransformation, public ParallelProcess
88 {
89 public:
90 
98  FFTConvolution() = default;
99 
109  FFTConvolution( const KernelFilter& filter )
110  : m_filter( filter.Clone() )
111  {
112  PCL_CHECK( bool( m_filter ) )
113  }
114 
129  : m_image( f )
130  {
131  PCL_CHECK( bool( m_image ) )
132  }
133 
138  : ImageTransformation( x )
139  , ParallelProcess( x )
140  , m_image( x.m_image )
141  , m_outputRealCmp( x.m_outputRealCmp )
142  {
143  if ( x.m_filter )
144  m_filter = x.m_filter->Clone();
145  }
146 
151 
155  ~FFTConvolution() override
156  {
157  }
158 
162  FFTConvolution& operator =( const FFTConvolution& x )
163  {
164  if ( &x != this )
165  {
166  (void)ImageTransformation::operator =( x );
167  (void)ParallelProcess::operator =( x );
168  DestroyFilter();
169  if ( x.m_filter )
170  m_filter = x.m_filter->Clone();
171  else
172  m_image = x.m_image;
173  m_outputRealCmp = x.m_outputRealCmp;
174  }
175  return *this;
176  }
177 
181  FFTConvolution& operator =( FFTConvolution&& ) = default;
182 
187  bool UsingFilter() const
188  {
189  return m_filter;
190  }
191 
199  const KernelFilter& Filter() const
200  {
201  PCL_PRECONDITION( bool( m_filter ) )
202  return *m_filter;
203  }
204 
215  const ImageVariant& FilterImage() const
216  {
217  return m_image;
218  }
219 
228  void SetFilter( const KernelFilter& filter )
229  {
230  DestroyFilter();
231  m_filter = filter.Clone();
232  PCL_CHECK( bool( m_filter ) )
233  }
234 
245  void SetFilter( const ImageVariant& filter )
246  {
247  DestroyFilter();
248  m_image = filter;
249  PCL_CHECK( bool( m_image ) )
250  }
251 
274  {
275  return m_h;
276  }
277 
289  {
290  return m_outputRealCmp;
291  }
292 
304  {
305  return !m_outputRealCmp;
306  }
307 
314  void EnableRealComponentOutput( bool enable = true )
315  {
316  m_outputRealCmp = enable;
317  }
318 
325  void EnableMagnitudeOutput( bool enable = true )
326  {
327  m_outputRealCmp = !enable;
328  }
329 
349  static int FasterThanNonseparableFilterSize( int width = 0, int height = 0 );
350 
351 protected:
352 
353  /*
354  * The response function for convolution is defined as either a KernelFilter
355  * instance or as an image. In the latter case, the image transported by the
356  * ImageVariant must remain valid while this object is actively used.
357  */
358  AutoPointer<KernelFilter> m_filter;
359  ImageVariant m_image;
360  bool m_outputRealCmp = false;
361 
362  /*
363  * Internal DFT of the response function. Initially zero. This matrix is
364  * generated/reused/regenerated as this object is applied to convolve
365  * different target images. It is destroyed when a new filter is specified.
366  */
367  mutable AutoPointer<ComplexImage> m_h;
368 
369  /*
370  * In-place Fourier-based 2-D convolution algorithm.
371  */
372  void Apply( pcl::Image& ) const override;
373  void Apply( pcl::DImage& ) const override;
374  void Apply( pcl::UInt8Image& ) const override;
375  void Apply( pcl::UInt16Image& ) const override;
376  void Apply( pcl::UInt32Image& ) const override;
377  void Apply( pcl::ComplexImage& ) const override;
378  void Apply( pcl::DComplexImage& ) const override;
379 
380  friend class PCL_FFTConvolutionEngine;
381 
382 private:
383 
384  void DestroyFilter()
385  {
386  m_filter.Destroy();
387  m_image.Free();
388  m_h.Destroy();
389  }
390 
391  void Validate() const;
392  void ValidateFilter() const;
393 };
394 
395 // ----------------------------------------------------------------------------
396 
397 } // pcl
398 
399 #endif // __PCL_FFTConvolution_h
400 
401 // ----------------------------------------------------------------------------
402 // EOF pcl/FFTConvolution.h - Released 2025-02-21T12:13:32Z
A smart pointer with exclusive object ownership and optional automatic object destruction.
Definition: AutoPointer.h:246
Fourier-based two-dimensional convolution in the spatial domain.
const KernelFilter & Filter() const
void EnableMagnitudeOutput(bool enable=true)
void Apply(pcl::UInt16Image &) const override
void SetFilter(const KernelFilter &filter)
bool IsRealComponentOutputEnabled() const
FFTConvolution(const FFTConvolution &x)
bool IsMagnitudeOutputEnabled() const
void Apply(pcl::DComplexImage &) const override
void Apply(pcl::DImage &) const override
void Apply(pcl::UInt32Image &) const override
~FFTConvolution() override
void Apply(pcl::UInt8Image &) const override
const ImageVariant & FilterImage() const
void EnableRealComponentOutput(bool enable=true)
FFTConvolution()=default
FFTConvolution(const ImageVariant &f)
FFTConvolution(const KernelFilter &filter)
const ComplexImage * ResponseFunctionDFT() const
void SetFilter(const ImageVariant &filter)
void Apply(pcl::ComplexImage &) const override
FFTConvolution(FFTConvolution &&)=default
bool UsingFilter() const
void Apply(pcl::Image &) const override
Implements a generic, two-dimensional, shared or local image.
Definition: Image.h:278
Root base class of all PCL image transformations.
Acts like a union for all types of images in PCL, with optional class-wide ownership of transported i...
Definition: ImageVariant.h:322
ImageVariant & Free()
Kernel filter in two dimensions.
Definition: KernelFilter.h:90
virtual KernelFilter * Clone() const
Definition: KernelFilter.h:190
A process using multiple concurrent execution threads.
static int FasterThanNonseparableFilterSize(int width=0, int height=0)
PCL root namespace.
Definition: AbstractImage.h:77