-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.cpp
98 lines (73 loc) · 2.05 KB
/
app.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <string>
#include "fred.h"
#include "params.h"
#include "calibration.h"
#include "pointcloud.h"
#include "app.h"
using namespace cv;
using namespace std;
void display(cv::Mat img, bool wait = false) {
static int count = 0;
float factor = 0.3;
int w = round(factor * img.cols);
int h = round(factor * img.rows);
cv::Mat dst;
cv::Size size(w, h);
cv::resize(img, dst, size);
std::ostringstream sstream;
sstream << "display-" << count;
std::string name = sstream.str();
cout << "displaying: " << name << endl;
cv::namedWindow(name
, cv::WINDOW_NORMAL
& CV_WINDOW_KEEPRATIO
& CV_GUI_EXPANDED);
cv::imshow(name, dst);
if(wait) cv::waitKey(0);
count++;
}
bool help_showed = false;
App::App(const Params& params)
: p(params), running(false) {
cv::gpu::printShortCudaDeviceInfo(cv::gpu::getDevice());
}
void App::readImages(string leftfn, string rightfn, Mat &left, Mat &right) {
Mat left_src = imread(p.left);
Mat right_src = imread(p.right);
if (left_src.empty()) throw runtime_error("can't open file \"" + p.left + "\"");
if (right_src.empty()) throw runtime_error("can't open file \"" + p.right + "\"");
cvtColor(left_src, left, CV_BGR2GRAY);
cvtColor(right_src, right, CV_BGR2GRAY);
}
void App::run() {
Mat left, right;
readImages(p.left, p.right, left, right);
Pair camPair = Calibration::createPair(p.intrinsic, p.extrinsic);
Calibration calibration(left, right, camPair);
calibration.remapImages();
Pointcloud pointcloud(calibration);
pointcloud.computePointcloud();
display(pointcloud.reprojected, true);
}
static void printHelp() {
cout << "Usage: ./app\n"
<< "\t--intrinsic <intrinsic.yml> --extrinsic <extrinsic.yml>\n";
help_showed = true;
}
int main(int argc, char** argv) {
try {
if (argc < 2) {
printHelp();
return 1;
}
Params args = Params::read(argc, argv);
if (help_showed)
return -1;
App app(args);
app.run();
}
catch (const exception& e) {
cout << "error: " << e.what() << endl;
}
return 0;
}