PCL
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ImageOptions.h
Go to the documentation of this file.
1 // ____ ______ __
2 // / __ \ / ____// /
3 // / /_/ // / / /
4 // / ____// /___ / /___ PixInsight Class Library
5 // /_/ \____//_____/ PCL 2.9.3
6 // ----------------------------------------------------------------------------
7 // pcl/ImageOptions.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_ImageOptions_h
53 #define __PCL_ImageOptions_h
54 
56 
57 #include <pcl/Defs.h>
58 
59 #include <pcl/String.h>
60 
61 namespace pcl
62 {
63 
64 // ----------------------------------------------------------------------------
65 
131 namespace ImageType
132 {
133  enum value_type
134  {
135  Unknown,
136  Bias,
137  Dark,
138  Flat,
139  Light,
140  MasterBias,
141  MasterDark,
142  MasterFlat,
143  MasterLight,
144  DefectMap,
145  RejectionMapHigh,
146  RejectionMapLow,
147  BinaryRejectionMapHigh,
148  BinaryRejectionMapLow,
149  SlopeMap,
150  WeightMap,
151  NumberOfImageTypes
152  };
153 
160  String Name( int type );
161 
169  inline value_type ToMaster( int type )
170  {
171  switch ( type )
172  {
173  case Bias: return MasterBias;
174  case Dark: return MasterDark;
175  case Flat: return MasterFlat;
176  case Light: return MasterLight;
177  default: return (value_type)type;
178  }
179  }
180 };
181 
196 namespace CFAType
197 {
198  enum value_type { None, BGGR, GRBG, GBRG, RGGB, CYGM, NumberOfCFATypes };
199 
206  String Name( int cfa );
207 }
208 
213 class PCL_CLASS ImageOptions
214 {
215 public:
216 
219  bool complexSample : 1;
220  bool signedIntegers : 1;
221  bool metricResolution : 1;
222  bool readNormalized : 1;
223  bool embedICCProfile : 1;
224  bool embedThumbnail : 1;
225  bool embedProperties : 1;
226  bool embedRGBWS : 1;
230  bool embedPreviewRects : 1;
231  int __rsv__ : 11; // Reserved for future extensions; must be zero.
232 
233  double lowerRange;
234  double upperRange;
235 
236  double xResolution;
237  double yResolution;
238 
239  int isoSpeed;
240  float exposure;
241  float aperture;
242  float focalLength;
243  int imageType;
244  int cfaType;
245 
250  {
251  Reset();
252  }
253 
257  ImageOptions( const ImageOptions& ) = default;
258 
262  ImageOptions& operator =( const ImageOptions& ) = default;
263 
267  void Reset()
268  {
269  bitsPerSample = 16;
270  ieeefpSampleFormat = false;
271  complexSample = false;
272  signedIntegers = false;
273  metricResolution = false;
274  readNormalized = true;
275  embedICCProfile = true;
276  embedThumbnail = false;
277  embedProperties = true;
278  embedRGBWS = true;
279  embedDisplayFunction = true;
280  embedColorFilterArray = true;
281  embedProcessingHistory = false;
282  embedPreviewRects = false;
283  __rsv__ = 0;
284  lowerRange = 0;
285  upperRange = 1;
286  xResolution = 72;
287  yResolution = 72;
288  isoSpeed = 0;
289  exposure = 0;
290  aperture = 0;
291  focalLength = 0;
292  imageType = ImageType::Unknown;
293  cfaType = CFAType::None;
294  }
295 };
296 
297 // ----------------------------------------------------------------------------
298 
299 } // pcl
300 
301 #endif // __PCL_ImageOptions_h
302 
303 // ----------------------------------------------------------------------------
304 // EOF pcl/ImageOptions.h - Released 2025-02-21T12:13:32Z
Format-independent, fundamental image stream options.
Definition: ImageOptions.h:214
float exposure
Exposure in seconds (0=unknown)
Definition: ImageOptions.h:240
bool complexSample
Sample type: Complex (true) or real (false) samples. The default value is false.
Definition: ImageOptions.h:219
bool metricResolution
Resolution units: centimeter (true) or inch (false). The default value is false.
Definition: ImageOptions.h:221
bool embedRGBWS
Embed RGB working space parameters. The default value is true.
Definition: ImageOptions.h:226
bool readNormalized
Normalize floating-point sample values after reading. The default value is true.
Definition: ImageOptions.h:222
ImageOptions(const ImageOptions &)=default
bool embedICCProfile
Embed an ICC profile (when available). The default value is true.
Definition: ImageOptions.h:223
float focalLength
Focal length in millimeters (0=unknown)
Definition: ImageOptions.h:242
int cfaType
Color Filter Array type. See the CFAType namespace for possible values (0=none).
Definition: ImageOptions.h:244
double upperRange
Upper limit to normalize read floating-point samples. The default value is 1.
Definition: ImageOptions.h:234
bool embedProperties
Embed data properties (when available). The default value is true.
Definition: ImageOptions.h:225
bool embedColorFilterArray
Embed color filter array (CFA) description. The default value is true.
Definition: ImageOptions.h:228
bool embedDisplayFunction
Embed display function (aka STF) parameters. The default value is true.
Definition: ImageOptions.h:227
double lowerRange
Lower limit to normalize read floating-point samples. The default value is 0.
Definition: ImageOptions.h:233
bool embedPreviewRects
Embed existing preview rectangles and their identifiers. The default value is false.
Definition: ImageOptions.h:230
double yResolution
Vertical resolution in pixels per resolution unit (0=unknown). The default value is 72.
Definition: ImageOptions.h:237
bool ieeefpSampleFormat
Sample type: IEEE 754 floating point (true) or integers (false). The default value is false.
Definition: ImageOptions.h:218
bool signedIntegers
Integer sample values are signed (true) or unsigned (false). The default value is false.
Definition: ImageOptions.h:220
uint8 bitsPerSample
Number of bits per sample: 8, 16, 32 or 64. The default value is 16.
Definition: ImageOptions.h:217
int isoSpeed
ISO speed as specified in ISO 12232 (0=unknown)
Definition: ImageOptions.h:239
bool embedThumbnail
Embed thumbnail images (when available). The default value is false.
Definition: ImageOptions.h:224
double xResolution
Horizontal resolution in pixels per resolution unit (0=unknown). The default value is 72.
Definition: ImageOptions.h:236
float aperture
Focal length divided by lens diameter (F/D) (0=unknown)
Definition: ImageOptions.h:241
int imageType
Frame or image type. See the ImageType namespace for possible values (0=unknown).
Definition: ImageOptions.h:243
bool embedProcessingHistory
Embed existing processing history as an XML document. The default value is false.
Definition: ImageOptions.h:229
Unicode (UTF-16) string.
Definition: String.h:8148
unsigned char uint8
Definition: Defs.h:642
String Name(int cfa)
String Name(int type)
value_type ToMaster(int type)
Definition: ImageOptions.h:169
PCL root namespace.
Definition: AbstractImage.h:77