-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestRoom.h
54 lines (51 loc) · 1.3 KB
/
TestRoom.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
/*
* TestRoom.h
*
* Created on: Feb 18, 2014
* Author: dailos
*/
#ifndef TESTROOM_H_
#define TESTROOM_H_
#include "opencv2/opencv.hpp"
template<class T>
cv::Mat createRandomMatrix(const unsigned int& xSize, const unsigned int& ySize);
void test_jacobian();
void leastSquearesExperiment();
bool test_BSL();
void test_SparseRecovery();
bool test_LinearizedBregmanAlgorithmDenoising();
void test_noiseFilter();
void test_generizedPupilFunctionVsOTF();
void test_udwd_spectrums();
void test_zernike_wavelets_decomposition();
void test_wavelet_zernikes_decomposition();
void test_getNM();
bool test_convolveDFT_vs_crosscorrelation();
bool test_shift();
void test_conv_flaw();
void test_wavelets();
bool test_conjComplex();
bool test_minimization();
bool test_minQ2();
void test_covarianceMatrix();
bool test_nonsmoothConvexOptimization();
bool test_crosscorrelation();
bool test_specular();
void test_selectCentralROI();
void test_AWMLE();
bool test_fourier();
bool test_normalization();
bool test_zernikes();
void test_SVD();
void test_flip();
void test_QualityMetric();
void test_ErrorMetric();
void test_Optics();
bool test_NoiseEstimator();
void test_Noise();
void test_phaseMapZernikeSum();
void test_divComplex();
void test_convolve();
void test_convolution_algo();
void test_filter2D();
#endif /* TESTROOM_H_ */