added GPU bilateral filter + tests
authorAnatoly Baksheev <no@email>
Wed, 29 Aug 2012 12:49:07 +0000 (16:49 +0400)
committerAnatoly Baksheev <no@email>
Wed, 29 Aug 2012 15:20:32 +0000 (19:20 +0400)
commit0ba01afd83d16d8ba2cfbf98dd46debe569b69cd
tree28c117bc3d311f6d3a90efbdaf110aa236cccd3b
parenta09679044e5334aebe3dbd1929a950ccee40ac56
added GPU bilateral filter + tests

added GPU non local means brute force filter + tests
19 files changed:
CMakeLists.txt
cmake/OpenCVCompilerOptions.cmake
modules/gpu/doc/image_processing.rst
modules/gpu/include/opencv2/gpu/gpu.hpp
modules/gpu/perf/perf_core.cpp
modules/gpu/perf/perf_denoising.cpp [new file with mode: 0644]
modules/gpu/perf/perf_imgproc.cpp
modules/gpu/perf/perf_matop.cpp
modules/gpu/perf/perf_video.cpp
modules/gpu/perf/utility.hpp
modules/gpu/src/cuda/bilateral_filter.cu
modules/gpu/src/cuda/nlm.cu [new file with mode: 0644]
modules/gpu/src/denoising.cpp [new file with mode: 0644]
modules/gpu/src/hough.cpp
modules/gpu/src/opencv2/gpu/device/functional.hpp
modules/gpu/test/test_denoising.cpp [new file with mode: 0644]
modules/gpu/test/utility.cpp
modules/gpu/test/utility.hpp
modules/imgproc/src/smooth.cpp