forked from kif/imageAlignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.cpp
202 lines (128 loc) · 3.47 KB
/
image.cpp
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#include "image.h"
/** \class image image.h
* Here we stock an image
*/
image::image(const image &img)
{
std::cout<<"lol"<<std::endl;
}
/// Print image
void image::printImage( char nomFichier[])
{
std::string nomFichier2="";
nomFichier2+=nomFichier;
unsigned char* data=new unsigned char[width*height];
float max,mini,max_abs;
max=img[0];
mini=img[0];
for(int i=0;i<width*height;i++)
{if(mini>img[i]) mini=img[i]; if (max<img[i]) max=img[i];}
max_abs=((absval(mini)>absval(max))?absval(mini):absval(max));
for(int i=0;i<width*height;i++)
{
//float lambda=img[i]/max_abs;
float lambda=(img[i]-max)/(mini-max);
//data[i]=fround(lambda*127+127);
data[i]=fround((1-lambda)*255);
}
// write_png_u8(nomFichier2.c_str(), data, width, height, 1);
delete[] data;
}
/// Print image with a parallel one, which will be in color(you superpose them)
void image::printImagePara( char nomFichier[],image* para,image* orsa,image* line)
{
std::string nomFichier2="";
nomFichier2+=nomFichier;
float* data=new float[3*width*height];
float max,mini;
max=img[0];
mini=img[0];
for(int i=0;i<width*height;i++)
{
if(mini>img[i]) mini=img[i]; if (max<img[i]) max=img[i];
}
for(int i=0;i<width*height;i++)
{
float lambda=(img[i]-max)/(mini-max);
data[i]=fround(0*lambda+(1-lambda)*255);
data[width*height+i]=fround(0*lambda+(1-lambda)*255);//fround(0*lambda+(1-lambda)*255);
data[2*width*height+i]=fround(0*lambda+(1-lambda)*255);
if((*line)(i%para->w(),i/para->w())!=0)
{
data[2*width*height+i]=fround(0*lambda+(1-lambda)*130)+(*para)(i%para->w(),i/para->w());
data[0*width*height+i]=0;
data[1*width*height+i]=0;
}
if((*orsa)(i%para->w(),i/para->w())!=0)
{
data[2*width*height+i]=0;
data[0*width*height+i]=0;
data[1*width*height+i]=fround(0*lambda+(1-lambda)*130)+(*para)(i%para->w(),i/para->w());
}
if((*para)(i%para->w(),i/para->w())!=0)
{
data[2*width*height+i]=0;
data[0*width*height+i]=fround(0*lambda+(1-lambda)*130)+(*para)(i%para->w(),i/para->w());
data[1*width*height+i]=0;
}
}
// write_png_f32(nomFichier2.c_str(), data, width,height,3);
delete[] data;
}
/// First constructor
/** black image, 0 ID
*/ image::image(int x,int y)
{
this->width=x;
this->height=y;
this->idImage=0;
this->img=new float[width*height];
}
/// Second constructor
/** Black image, n ID
*/
image::image(int x,int y,int n)
{
this->width=x;
this->height=y;
this->idImage=n;
this->img=new float[width*height];
for(int i=0;i<width*height;i++)
this->img[i]=0;
}
/// Last constructor
/** Black image, similar to im(same size)
*/
image::image(image* im)
{
this->width=im->width;
this->height=im->height;
this->idImage=im->idImage;
this->img=new float[width*height];
}
/// Constructor of integral image
imageIntegral::imageIntegral(image* im):image(im)
{
this->trueWidth=im->width;
}
image::~image()
{
delete[] this->img;
}
imageIntegral::~imageIntegral()
{
for(int i=0;i<((trueWidth+1))*(trueWidth-width)/2;i++)
img--;
}
int image::returnIdImage()
{
return idImage;
}
/// Center for the integrale image(put the pointer at the good position because of symetrization)
void imageIntegral::center(int begin,image* im)
{
for(int i=0;i<width*begin+begin;i++)
img++;
width=im->w();
height=im->h();
}