-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlinopt_imtools.h
50 lines (44 loc) · 1.08 KB
/
linopt_imtools.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
/**
* @file linopt_imtools.h
* @brief Function prototypes for linear algebra tools
*
* CPU-based lineal algebra tools: decomposition, SVD etc...
*
*/
#ifndef _LINOPTIMTOOLS_H
#define _LINOPTIMTOOLS_H
#include "compute_SVDdecomp.h"
#include "compute_SVDpseudoInverse.h"
#include "image_construct.h"
#include "image_fitModes.h"
#include "image_to_vec.h"
#include "lin1Dfit.h"
#include "linRM_from_inout.h"
#include "makeCPAmodes.h"
#include "makeCosRadModes.h"
#include "mask_to_pixtable.h"
#include "vec_to_2Dimage.h"
void __attribute__((constructor)) libinit_linopt_imtools();
imageID linopt_imtools_make1Dpolynomials(const char *IDout_name,
long NBpts,
long MaxOrder,
float r0pix);
/*
double linopt_imtools_match_slow(
const char *ID_name,
const char *IDref_name,
const char *IDmask_name,
const char *IDsol_name,
const char *IDout_name
);
*/
/*
double linopt_imtools_match(
const char *ID_name,
const char *IDref_name,
const char *IDmask_name,
const char *IDsol_name,
const char *IDout_name
);
*/
#endif