Skip to content
Snippets Groups Projects
Commit f2fff2f4 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Attempt exception catch in triangles

parent 0cad90ef
No related branches found
No related tags found
No related merge requests found
Pipeline #29132 failed
......@@ -302,6 +302,7 @@ void CUDARender::_mesh(ftl::rgbd::Frame &out, const Eigen::Matrix4d &t, cudaStre
depth_out_.to_gpumat().setTo(cv::Scalar(1000.0f), cvstream);
try {
// Decide on and render triangles around each point
ftl::cuda::triangle_render1(
depthbuffer,
......@@ -309,6 +310,9 @@ void CUDARender::_mesh(ftl::rgbd::Frame &out, const Eigen::Matrix4d &t, cudaStre
screenbuffer,
params_, stream
);
} catch (const std::exception &e) {
LOG(ERROR) << "TRIANGLE EX: " << e.what();
}
// TODO: Reproject here
// And merge based upon weight adjusted distances
......
......@@ -340,7 +340,6 @@ bool OpenVRRender::retrieve(ftl::data::Frame &frame_out) {
}
rgbdframe.setPose() = initial_pose_*viewPose;
LOG(INFO) << "VR POSE = " << rgbdframe.getPose();
} else {
LOG(ERROR) << "No VR Pose";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment