Edison Hua
Edison Hua
I still don't know if this can be done efficiently - it seems to be that it is not possible to know how much space a specific font may take...
Not implementing a recursive solution that iterates to a limit. Maybe I misunderstood this question, but at least in CSS, I'd have to use max() or min() to get the...
Cheers! And a Happy New Year to you too
Use -O3 for the above script. For some reason it wasn't allocating variables correctly into registers and instead using the stack which is slower.
https://godbolt.org/z/WPWjf8c96
Sure thing! As many approaches as possible are the best possible solution. I'm still working on optimizing the basic ImageSearch functionality by avoiding the O(n²) subimage matching loop as much...
Saved work (notes to self): * https://godbolt.org/z/j6bvo1YPd 1 * https://godbolt.org/z/qqPd3W7qs 2 * https://godbolt.org/z/3vTeT3E6e all2
@martona There is a requirement for a "focused pixel" (an additional pixel in the center of the image or to be determined by some algorithm). See: https://godbolt.org/z/j6bvo1YPd ##### An explanation:...
Notes: https://github.com/iseahound/ImagePut/issues/33 - Completed optimizations using parallel PixelSearch before ImageSearch. https://github.com/iseahound/ImagePut/pull/36 - Adding variation to ImageSearch ([wind0204](https://github.com/wind0204))
Thanks! I personally have zero use for ImageSearch/PixelSearch myself, so any work on it is purely for learning, academic, or for fun. With that said, one common use case is...