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
|
// Copyright (C) 1999-2018
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"
#ifndef __colorscale_h__
#define __colorscale_h__
#include "util.h"
// 0 background (white)
// 1-200 data, 1 lowerlimit 200 upperlimit
// 201 cursor color (white)
// 202-217 colors
#define IISMIN 1
#define IISMAX 200
#define IISCOLORS 201
#define IISSIZE 218
class ColorScale {
public:
int size_;
unsigned char* psColors_; // rgb for ps
unsigned char* colors_; // for render
public:
ColorScale(int);
virtual ~ColorScale();
int size() {return size_;}
const unsigned char* psColors() {return psColors_;}
const unsigned char* colors() {return colors_;}
};
class LinearScale : public virtual ColorScale {
public:
LinearScale(int, unsigned char*, int);
};
class LogScale : public virtual ColorScale {
public:
LogScale(int, unsigned char*, int, double);
};
class PowScale : public virtual ColorScale {
public:
PowScale(int, unsigned char*, int, double);
};
class SqrtScale : public virtual ColorScale {
public:
SqrtScale(int, unsigned char*, int);
};
class SquaredScale : public virtual ColorScale {
public:
SquaredScale(int, unsigned char*, int);
};
class AsinhScale : public virtual ColorScale {
public:
AsinhScale(int, unsigned char*, int);
};
class SinhScale : public virtual ColorScale {
public:
SinhScale(int, unsigned char*, int);
};
class IISScale : public virtual ColorScale {
public:
IISScale(unsigned char*, int);
};
class HistEquScale : public virtual ColorScale {
public:
HistEquScale(int, unsigned char*, int, double*, int);
};
#endif
|