I am using OpenCV.jl for image processing and I want to increase the contrast of an image using adaptive histogram equalization. I can create the CLAHE object with OpenCV.createCLAHE
, but that is an “C++ smart pointer of type OpenCV.cv_PtrAllocated{OpenCV.CLAHE}
”, but I have no idea about how to use it.
I have found in this discussion that ImageContrastAdjustment.jl also allows to do it, but I would like to know if OpenCV - which I am already using - might be sufficient, without having to add more dependencies to the project.