Giter Club home page Giter Club logo

rgbd-slam-tutor2's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

rgbd-slam-tutor2's Issues

A suggestion

hi, i suggest to add a cmake_modules Folder which include the needed FindXXX.cmake.
PS: I encountered a situation by not finding Eigen3_Config.cmake...

A Question

In the file src/track.cpp

Line No 56.

  • Why have we multiplied the inverse pose with the 3D points in every referenceFrame?
  • If every point is getting projected into the world frame. Why is it done?
 for (auto pFrame: refFrames)
    {
        vector<cv::DMatch> matches = orb->match( pFrame, currentFrame );
        vector<cv::DMatch>  validMatches;
        Eigen::Isometry3d invPose = pFrame->getTransform().inverse();
        for (auto m:matches)
        {
            cv::Point3f pObj = pFrame->features[m.queryIdx].position;
            if (pObj == cv::Point3f(0,0,0))
                continue;
            Eigen::Vector4d vec = invPose * Eigen::Vector4d(pObj.x, pObj.y, pObj.z,1 );
            obj.push_back( cv::Point3f(vec(0), vec(1), vec(2) ) );
            img.push_back( currentFrame->features[m.trainIdx].keypoint.pt );
        }
    }

Eigen3 error

CMake Error at CMakeLists.txt:13 (find_package):
  By not providing "FindEigen3.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Eigen3", but
  CMake did not find one.

  Could not find a package configuration file provided by "Eigen3" with any
  of the following names:

    Eigen3Config.cmake
    eigen3-config.cmake

  Add the installation prefix of "Eigen3" to CMAKE_PREFIX_PATH or set
  "Eigen3_DIR" to a directory containing one of the above files.  If "Eigen3"
  provides a separate development package or SDK, be sure it has been
  installed.


-- Configuring incomplete, errors occurred!
See also "/code/rgbd-slam-tutor2/build/CMakeFiles/CMakeOutput.log".
See also "/code/rgbd-slam-tutor2/build/CMakeFiles/CMakeError.log".
root@milton-OptiPlex-9010:/code/rgbd-slam-tutor2/build# 

Hi, @gaoxiang12 ,

I came across the above cmake error. I already installed eigen3 package. But still couldn't find eigen3 in cmake process. Any ideas suggested?

THANKS

求更新

高博,有空更新下一起做RGB-D SLAM 第二季呀!很喜欢这个系列。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.