OpenCV-RgbdOdometry icon indicating copy to clipboard operation
OpenCV-RgbdOdometry copied to clipboard

Getting zero correspondences with ICP based odometry

Open tanajikamble13 opened this issue 5 years ago • 0 comments

I am trying with other type of odometry, Rgbd-ICP and ICP. Its not working, unable to find correspondences, I changed main code accordingly as shown below:

odom = std::make_shared<rgbd::RgbdICPOdometry>(
          cameraMatrix, MIN_DEPTH, MAX_DEPTH, MAX_DEPTH_DIFF, MAX_POINTS_PART, iterCounts,
          minGradMagnitudes, rgbd::Odometry::RIGID_BODY_MOTION);
      /* 
      odom = std::make_shared<rgbd::ICPOdometry>(
          cameraMatrix, MIN_DEPTH, MAX_DEPTH, MAX_DEPTH_DIFF, MAX_POINTS_PART, iterCounts,
          rgbd::Odometry::RIGID_BODY_MOTION);
      */

tanajikamble13 avatar May 15 '20 03:05 tanajikamble13