// ____ ______ __ // / __ \ / ____// / // / /_/ // / / / // / ____// /___ / /___ PixInsight Class Library // /_/ \____//_____/ PCL 2.4.23 // ---------------------------------------------------------------------------- // pcl/ColorSpace.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_ColorSpace_h #define __PCL_ColorSpace_h /// \file pcl/ColorSpace.h #include #include namespace pcl { // ---------------------------------------------------------------------------- /*! * \namespace pcl::ColorSpace * \brief Supported color spaces * * Current versions of the PixInsight platform support the following color * spaces for images: * * * * * * * * * * *
ColorSpace::Unknown Corresponds to an unknown or unsupported color space
ColorSpace::Gray Grayscale monochrome space
ColorSpace::RGB RGB color space
ColorSpace::CIEXYZ CIE XYZ color space
ColorSpace::CIELab CIE L*a*b* color space
ColorSpace::CIELch CIE L*c*h* color space
ColorSpace::HSV HSV color space: Hue, Saturation, Value
ColorSpace::HSI HSI color space: Hue, Saturation, Intensity
*/ namespace ColorSpace { enum value_type { Unknown = -1, // Corresponds to an unknown or unsupported color space Gray = 0, // Grayscale monochrome space RGB, // RGB color space CIEXYZ, // CIE XYZ color space CIELab, // CIE L*a*b* color space CIELch, // CIE L*c*h* color space HSV, // HSV color space: Hue, Saturation, Value HSI, // HSI color space: Hue, Saturation, Intensity NumberOfColorSpaces }; /*! * Returns the number of nominal channels in the specified color space. */ inline int NumberOfNominalChannels( int colorSpace ) { return (colorSpace == Gray) ? 1 : 3; } /*! * Returns a string representing the name of a color space. * * \param colorSpace A supported color space, identified by its * corresponding symbolic constant. */ String Name( int colorSpace ); /*! * Returns the identifier of a nominal channel in a specified color space. * * \param colorSpace A supported color space, identified by its * corresponding symbolic constant. * * \param channel The index >= 0 of a nominal channel or component. */ String ChannelId( int colorSpace, int channel ); } // ---------------------------------------------------------------------------- } // pcl #endif // __PCL_ColorSpace_h // ---------------------------------------------------------------------------- // EOF pcl/ColorSpace.h - Released 2022-03-12T18:59:29Z