• Namgoo Lee's avatar
    Add CV_16UC1 support for cuda::CLAHE · fb8e652c
    Namgoo Lee authored
    Due to size limit of shared memory, histogram is built on
    the global memory for CV_16UC1 case.
    
    The amount of memory needed for building histogram is:
    
        65536 * 4byte = 256KB
    
    and shared memory limit is 48KB typically.
    
    Added test cases for CV_16UC1 and various clip limits.
    Added perf tests for CV_16UC1 on both CPU and CUDA code.
    
    There was also a bug in CV_8UC1 case when redistributing
    "residual" clipped pixels. Adding the test case where clip
    limit is 5.0 exposes this bug.
    fb8e652c
Name
Last commit
Last update
..
perf_bilateral_filter.cpp Loading commit data...
perf_blend.cpp Loading commit data...
perf_canny.cpp Loading commit data...
perf_color.cpp Loading commit data...
perf_corners.cpp Loading commit data...
perf_gftt.cpp Loading commit data...
perf_histogram.cpp Loading commit data...
perf_hough.cpp Loading commit data...
perf_main.cpp Loading commit data...
perf_match_template.cpp Loading commit data...
perf_mean_shift.cpp Loading commit data...
perf_precomp.hpp Loading commit data...