我正在尝试在openCV Android中使用CLAHE。
CLAHE clahe = new CLAHE(0);
clahe.setClipLimit(0.01);
clahe.setTilesGridSize(new Size(8, 8));
Mat I2 = new Mat();
clahe.apply(I,I2);
正如你所看到的,我不知道在第一行中为构造函数放置了什么,所以我只把0放在那里。当然它会引发运行时错误。我查了官方文档和源代码:
protected CLAHE(long addr) { super(addr); }
我仍然不知道该为“addr”添加什么。或者我以错误的方式使用整个CLAHE课程?
答案 0 :(得分:1)
请查看Imgproc.createCLAHE()
,具体取决于您使用的OpenCV版本。