s-trinh
s-trinh
Ok, this explains my numbers. I am interested into the in-memory image compression using JPEG to be able to use a separate thread to save images, but without saturating the...
Hi. For my use case, it would be more like 16-bit per channel `RGBA` but I believe for consistency in the lib supporting both `BGR` and `BGRA` mode would be...
What I am getting is txt files with header description. Something like mode (10 bits per pixel or 12 per pixel), width/height (2048), etc. I don't have much more information....
Looks like I am not the only one interested into Bayer conversion :smiley: https://github.com/ermig1979/Simd/issues/135
Thanks. I will see what I can do. There is no urgent need from my side.
@ermig1979 My attempt at Bayer demosaicing (still WIP): https://github.com/lagadic/visp/pull/936/files There are two implemented methods, bilinear and Malvar interpolation. I am interested into 16-bit (10/12 bits or even more) and 8-bit...
To summarize for my use case, ideally: - a very fast demosaic algorithm, e.g. bilinear demosaicing (this should be what OpenCV have) or similar - a more advanced algorithm, e.g....
Thanks for the answer. I have found [stb_truetype.h](https://github.com/nothings/stb/blob/master/stb_truetype.h) for a potential replacement. Feel free to propose if you know another solution. You can keep this issue open for potential contribution...
This pull request allows using 3 points only for `VIRTUAL_VS` and `LOWE`. For all the other methods (e.g. `DEMENTHON_VIRTUAL_VS`), it will throw an exception. Since for me when using `VIRTUAL_VS`...
> Even a very coarse initialisation should be fine. This is not the case for 3 points. This is interesting. I will try to remember that. --- This is just...