1 | initial version |
Hi, I know this is a bit old, but I found this answer when trying to use 16-bit images with OpenCV's CLAHE and wanted to answer for others looking for this. I actually modified the algorithm to accept any integral type.
Please see here: https://github.com/nathanjackson/opencv/tree/clahe_datatypes
I did make a pull request, but it ultimately may be rejected. Its current implementation uses templates which is said to bloat the generated code.
2 | No.2 Revision |
Hi, I know this is a bit old, but I found this answer when trying to use 16-bit images with OpenCV's CLAHE and wanted to answer for others looking for this. I actually modified the algorithm to accept any integral type.
Please see here: https://github.com/nathanjackson/opencv/tree/clahe_datatypes
I did make a pull request, but it ultimately may be rejected. Its current implementation uses templates which is said to bloat the generated code.
3 | No.3 Revision |
Hi, I know this is a bit old, but I found this answer when trying to use 16-bit images with OpenCV's CLAHE and wanted to answer for others looking for this. I actually modified the algorithm to accept any integral type.
Please see here: https://github.com/nathanjackson/opencv/tree/clahe_datatypesEDIT: Mainline OpenCV's CLAHE now supports 16-bit images.