CLAHE in Android

asked Dec 16 '15

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.

Preview: (hide)

Comments

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 (Dec 17 '15)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 (Dec 17 '15)edit

thanks for your advice berak ;)

asecbi gravatar imageasecbi (Dec 17 '15)edit