First time here? Check out the FAQ!
answered 2016-12-08 02:41:57 -0600
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);