// ____ ______ __ // / __ \ / ____// / // / /_/ // / / / // / ____// /___ / /___ PixInsight Class Library // /_/ \____//_____/ PCL 2.4.23 // ---------------------------------------------------------------------------- // pcl/IntegerResample.h - Released 2022-03-12T18:59:29Z // ---------------------------------------------------------------------------- // This file is part of the PixInsight Class Library (PCL). // PCL is a multiplatform C++ framework for development of PixInsight modules. // // Copyright (c) 2003-2022 Pleiades Astrophoto S.L. All Rights Reserved. // // Redistribution and use in both source and binary forms, with or without // modification, is permitted provided that the following conditions are met: // // 1. All redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // 2. All redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names // of their contributors, may be used to endorse or promote products derived // from this software without specific prior written permission. For written // permission, please contact info@pixinsight.com. // // 4. All products derived from this software, in any form whatsoever, must // reproduce the following acknowledgment in the end-user documentation // and/or other materials provided with the product: // // "This product is based on software from the PixInsight project, developed // by Pleiades Astrophoto and its contributors (https://pixinsight.com/)." // // Alternatively, if that is where third-party acknowledgments normally // appear, this acknowledgment must be reproduced in the product itself. // // THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, // EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS // INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE, // DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // ---------------------------------------------------------------------------- #ifndef __PCL_IntegerResample_h #define __PCL_IntegerResample_h /// \file pcl/IntegerResample.h #include #include #include namespace pcl { // ---------------------------------------------------------------------------- /*! * \namespace pcl::IntegerDownsampleMode * \brief Downsampling operations for IntegerResample. * * * * * * *
IntegerDownsampleMode::Average Downsample by averaging source pixels
IntegerDownsampleMode::Median Downsample by calculating the median of source pixels
IntegerDownsampleMode::Maximum Downsample by the maximum source pixel value
IntegerDownsampleMode::Minimum Downsample by the minimum source pixel value
*/ namespace IntegerDownsampleMode { enum value_type { Average, Median, Maximum, Minimum }; } // ---------------------------------------------------------------------------- /*! * \class IntegerResample * \brief A geometric transformation to resample images by integer ratios. * * ### TODO: Write a detailed description for %IntegerResample. */ class PCL_CLASS IntegerResample : public GeometricTransformation { public: /*! * Represents a downsample operation. */ typedef IntegerDownsampleMode::value_type downsample_mode; /*! * Constructs an %IntegerResample object with zoom factor \a z and * downsampling mode \a m. */ IntegerResample( int zoom = 0, downsample_mode mode = IntegerDownsampleMode::Average ) : m_zoomFactor( zoom ) , m_downsampleMode( mode ) { } /*! * Copy constructor. */ IntegerResample( const IntegerResample& ) = default; /*! * Returns the current zoom factor of this %IntegerResample object. */ int ZoomFactor() const { return m_zoomFactor; } /*! * Sets the \a zoom factor for this %IntegerResample object. * * Positive zoom factors are interpreted as magnifying factors; negative * zoom factors are reduction factors. For example: * * * * * * * * *
Zoom Factor Resampling ratio (original pixels : resampled pixels)
-3 1:3 (1/3 reduction)
-2 1:2 (1/2 reduction)
1 1:1 (actual pixels)
2 2:1 (x2 magnification)
3 3:1 (x3 magnification)
* * \note Zoom factors 0 and -1 should not be used explicitly; they are * reserved for internal use, and there is no guarantee that future versions * of PCL will continue accepting them. */ void SetZoomFactor( int zoom ) { m_zoomFactor = (zoom < -1 || zoom > +1) ? zoom : +1; } /*! * Returns the pixel scaling factor applied by this instance, or the * equivalent image resampling ratio. See SetZoomFactor() for the * correspondence between zoom factors and resampling ratios. */ double ScalingFactor() const { if ( m_zoomFactor == 0 ) return 1; return (m_zoomFactor < 0) ? 1.0/(-m_zoomFactor) : double( m_zoomFactor ); } /*! * Returns the current downsample mode of this %IntegerResample object. */ downsample_mode DownsampleMode() const { return m_downsampleMode; } /*! * Sets the downsample \e mode for this %IntegerResample object. * * The downsample mode defines an statistical operation that the integer * resampling algorithms applies to the set of original pixels that produce * each pixel in the subsampled image. The default mode is * IntegerDownsampleMode::Average, which calculates the mean of source * pixels. The Median, Minimum and Maximum modes turn the integer * downsampling algorithm into a morphological downsampling * operation with very interesting properties and applications. */ void SetDownsampleMode( downsample_mode mode ) { m_downsampleMode = mode; } /*! */ void GetNewSizes( int& width, int& height ) const override; protected: /* * Zoom factor: > 1 -> zoom in, < 1 -> zoom out, from -1 to +1 -> no change. */ int m_zoomFactor = 0; /* * Downsample mode: average, median, maximum, minimum; see enumeration above. */ downsample_mode m_downsampleMode = IntegerDownsampleMode::Average; // Inherited from ImageTransformation. void Apply( pcl::Image& ) const override; void Apply( pcl::DImage& ) const override; void Apply( pcl::UInt8Image& ) const override; void Apply( pcl::UInt16Image& ) const override; void Apply( pcl::UInt32Image& ) const override; }; // ---------------------------------------------------------------------------- } // pcl #endif // __PCL_IntegerResample_h // ---------------------------------------------------------------------------- // EOF pcl/IntegerResample.h - Released 2022-03-12T18:59:29Z