CLAHE in Android
Hello all,
I wanna use CLAHE algorithm in my project. But i cannot find documentation that how can i use CLAHE algorithm. I found one thing about this subject that opencv has CLAHE algorithm. ( https://github.com/vRallev/OpenCV/blo... ). There are no documentation about this subject.
How can i use CLAHE class? What is "addr" variable in constructor method ( protected CLAHE(long addr) { super(addr); } )? How can i create this "addr" variable?
Thanks for your interest.
it's much easier, than you think
Thansk for documentation berak. But i dont know how can create object based on clahe class becasue its constructor want "addr" variable. Do have info about this variable?
oh, sorry, misunderstood your problem.
you would use CLAHE cl = Imgproc.createCLAHE(); (but afaaik, it only works in opencv3)
the link you refer to, is a 3rd party fork, also pretty outdated. take care !
thanks for your advice berak ;)