move gpu version of soft cascade to dedicated module
authormarina.kolpakova <marina.kolpakova@itseez.com>
Sun, 3 Mar 2013 07:11:42 +0000 (11:11 +0400)
committermarina.kolpakova <marina.kolpakova@itseez.com>
Thu, 14 Mar 2013 08:27:13 +0000 (12:27 +0400)
commit5120322cea5a0f00e1120780287f8eb89994b9e9
treec977eec99ce93f00815c0f5a9a4d966d5c938cf4
parent9b00c14fff6e9d9753d25c7c2578528bd2d1c54d
move gpu version of soft cascade to dedicated module
21 files changed:
apps/sft/CMakeLists.txt
modules/gpu/include/opencv2/gpu/gpu.hpp
modules/gpu/perf/perf_softcascade.cpp [deleted file]
modules/gpu/src/cuda/icf-sc.cu [deleted file]
modules/gpu/src/gpu_init.cpp [deleted file]
modules/gpu/src/icf.hpp [deleted file]
modules/gpu/src/softcascade.cpp [deleted file]
modules/gpu/test/test_softcascade.cpp [deleted file]
modules/softcascade/CMakeLists.txt
modules/softcascade/include/opencv2/softcascade.hpp
modules/softcascade/perf/perf_cuda_softcascade.cpp [new file with mode: 0644]
modules/softcascade/src/cuda/icf-sc.cu [new file with mode: 0644]
modules/softcascade/src/cuda_invoker.hpp [new file with mode: 0644]
modules/softcascade/src/detector_cuda.cpp [new file with mode: 0644]
modules/softcascade/src/softcascade_init.cpp
modules/softcascade/test/test_cuda_softcascade.cpp [new file with mode: 0644]
modules/softcascade/test/test_main.cpp
modules/softcascade/test/utility.cpp [new file with mode: 0644]
modules/softcascade/test/utility.hpp [new file with mode: 0644]
samples/gpu/CMakeLists.txt
samples/gpu/softcascade.cpp