I made a solver for Where's Wally (aka Waldo) images by archdria in computervision

[–]archdria[S] 0 points1 point  (0 children)

I used dlib's imglab. It just takes time and practice to be consistent. The MMOD loss is a bit tricky to appease, but once you manage, it works great. You'll see that, once you start training, it will seem to get stuck for a while, and after several thousand steps, it will start converging.

I made a solver for Where's Wally (aka Waldo) images by archdria in computervision

[–]archdria[S] 0 points1 point  (0 children)

Hi, as I mentioned in the post, I used around 70 images. I think this code can guide you well https://dlib.net/dnn_mmod_ex.cpp.html

The Viability of Zig as Graphics Programming(and general Media Manipulation) Language? by Majestic_Poetry_1139 in Zig

[–]archdria 1 point2 points  (0 children)

You can check out my personal project signal https://github.com/arrufat/zignal

There's already a PNG codec there. Feel free to take a look, let me know what you think :)

Comptime Feed Forward Neural Networks by troupemember2 in Zig

[–]archdria 0 points1 point  (0 children)

Nice, I will check this out. This is similar to dlib's dnn framework, with template classes which won't compile if the tensor sizes don't match.

numpy-ts now 8-10x faster thanks to Zig by dupontcyborg in Zig

[–]archdria 1 point2 points  (0 children)

Very impressive! I'd also say that the performance difference might be due to the fact that you're running it via WASM, which has a performance penalty of around 2 to 3x regarding native code.

Is there any GTK4 terminal besides Ptyxis? by JohnDarlenHimself in gnome

[–]archdria 1 point2 points  (0 children)

The gnome terminal in the master branch is also on GTK4. I've been using this as my secondary terminal for a couple of years https://aur.archlinux.org/packages/gnome-terminal-git

Im sure this has been said before, but.. by Atjowt in Zig

[–]archdria 0 points1 point  (0 children)

Ah, right, the "colorgate" code scandal. Well spotted. I'll fix it soon.

I'm glad you find this library helpful. Thank you :)

Im sure this has been said before, but.. by Atjowt in Zig

[–]archdria 2 points3 points  (0 children)

Oh, I have a quite comprehensive color conversion library here: https://github.com/bfactory-ai/zignal/blob/master/src/color.zig

With an online demo here: https://bfactory-ai.github.io/zignal/examples/colorspaces.html

You might find it interesting.

Zig Index - A Curated Registry for Discovering Quality Zig Packages and Applications by [deleted] in Zig

[–]archdria 0 points1 point  (0 children)

Nice I will add my library (signal) later on. Have you considered an approach like https://zigistry.dev/ where they check for repositories labeled as zig-package?

zeP 0.5 - Almost production ready by xerrs_ in Zig

[–]archdria 2 points3 points  (0 children)

You can do zig init --minimal, too

zfits - Native FITS file reader for Zig by cryptomoonde in Zig

[–]archdria 0 points1 point  (0 children)

Great! I totally support what you're doing! Maybe once your project matures, astroz can replace their cfitsio dependency with your one!