Skip to content

CoffeeKumazaki/euler_spiral

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Euler Spiral

An Euler spiral (clothoid) is a curve whose curvature changes linearly with its curve length.

This libraly provides two functions.

  • calculate the endpoint of Euler spiral at given length with given curveture deviation.

    struct SpiralPoint {
      double x, y, t;
    };
    
    SpiralPoint getEndPoint(double length, double dCurv, double initCurv = 0.0, double initX = 0.0, double initY = 0.0, double initTheta = 0.0);
  • estimate suitable parameters for Euler spiral, length, initial curvature and curvature deviation from given two points and directions at them.

    struct SpiralParameter {
      double length;
      double initCurv;
      double dCurv;
    };
    
    SpiralParameter getParameter(const SpiralPoint& start, const SpiralPoint& goal, SpiralParameter* init = NULL);

    <demo>

    demo demo

build & run demo

$ mkdir build
$ cd build
$ cmake ../test
$ make

reference

  • Euler Spiral for Shape Completion.
    Benjamin B. Kimia, Ilana Frankel, and Ana-Maria Popescu. 2003.
    Int. J. Comput. Vision 54, 1–3 (August-September 2003), 157–180.
    DOI:https://doi.org/10.1023/A:1023713602895

About

The c++ implementation for Euler spiral (clothoid).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy