I have an algorithm that implements an uniform resample process throughout a Bézier curve. This is done using a chord parametrization process.
However, the results achieved do not accomplish my needs. I have noticed a lack in the algorithm: regions of high curvature are simpler, with less information (samples), and does not represent the original curve with precision.
What I actually need is an algorithm to resample the Bézier curve such that more samples are located in regions with high curvature. But other constraint must me respected: I need a specific number of points in the resampled curve.
Any suggestion?
Thank in advance!