forked from INDEMIND/IMSEE-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_disparity_with_high_accuracy.cpp
76 lines (71 loc) · 2.47 KB
/
get_disparity_with_high_accuracy.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
// Copyright 2020 Indemind Co., Ltd. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "imrdata.h"
#include "imrsdk.h"
#include "logging.h"
#include "times.h"
#include "types.h"
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/opencv.hpp>
#include <queue>
using namespace indem;
int main(int argc, char **argv) {
CIMRSDK *m_pSDK = new CIMRSDK();
MRCONFIG config = {0};
config.bSlam = false;
config.imgResolution = IMG_640;
config.imgFrequency = 50;
config.imuFrequency = 1000;
m_pSDK->Init(config);
std::queue<cv::Mat> disparity_queue;
int disparity_count = 0;
if (m_pSDK->EnableDisparityProcessor()) {
m_pSDK->EnableLRConsistencyCheck();
m_pSDK->SetDepthCalMode(DepthCalMode::HIGH_ACCURACY);
m_pSDK->RegistDisparityCallback(
[&disparity_count, &disparity_queue](double time, cv::Mat disparity) {
if (!disparity.empty()) {
disparity.convertTo(disparity, CV_8U, 255. / (16 * 64));
cv::applyColorMap(disparity, disparity, cv::COLORMAP_JET);
disparity.setTo(0, disparity == -16);
disparity_queue.push(disparity);
++disparity_count;
}
});
}
auto &&time_beg = times::now();
while (true) {
if (!disparity_queue.empty()) {
cv::imshow("disparity", disparity_queue.front());
disparity_queue.pop();
}
char key = static_cast<char>(cv::waitKey(1));
if (key == 27 || key == 'q' || key == 'Q') { // ESC/Q
break;
}
}
delete m_pSDK;
auto &&time_end = times::now();
float elapsed_ms =
times::count<times::microseconds>(time_end - time_beg) * 0.001f;
#ifdef __linux
LOG(INFO) << "Time beg: " << times::to_local_string(time_beg)
<< ", end: " << times::to_local_string(time_end)
<< ", cost: " << elapsed_ms << "ms";
LOG(INFO) << "disparity count: " << disparity_count
<< ", fps: " << (1000.f * disparity_count / elapsed_ms);
#endif
return 0;
}