Kyle Maas

Results 279 comments of Kyle Maas

That is a cleaner way to do it than what I was previously doing (changing out the favicon file in the ZoneMinder directory). But it would still be much nicer...

Any progress on this?

It looks like this is coming from decode::qr::correct. eq is being passed to solve() as an empty list, and is triggering solve() to return None due to num_eq == 0....

Ah, that's cool, but somewhat unfortunate that it only works on nightly. I'm on Gentoo Linux and cargo and rust are both OS packages. I struggled for a while with...

I should say: cargo and rust are both installed via OS package - I think they're actually from the same system package.

The main reason why this would be beneficial for me is that my current use case is for a project which processes scans of documents with multiple QR codes on...

There. That now passes all tests and is slightly faster for the multithreaded case, at least for me. It uses crossbeam directly instead of rayon, and now uses slices and...

Looking through extract, since it's searching from most likely to least likely, I would think the overhead of multithreading would be unwise for images which are mostly flat. blockedmean is...

Yeah, threading across pages is what I had originally planned on doing. But then I saw your issue you posted and figured: "eh, maybe I can try to be helpful...

If nothing else, it got me more accustomed to the goofy static lifetime issues that come about from trying to use std::thread directly. :)