forked from gammalib/gammalib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGFitsImageByte.hpp
100 lines (90 loc) · 4.93 KB
/
GFitsImageByte.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/***************************************************************************
* GFitsImageByte.hpp - FITS Byte image class *
* ----------------------------------------------------------------------- *
* copyright (C) 2010-2013 by Juergen Knoedlseder *
* ----------------------------------------------------------------------- *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
***************************************************************************/
/**
* @file GFitsImageByte.hpp
* @brief FITS Byte image class definition
* @author Juergen Knoedlseder
*/
#ifndef GFITSIMAGEBYTE_HPP
#define GFITSIMAGEBYTE_HPP
/* __ Includes ___________________________________________________________ */
#include "GFitsImage.hpp"
/***********************************************************************//**
* @class GFitsImageByte
*
* @brief FITS Byte image class
***************************************************************************/
class GFitsImageByte : public GFitsImage {
public:
// Constructors and destructors
GFitsImageByte(void);
GFitsImageByte(const int& nx, const unsigned char* pixels = NULL);
GFitsImageByte(const int& nx, const int& ny, const unsigned char* pixels = NULL);
GFitsImageByte(const int& nx, const int& ny, const int& nz, const unsigned char* pixels = NULL);
GFitsImageByte(const int& nx, const int& ny, const int& nz, const int& nt, const unsigned char* pixels = NULL);
GFitsImageByte(const int& naxis, const int* naxes, const unsigned char* pixels = NULL);
GFitsImageByte(const GFitsImageByte& image);
virtual ~GFitsImageByte(void);
// Operators
GFitsImageByte& operator=(const GFitsImageByte& image);
unsigned char& operator()(const int& ix);
unsigned char& operator()(const int& ix, const int& iy);
unsigned char& operator()(const int& ix, const int& iy, const int& iz);
unsigned char& operator()(const int& ix, const int& iy, const int& iz, const int& it);
const unsigned char& operator()(const int& ix) const;
const unsigned char& operator()(const int& ix, const int& iy) const;
const unsigned char& operator()(const int& ix, const int& iy, const int& iz) const;
const unsigned char& operator()(const int& ix, const int& iy, const int& iz, const int& it) const;
// Methods
void clear(void);
GFitsImageByte* clone(void) const;
unsigned char& at(const int& ix);
unsigned char& at(const int& ix, const int& iy);
unsigned char& at(const int& ix, const int& iy, const int& iz);
unsigned char& at(const int& ix, const int& iy, const int& iz, const int& it);
const unsigned char& at(const int& ix) const;
const unsigned char& at(const int& ix, const int& iy) const;
const unsigned char& at(const int& ix, const int& iy, const int& iz) const;
const unsigned char& at(const int& ix, const int& iy, const int& iz, const int& it) const;
double pixel(const int& ix) const;
double pixel(const int& ix, const int& iy) const;
double pixel(const int& ix, const int& iy, const int& iz) const;
double pixel(const int& ix, const int& iy, const int& iz, const int& it) const;
void* pixels(void);
int type(void) const;
private:
// Private methods
void init_members(void);
void copy_members(const GFitsImageByte& image);
void free_members(void);
void alloc_data(void);
void init_data(void);
void release_data(void);
void construct_data(const unsigned char* pixels);
void load_data(void) const;
void alloc_nulval(const void* value);
void* ptr_data(void) { return m_pixels; }
void* ptr_nulval(void) { return m_nulval; }
// Private data area
unsigned char* m_pixels; //!< Pixels
unsigned char* m_nulval; //!< NULL value
};
#endif /* GFITSIMAGEBYTE_HPP */