Newer
Older
/*
* Copyright 2019 Nicolas Pope
*/
Display::Display(nlohmann::json &config) : config_(config) {
window_ = new cv::viz::Viz3d("FTL");
window_->setBackgroundColor(cv::viz::Color::white());
active_ = true;
}
Display::~Display() {
}
bool Display::render(const cv::Mat &rgb, const cv::Mat &depth) {
Mat idepth;
if (config_["points"] && q_.rows != 0) {
//cv::Mat Q_32F;
//calibrate_.getQ().convertTo(Q_32F, CV_32F);
cv::Mat_<cv::Vec3f> XYZ(depth.rows, depth.cols); // Output point cloud
reprojectImageTo3D(depth+20.0f, XYZ, q_, true);
// Remove all invalid pixels from point cloud
XYZ.setTo(Vec3f(NAN, NAN, NAN), depth == 0.0f);
cv::viz::WCloud cloud_widget = cv::viz::WCloud(XYZ, rgb);
cloud_widget.setRenderingProperty(cv::viz::POINT_SIZE, 2);
window_->showWidget("coosys", cv::viz::WCoordinateSystem());
window_->showWidget("Depth", cloud_widget);
//window_->spinOnce(40, true);
LOG(ERROR) << "Need OpenCV Viz module to display points";
if (config_["left"]) {
cv::imshow("RGB", rgb);
}
if (config_["depth"]) {
/*Mat depth32F = (focal * (float)l.cols * base_line) / depth;
normalize(depth32F, depth32F, 0, 255, NORM_MINMAX, CV_8U);
cv::imshow("Depth", depth32F);
if(cv::waitKey(10) == 27){
//exit if ESC is pressed
active_ = false;
}*/
} else if (config_["disparity"]) {
if ((bool)config_["flip_vert"]) {
cv::flip(depth, idepth, 0);
} else {
idepth = depth;
}
idepth.convertTo(idepth, CV_8U, 255.0f / 256.0f); // TODO(nick)
applyColorMap(idepth, idepth, cv::COLORMAP_JET);
cv::imshow("Disparity", idepth);
//if(cv::waitKey(40) == 27) {
// active_ = false;
//}
void Display::wait(int ms) {
if (config_["points"] && q_.rows != 0) {
#if defined HAVE_VIZ
window_->spinOnce(1, true);
#endif // HAVE_VIZ
}
if (config_["disparity"]) {
if(cv::waitKey(ms) == 27) {
// exit if ESC is pressed
active_ = false;
}
}
}
bool Display::active() const {
return active_ && !window_->wasStopped();