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.

Image Processing with Go

78 pointsby alediaferiaalmost 10 years ago

5 comments

Veratyralmost 10 years ago
Not quite the same thing but anyone else interested in the field may want to check out Halide [0]. It&#x27;s a handy library for highly optimized and very straightforward to write image processing on a variety of platforms.<p>They have examples for CUDA, Android, iOS, Native Client and GLSL (which I believe can run on WebGL) among others [1].<p>Doesn&#x27;t seem to be well known but seems very interesting so thought I&#x27;d share it.<p>[0]: <a href="http:&#x2F;&#x2F;halide-lang.org" rel="nofollow">http:&#x2F;&#x2F;halide-lang.org</a><p>[1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;halide&#x2F;Halide&#x2F;tree&#x2F;master&#x2F;apps" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;halide&#x2F;Halide&#x2F;tree&#x2F;master&#x2F;apps</a>
ajstarksalmost 10 years ago
See also: gift (Go image filtering toolkit), and its command line tool:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;disintegration&#x2F;gift" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;disintegration&#x2F;gift</a><p><a href="https:&#x2F;&#x2F;github.com&#x2F;ajstarks&#x2F;gift" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ajstarks&#x2F;gift</a>
donatjalmost 10 years ago
In a similar vein I&#x27;ve written tools to get me the average of a set of images [0] and to find duplicates in a set of images [1] even if they&#x27;re different sizes, and a simple tool to load mpo images (multi-jpegs) [2].<p>[0]: <a href="https:&#x2F;&#x2F;github.com&#x2F;donatj&#x2F;imgavg" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;donatj&#x2F;imgavg</a><p>[1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;donatj&#x2F;imgdedup" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;donatj&#x2F;imgdedup</a><p>[2]: <a href="https:&#x2F;&#x2F;github.com&#x2F;donatj&#x2F;mpo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;donatj&#x2F;mpo</a>
devyalmost 10 years ago
The example in the post reminds me of High-dynamic-range(HDR).
sathishvjalmost 10 years ago
wow. also seeing some other great libraries listed. got any more of them that I can check out and try?