Giter VIP home page Giter VIP logo

Comments (8)

johannes-graeter avatar johannes-graeter commented on July 30, 2024

Hi @extr15,
thank you for your interest in my work.
I will look into it and try to provide a working example until tomorrow.

Regards,

Johannes

from limo.

johannes-graeter avatar johannes-graeter commented on July 30, 2024

Hi there,
I included the missing headers.
For a small example have a look at the unittests.
Tomorrow I will write better documentation and test the dependencies on a clean machine.
Please note that the depth estimation needed for the Kitti results is not published yet, but will be soon.

from limo.

extr15 avatar extr15 commented on July 30, 2024

@johannes-graeter , Thanks for your reply.
I encounter an error:

landmark_selection_scheme_voxel.hpp:28:59: error: array must be initialized with a brace-enclosed initializer
         std::array<double, 3> voxel_size_xyz{1.0, 1.0, 0.5}; ///< Voxelsize in x,y,z in meters

and I fixed it by double-braces:

        std::array<double, 3> voxel_size_xyz { {1.0, 1.0, 0.5} }; ///< Voxelsize in x,y,z in meters

now it compile OK.
Looking forward to your progress!

from limo.

johannes-graeter avatar johannes-graeter commented on July 30, 2024

Hi,
thanks for the fix. This is a matter of compilers. My gcc c++14 uses brace elision and can cope with that syntax (see https://stackoverflow.com/questions/16985687/brace-elision-in-stdarray-initialization).
Out of curiosity what compiler and c++ version are you using?

from limo.

extr15 avatar extr15 commented on July 30, 2024

Hi, thanks for the link. I use gcc 5.4.0, it seems I don't specify the c++ version.

from limo.

johannes-graeter avatar johannes-graeter commented on July 30, 2024

seems the default fpr 5.4.0 is c++11 https://gcc.gnu.org/gcc-5/changes.html .
If you can, consider changing to gcc 7, it is really worth it. Compiler messages are way better understandable and the warnings are way more intelligent and usefull!

from limo.

extr15 avatar extr15 commented on July 30, 2024

Thanks for your suggestion! I may try later 😃

from limo.

johannes-graeter avatar johannes-graeter commented on July 30, 2024

the complete core library and most of the packages necessary for pre processing. Since I tried to make everything modular its quite a lot of packages. I would be happy if you share your experience following the install instructions and the reults of the algorithm.

from limo.

Related Issues (20)

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.