Closed bcongdon closed 3 years ago
Thanks for the report, fixed.
what does the "-tf" parameter modify in the drawing ?
You probably do not have to touch it. It changes a frequency of streamline distance tests. The image darkness dictates how far apart should the streamlines be. This distance gets divided by the tf
parameter to compute streamline step size. With low tf
, the streamline distance check will occur less frequently and the streamlines will get closer together than they should. You get better precision with higher tf
, but the computation will be slower.
If I try to run
vpype flow_img img.jpg
without the-tf
flag set, I get the following error:It looks like that flag might need a default value? Running
vpype flow_img -tf 2 img.jpg
seems to work(As an aside, thanks for making this! It's a great addition to the vpype ecosystem 😄 )