Reputation: 7310
I wanted to use CLAHE Algorithm on my image, but I can't find any trace of it in OpenCV4Android tools like Core, Imgproc. Documentation says that it should be in Core class:
Could anyone tell me if it's avaliable in Android?
Upvotes: 2
Views: 779
Reputation: 3921
It's in Imgproc
. But unlike other algorithms which are static methods, it's a class:
From OpenCV java docs:
public class CLAHE
extends Algorithm
Here is the doc:
http://docs.opencv.org/java/org/opencv/imgproc/CLAHE.html
Upvotes: 2