Is there any OSS library or paper that does Vector path tracing of mono bitmaps?

落花浮王杯 提交于 2020-01-24 00:37:27

问题


i am just interested in how these things work and am after a library or paper that describes the approach that most of these take. At a guess they probably support a few basic constructs.

  • line
  • arc
  • dot

回答1:


A large part of image processing is about reasoning about an image at a higher level of abstraction than just pixels, which is exactly what you need to do to vectorise an image.

As such, OpenCV is well worth looking at. It contains various image processing functions for blob detection and there appear to be Java OpenCV Bindings these days.

If this doesn't suit and nor do any of the other libraries listed in What is the best java image processing library/approach?, then your easiest option might be to write a java wrapper library around autotrace or other non java vectorisation library.



来源:https://stackoverflow.com/questions/7480079/is-there-any-oss-library-or-paper-that-does-vector-path-tracing-of-mono-bitmaps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!