Tagged Questions
2
votes
1answer
116 views
Converting an open curve to a list of ordered pixels: a python test code with numpy
I have the image of an open curve in a numpy.array and I need to build a list of points coordinates ordered according to their position on the curve.
I wrote a draft script using numpy, mahotas. It ...
2
votes
2answers
62 views
best platform to draw curves and create JPEGs
i have an equation of a curve that i need to draw like:
((X^z)-1)/z = y
does anyone know how i can draw this curve and save it as an image using python or .net?
0
votes
1answer
72 views
How to use interpolation to calculate a force based on angle
I am trying to make a python script that will output a force based on a measured angle. The inputs are time, the curve and the angle, but I am having trouble using interpolation to fit the force to ...
0
votes
2answers
614 views
An extended Bezier Library or Algorithms of bezier operations
Is there a library of data structures and operations for quadratic bezier curves? I need to implement:
bezier to bitmap converting with arbitrary quality
optimizing bezier curves
common operations ...