-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.h
78 lines (61 loc) · 1.29 KB
/
info.h
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
#if !defined(INFO_H)
#define INFO_H
#include "info/imagemon.h"
void __attribute__((constructor)) libinit_info();
#include "info/cubeMatchMatrix.h"
#include "info/cubestats.h"
#include "info/image_stats.h"
#include "info/imagemon.h"
#include "info/improfile.h"
#include "info/kbdhit.h"
#include "info/percentile.h"
#include "info/print_header.h"
/*
long brighter(
const char *ID_name,
double value
);
*/
/*
errno_t img_nbpix_flux(
const char *ID_name
);
*/
// int img_histoc(const char *ID_name, const char *fname);
/*
errno_t make_histogram(
const char *ID_name,
const char *ID_out_name,
double min,
double max,
long nbsteps
);
*/
// double ssquare(const char *ID_name);
// double rms_dev(const char *ID_name);
/*
double img_min(const char *ID_name);
double img_max(const char *ID_name);
*/
/*
errno_t printpix(
const char *ID_name,
const char *filename
);
*/
/*
double background_photon_noise(
const char *ID_name
);
*/
/*
int test_structure_function(const char *ID_name, long NBpoints,
const char *fname);
imageID full_structure_function(
const char *ID_name,
long NBpoints,
const char *ID_out
);
*/
imageID info_cubeMatchMatrix(const char *IDin_name, const char *IDout_name);
#endif