Giter Club home page Giter Club logo

rtl's People

Contributors

luminans avatar sunglok avatar

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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

rtl's Issues

Bug in line along x axis

I think there is a bug.
virtual Line ComputeModel(const std::vector& data, const std::set& samples)
when not if (fabs(b) > DBL_EPSILON)
a and b coefficients for lines in x and y axis solved by:

    double maxDiffX=0.;
    double maxDiffY=0.;
    for(int np=0;np<(data.size()-1);np++)
    {
        double diffX=fabs(data[np+1].x-data[np].x);
        if(diffX>maxDiffX) maxDiffX=diffX;
        double diffY=fabs(data[np+1].y-data[np].y);
        if(diffY>maxDiffY) maxDiffY=diffY;
    }
    if(maxDiffX<maxDiffY)
    {
        line.a = 1;
        line.b = 0;
    }
    else
    {
        line.a = 0;
        line.b = 1;
    }

Sharing

Could you share me the source code of following paper?

Robust Ground Plane Detection from 3D Point Clouds

Sunglok Choi, Jaehyun Park, Jaemin Byun, and Wonpil Yu, Robust Ground Plane Detection from 3D Point Clouds, in Proceedings of International Conference on Control, Automation and Systems (ICCAS), 2014 PDF DOI "Best Presentation Award"

thanks

Add constrains

Hi, can I use constrains with this? For example, if I fit the data x, y with a linear model, y = a*x + b, I want to constrain -0.01 < a < 0.01. Can I do it with this repo?

ComputeModel function implementation in Line

Hi, the line parameters solving in your code involves eigenvalues. Can you show me a formula derivation about this implementation. I tried to do it by myself but failed. Thank you so much.

ostream overloading compile error

When I build this with VisualStudio, it complained that

binary '<<': no operator found which takes a right-hand operand of type 'const double'

How can I fix it?

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.