gpuimgproc module fixes
authorVladislav Vinogradov <vlad.vinogradov@itseez.com>
Thu, 18 Apr 2013 06:46:28 +0000 (10:46 +0400)
committerVladislav Vinogradov <vlad.vinogradov@itseez.com>
Thu, 18 Apr 2013 07:33:34 +0000 (11:33 +0400)
commitc0b3424a23eb41b25c19b87997734315944fe0d5
tree49bd30f3e874200849fb8d55ff52446aaf1a2caf
parentb4f3d0872578f17e877994a56e357f3c00413a72
gpuimgproc module fixes
40 files changed:
modules/gpuimgproc/CMakeLists.txt
modules/gpuimgproc/doc/color.rst [new file with mode: 0644]
modules/gpuimgproc/doc/feature_detection.rst [new file with mode: 0644]
modules/gpuimgproc/doc/gpuimgproc.rst
modules/gpuimgproc/doc/histogram.rst [new file with mode: 0644]
modules/gpuimgproc/doc/hough.rst [new file with mode: 0644]
modules/gpuimgproc/doc/image_processing.rst [deleted file]
modules/gpuimgproc/doc/imgproc.rst [new file with mode: 0644]
modules/gpuimgproc/include/opencv2/gpuimgproc.hpp
modules/gpuimgproc/perf/perf_bilateral_filter.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_blend.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_canny.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_color.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_corners.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_gftt.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_histogram.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_hough.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_imgproc.cpp [deleted file]
modules/gpuimgproc/perf/perf_match_template.cpp [new file with mode: 0644]
modules/gpuimgproc/perf/perf_mean_shift.cpp [new file with mode: 0644]
modules/gpuimgproc/src/blend.cpp
modules/gpuimgproc/src/canny.cpp [new file with mode: 0644]
modules/gpuimgproc/src/color.cpp
modules/gpuimgproc/src/corners.cpp [new file with mode: 0644]
modules/gpuimgproc/src/cuda/corners.cu [moved from modules/gpuimgproc/src/cuda/imgproc.cu with 65% similarity]
modules/gpuimgproc/src/cuda/mean_shift.cu [new file with mode: 0644]
modules/gpuimgproc/src/gftt.cpp
modules/gpuimgproc/src/histogram.cpp [moved from modules/gpuimgproc/src/imgproc.cpp with 60% similarity]
modules/gpuimgproc/src/match_template.cpp
modules/gpuimgproc/src/mean_shift.cpp [new file with mode: 0644]
modules/gpuimgproc/src/precomp.hpp
modules/gpuimgproc/test/test_bilateral_filter.cpp [new file with mode: 0644]
modules/gpuimgproc/test/test_blend.cpp [new file with mode: 0644]
modules/gpuimgproc/test/test_canny.cpp [new file with mode: 0644]
modules/gpuimgproc/test/test_corners.cpp [new file with mode: 0644]
modules/gpuimgproc/test/test_gftt.cpp [new file with mode: 0644]
modules/gpuimgproc/test/test_histogram.cpp [new file with mode: 0644]
modules/gpuimgproc/test/test_imgproc.cpp [deleted file]
modules/gpuimgproc/test/test_match_template.cpp [new file with mode: 0644]
modules/gpuimgproc/test/test_mean_shift.cpp [new file with mode: 0644]