moved SURF_GPU and VIBE to gpunonfree module
authorVladislav Vinogradov <vlad.vinogradov@itseez.com>
Fri, 15 Mar 2013 10:09:39 +0000 (14:09 +0400)
committerVladislav Vinogradov <vlad.vinogradov@itseez.com>
Mon, 18 Mar 2013 10:06:29 +0000 (14:06 +0400)
commitfd7bf0b76634396e14596ab4e82fb95eeb99811e
treebb6216eeb012e981d3a106d07cd3c7a3dc9b82fb
parentabc9ef68094d6d1b8118565b01f2dea79f47e170
moved SURF_GPU and VIBE to gpunonfree module
39 files changed:
modules/gpu/CMakeLists.txt
modules/gpu/doc/feature_detection_and_description.rst
modules/gpu/doc/video.rst
modules/gpu/include/opencv2/gpu/gpu.hpp
modules/gpu/perf/perf_video.cpp
modules/gpu/test/test_bgfg.cpp
modules/gpunonfree/CMakeLists.txt [new file with mode: 0644]
modules/gpunonfree/doc/feature_detection_and_description.rst [new file with mode: 0644]
modules/gpunonfree/doc/gpunonfree.rst [new file with mode: 0644]
modules/gpunonfree/doc/video.rst [new file with mode: 0644]
modules/gpunonfree/include/opencv2/gpunonfree/gpunonfree.hpp [new file with mode: 0644]
modules/gpunonfree/perf/perf_gpunonfree.cpp [new file with mode: 0644]
modules/gpunonfree/perf/perf_main.cpp [new file with mode: 0644]
modules/gpunonfree/perf/perf_precomp.cpp [new file with mode: 0644]
modules/gpunonfree/perf/perf_precomp.hpp [new file with mode: 0644]
modules/gpunonfree/src/cuda/surf.cu [moved from modules/gpu/src/cuda/surf.cu with 96% similarity]
modules/gpunonfree/src/cuda/vibe.cu [moved from modules/gpu/src/cuda/bgfg_vibe.cu with 95% similarity]
modules/gpunonfree/src/precomp.cpp [new file with mode: 0644]
modules/gpunonfree/src/precomp.hpp [new file with mode: 0644]
modules/gpunonfree/src/surf.cpp [moved from modules/gpu/src/surf.cpp with 100% similarity]
modules/gpunonfree/src/vibe.cpp [moved from modules/gpu/src/bgfg_vibe.cpp with 100% similarity]
modules/gpunonfree/test/test_gpunonfree.cpp [new file with mode: 0644]
modules/gpunonfree/test/test_main.cpp [new file with mode: 0644]
modules/gpunonfree/test/test_precomp.cpp [new file with mode: 0644]
modules/gpunonfree/test/test_precomp.hpp [new file with mode: 0644]
modules/stitching/CMakeLists.txt
modules/stitching/include/opencv2/stitching/detail/matchers.hpp
modules/stitching/src/matchers.cpp
modules/stitching/src/precomp.hpp
modules/stitching/src/stitcher.cpp
samples/cpp/CMakeLists.txt
samples/cpp/stitching_detailed.cpp
samples/gpu/CMakeLists.txt
samples/gpu/bgfg_segm.cpp
samples/gpu/driver_api_stereo_multi.cpp
samples/gpu/performance/CMakeLists.txt
samples/gpu/performance/tests.cpp
samples/gpu/stereo_multi.cpp
samples/gpu/surf_keypoint_matcher.cpp