TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Simple Image Vectorization

131 pointsby thesephistover 4 years ago

10 comments

tzumaoliover 4 years ago
Check out our recent work on improving image vectorization using gradient descent: <a href="https:&#x2F;&#x2F;people.csail.mit.edu&#x2F;tzumao&#x2F;diffvg&#x2F;" rel="nofollow">https:&#x2F;&#x2F;people.csail.mit.edu&#x2F;tzumao&#x2F;diffvg&#x2F;</a>
评论 #24959807 未加载
k82aover 4 years ago
Had to think of the paper about depixelizing pixel art, fun stuff if you&#x27;re interested:<p><a href="https:&#x2F;&#x2F;johanneskopf.de&#x2F;publications&#x2F;pixelart&#x2F;paper&#x2F;pixel.pdf" rel="nofollow">https:&#x2F;&#x2F;johanneskopf.de&#x2F;publications&#x2F;pixelart&#x2F;paper&#x2F;pixel.pd...</a>
tomcamover 4 years ago
Beautifully written and illustrated. Makes the algorithm clear and seems to give everything you&#x27;d need to implement it (afraid to test this assumption because I&#x27;m afraid it would be too much fun, and I have deadlines ;)
chris2y3over 4 years ago
It&#x27;s indeed a very good read! I have done a similar thing, with a completely different approach, because my math is too bad. <a href="https:&#x2F;&#x2F;github.com&#x2F;visioncortex&#x2F;vtracer" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;visioncortex&#x2F;vtracer</a>
评论 #24960153 未加载
srgpqtover 4 years ago
I think this is the first time I read a paper that includes real code and even links to a github repo. Amazing.
评论 #24959763 未加载
评论 #24959443 未加载
legulereover 4 years ago
Not having looked at vectorization so far I wondered if some ideas from CT reconstruction can be applied to image vectorization. In both cases you start with a base image that is projected on one (or in the case of tomography several) pictures. The goal is to retrieve the original.<p><a href="https:&#x2F;&#x2F;en.m.wikipedia.org&#x2F;wiki&#x2F;Tomographic_reconstruction" rel="nofollow">https:&#x2F;&#x2F;en.m.wikipedia.org&#x2F;wiki&#x2F;Tomographic_reconstruction</a>
alok-gover 4 years ago
Inkscape includes a tool like this: <a href="https:&#x2F;&#x2F;inkscape.org&#x2F;doc&#x2F;tutorials&#x2F;tracing&#x2F;tutorial-tracing.html" rel="nofollow">https:&#x2F;&#x2F;inkscape.org&#x2F;doc&#x2F;tutorials&#x2F;tracing&#x2F;tutorial-tracing....</a>
Waterluvianover 4 years ago
I have badly needed vectorization tools for client side geomatics work. But I haven&#x27;t found anything that works in thr browser. Going to have to check out the examples here but if anyone wants to make a client side library around it, I think there&#x27;s demand!
评论 #24959477 未加载
jankovicsandrasover 4 years ago
Similar, public domain: <a href="https:&#x2F;&#x2F;github.com&#x2F;jankovicsandras&#x2F;imagetracerjs" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jankovicsandras&#x2F;imagetracerjs</a>
yigover 4 years ago
The site is full of great interactive explanations. Nice work!