-
Notifications
You must be signed in to change notification settings - Fork 0
/
PDMain.cpp
44 lines (36 loc) · 966 Bytes
/
PDMain.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
//============================================================================
// Name : PDMain.cpp
// Author : Dailos G
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#include "TestRoom.h"
#include "SubimageLayout.h"
#include "FITS.h"
//#include "ConvexOptimization.h"
//#include "Metric.h"Información
#include "ToolBox.h"
#include "Zernike.h"
#include <chrono>
#include <cmath>
#include "SparseRecovery.h"
#include "PhaseScreen.h"
#include "Regression.h"
#include "DataSet.h"
#include <fstream>
int main()
{
try
{
std::cout << "Hello" << std::endl;
SubimageLayout subimageLayout;
subimageLayout.computerGeneratedImage();
//subimageLayout.dataSimulator();
}
catch (cv::Exception const & e)
{
std::cerr << "OpenCV exception: " << e.what() << std::endl;
}
return 0;
}