what library that can be used to convert bitmap to vector?

azer89 picture azer89 · May 20, 2013 · Viewed 8.3k times · Source

My current project is related to bitmap to vector. so far i found these libraries:

potrace

  • (+) really good for line tracing
  • (+) documentation
  • (-) does not support image gradient

ardeco

  • (+) support olor gradient
  • (+) documentation
  • (-) line tracing is inferior compared to potrace
  • (-) outdated (2006)

rastertovector

  • (+) support color gradient
  • (-) little documentation
  • (-) line tracing is inferior compared to potrace
  • (-) little bit outdated (2008)

the project will be used to vectorize cartoon image (comic or cartoon, specifically). My main goal is just vectorizing black and white image. So potrace gives me sufficient result, but i would like to process gradient, for example, gradually from black to white.

so far, it's quite hard to find library that support color gradient. Ardeco and rastertovector support color gradient, but they are a little bit outdated. I am wondering if there is any well-maintained (and of course, well documented) vector-tracing library out there

Thanks!