Git Product home page Git Product logo

optimalbeziertrajectorygeneration's People

Contributors

magicbycalvin avatar venanziocichella 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

Watchers

 avatar  avatar  avatar  avatar  avatar

optimalbeziertrajectorygeneration's Issues

Package for Distribution

This looks super interesting and I don't understand much of it, but let me know if you'd like any help packaging it for distribution. I do understand that ๐Ÿ˜„.

constraints in the code

Perfect job for trajectory generation and I've learned a lot, but I have a question about your program. In your work, for example, iterateSingleVehicle.py, the Vehicle is subject to several inequality constraints with min speed, max speed and max angular rate. Nevertheless, do you consider the dynamic equality constraints (i.e. dx=f(x,u) ) ? The Dubin cars and UAVs have different dynamic constraints, and I can't find those constraints in your code.

AttributeError: 'list' object has no attribute 'ndim'

Hello,
This the full output of running the file "bezier.py"

Checking for collisions, 1 means none, 0 means collision
C1 and C2
Traceback (most recent call last):
  File "bezier.py", line 1814, in <module>
    print(_collCheckBez2Bez(c1, c2))
  File "bezier.py", line 1581, in _collCheckBez2Bez
    c1 = Bezier([x1, y1, z1])
  File "bezier.py", line 166, in __init__
    super().__init__(cpts=cpts, tau=tau, t0=t0, tf=tf)
  File "bezier.py", line 58, in __init__
    if cpts.ndim == 1:
AttributeError: 'list' object has no attribute 'ndim'

I'm using version python3.8 with version 1.18.4 of numpy.
This error also happens when running the code from the Examples folder

issue of the function "bezProductCoefficients" in bezier.py

in the function "bezProductCoefficients"(m, n=None)" the last line of code
coefMat[m*j+k, k] = binom(m, j)*binom(n, k-j)/den,
I think it should be modified as
coefMat[n*j+k, k] = binom(m, j)*binom(n, k-j)/den ,
where the n is degree of second Bezier curve

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.