CLAHE in Android

asked 2015-12-16 08:40:04 -0600

asecbi gravatar image

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.

edit retag flag offensive close merge delete

Comments

berak gravatar imageberak ( 2015-12-17 03:07:31 -0600 )edit

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?

asecbi gravatar imageasecbi ( 2015-12-17 03:48:48 -0600 )edit
1

oh, sorry, misunderstood your problem.

  • no, you cannot use the protected constructor (that takes a native address)
  • 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 !

berak gravatar imageberak ( 2015-12-17 04:47:53 -0600 )edit

thanks for your advice berak ;)

asecbi gravatar imageasecbi ( 2015-12-17 06:09:05 -0600 )edit