-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.cpp
More file actions
263 lines (247 loc) · 5.54 KB
/
file.cpp
File metadata and controls
263 lines (247 loc) · 5.54 KB
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
// This program is free software: you can use, modify and/or redistribute it
// under the terms of the simplified BSD License. You should have received a
// copy of this license along this program. If not, see
// <http://www.opensource.org/licenses/bsd-license.html>.
//
// Copyright (C) 2018, Thibaud Briand <thibaud.briand@enpc.fr>
// Copyright (C) 2015, Javier Sánchez Pérez <jsanchez@ulpgc.es>
// All rights reserved.
#include <stdio.h>
#include <stdlib.h>
#include "file.h"
extern "C"
{
#include "iio.h"
}
/**
*
* Functions to read images using the iio library
* It allocates memory for the image and returns true if it
* correctly reads the image
*
*/
bool read_image
(
char *fname, //file name
double **f, //output image
int &nx, //number of columns of the image
int &ny, //number of rows of the image
int &nz //number of channels of the image
)
{
*f = iio_read_image_double_vec(fname, &nx, &ny, &nz);
return *f ? true : false;
}
bool read_image
(
char *fname, //file name
float **f, //output image
int &nx, //number of columns of the image
int &ny, //number of rows of the image
int &nz //number of channels of the image
)
{
*f = iio_read_image_float_vec(fname, &nx, &ny, &nz);
return *f ? true : false;
}
/**
*
* Functions to save images using the iio library
*
*/
void save_image
(
char *fname, //file name
double *f, //output image
int nx, //number of columns of the image
int ny, //number of rows of the image
int nz //number of channels of the image
)
{
float *ff=new float[nx*ny*nz];
for(int i=0;i<nx*ny*nz;i++) ff[i]=(float)f[i];
iio_write_image_float_vec(fname, ff, nx, ny, nz);
delete []ff;
}
void save_normalize_image
(
char *fname, //file name
double *f, //output image
int nx, //number of columns of the image
int ny, //number of rows of the image
int nz //number of channels of the image
)
{
float max=-9999, min=9999;
for(int i=0;i<nx*ny*nz;i++)
{
if(f[i]<min)min=f[i];
if(f[i]>max)max=f[i];
}
float *ff=new float[nx*ny*nz];
for(int i=0;i<nx*ny*nz;i++) ff[i]=255.0;
if(max>min)
for(int i=0;i<nx*ny*nz;i++) ff[i]=(float)255.0*(f[i]-min)/(max-min);
iio_write_image_float_vec(fname, ff, nx, ny, nz);
delete []ff;
}
void save_image
(
char *fname, //file name
float *f, //output image
int nx, //number of columns of the image
int ny, //number of rows of the image
int nz //number of channels of the image
)
{
iio_write_image_float_vec(fname, f, nx, ny, nz);
}
/**
*
* Function to save flow fields using the iio library
*
*/
void save_flow
(
char *file, //file name
double *u, //x component of the optical flow
double *v, //y component of the optical flow
int nx, //number of columns
int ny //number of rows
)
{
//save the flow
float *f=new float[nx*ny*2];
for (int i=0; i<nx*ny; i++)
{
f[2*i]=u[i];
f[2*i+1]=v[i];
}
iio_write_image_float_vec (file, f, nx, ny, 2);
delete []f;
}
/**
*
* Function to read the parameters in ascii format
* It reads a header with: nparams nx ny
* Then it reads the parameters for each pixel
*
*/
void read
(
char *file, //input file name
double **p, //parameters to be read
int &nparams, //number of parameters
int &nx, //number of columns
int &ny //number of rows
)
{
FILE *fd=fopen(file,"r");
if(fd!=NULL)
{
int result=fscanf(fd,"%d %d %d",&nparams, &nx, &ny);
if(result==3)
{
*p=new double[nx*ny*nparams];
for(int i=0; i<nx*ny; i++)
{
for(int j=0; j<nparams; j++)
result=fscanf(fd,"%lf", &((*p)[i*nparams+j]));
}
}
fclose(fd);
}
}
/**
*
* Function to save the parameters in ascii format
* It creates a header with: nparams nx ny
* Then it stores the parameters for each pixel
*
*/
void save
(
char *file, //output file name
double *p, //parameters to be saved
int nparams, //number of parameters
int nx, //number of columns
int ny //number of rows
)
{
FILE *fd=fopen(file,"w");
fprintf(fd,"%d %d %d\n", nparams, nx, ny);
for(int i=0; i<nx*ny; i++)
{
for(int j=0; j<nparams; j++)
fprintf(fd,"%f ", p[i*nparams+j]);
fprintf(fd,"\n");
}
fclose(fd);
}
/**
*
* Function to read the parameters in ascii format
* It reads a header with: nparams
* Then it reads the parameters
*
*/
void read
(
const char *file, //input file name
double **p, //parameters to be read
int &nparams //number of parameters
)
{
FILE *fd=fopen(file,"r");
*p=NULL;
if(fd!=NULL)
{
int result=fscanf(fd,"%d",&nparams);
if(result==1)
{
*p=new double[nparams];
for(int j=0; j<nparams; j++)
result=fscanf(fd,"%lf", &((*p)[j]));
}
fclose(fd);
}
}
/**
*
* Function to save the parameters in ascii format
* It creates a header with: nparams
* Then it stores the parameters
*
*/
void save
(
const char *file, //output file name
double *p, //parameters to be saved
int nparams //number of parameters
)
{
FILE *fd=fopen(file,"w");
fprintf(fd,"%d\n", nparams);
for(int j=0; j<nparams; j++)
fprintf(fd,"%.14lg ", p[j]);
fprintf(fd,"\n");
fclose(fd);
}
/**
*
* Function to save the parameters in ascii format
*
*/
void save_matrix
(
const char *file, //output file name
double *p, //parameters to be saved
int nparams //number of parameters
)
{
FILE *fd=fopen(file,"w");
for(int j=0; j<nparams; j++)
fprintf(fd,"%.14lg ", p[j]);
fprintf(fd,"\n");
fclose(fd);
}