Пример #1
0
void cvAdaptEqualize(const CvArr* srcarr, CvArr* dstarr,
                        unsigned int xdivs, unsigned int ydivs, unsigned int bins, int range)
{
       
        // call CLAHE with negative limit (as flag value) to perform AHE (no limits)
       
        cvCLAdaptEqualize(srcarr, dstarr, xdivs, ydivs, bins, -1.0, range);
}
Пример #2
0
void cvAdaptEqualize(IplImage *src, IplImage *dst, 
			unsigned int xdivs, unsigned int ydivs, unsigned int bins, int range)
{

	// call CLAHE with negative limit (as flag value) to perform AHE (no limits)

	cvCLAdaptEqualize(src, dst, xdivs, ydivs, bins, -1.0, range);
}