Clahe Algorithm
Hi, I am working on image processing and want clahe algorithm. Please help me to resolve the problem.
Thanks, Rashmi
add a comment
Hi, I am working on image processing and want clahe algorithm. Please help me to resolve the problem.
Thanks, Rashmi
it's actually pretty easy:
Mat src = ... // 1 channel, grayscale required
Mat dst; // start empty
int thresh = 50;
Ptr<CLAHE> cl = createCLAHE(50);
cl->apply(src, dst);
Thank you but sorry I didn't mention above, I want in c/c++
Asked: 2016-12-08 02:03:27 -0600
Seen: 462 times
Last updated: Dec 08 '16