我想在图像上使用CLAHE算法,但在诸如Core,Imgproc之类的OpenCV4Android工具中找不到任何痕迹。文档说它应该在Core类中:
http://docs.opencv.org/java/
谁能告诉我它是否在Android中可用?
最佳答案
在Imgproc
中。但是与其他算法(它们是静态方法)不同,它是类:
从OpenCV Java文档:public class CLAHE
extends Algorithm
这是文档:
http://docs.opencv.org/java/org/opencv/imgproc/CLAHE.html
关于android - OpenCV4Android-如何使用CLAHE算法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20556825/