Files
UR/src/main.cxx

17 lines
258 B
C++
Raw Normal View History

2023-05-04 16:37:33 +08:00
#define EIGEN_USE_MKL_ALL
#include <iostream>
#include <algorithm>
#include <complex>
2023-05-05 16:47:49 +08:00
#include "common/ceMatchedFilterHandling.h"
2023-05-04 16:37:33 +08:00
#include "MatlabReader.h"
2023-06-02 15:51:45 +08:00
#include "startReconstructions.h"
2023-05-04 16:37:33 +08:00
int main()
{
2023-06-02 15:51:45 +08:00
Recon::startReconstructions();
2023-05-04 16:37:33 +08:00
return 0;
}