Endre Simo
Endre Simo
@danwilhelm can you explain why nannou requires a Vulkan driver?
It can be closed, but it is still not working on MacOS.
Thank you for the feedback and probably you are right, that I should create a tutorial about how someone should use this library. So I'm considering writing an article or...
This is a great suggestions. I was thinking about the implementation and I think it would be possible.
I have analyzed the existing possibilities and the most obvious approach would be to use a well established library like tesseract which has a Go binding also: https://github.com/otiai10/gosseract. This is...
I'm closing this ticket, the issue is fixed now.
I somehow forgot about this ticket, but to answer your question, I created a few WASM [demos](https://github.com/esimov/pigo-wasm-demos/) using the Pigo library and one of them is tackling exactly the same...
I found a hacky solution but i'm not really sure if this is the way to go. First i'm converting the matrix to bytes, then i'm updating the pixel values...
@ibenben I think the solution posted above will just work.
@ibenben gradX is a Mat. `gradX.GetVecfAt(x, y)` will return a vector of floats, but if you need the pixel values you can just use `GetIntAt`. I'm using `GetVecfAt(x, y)` because...