renamed gpubgsegm -> cudabgsegm

pull/1299/head
Vladislav Vinogradov 12 years ago
parent 259ceb7eaa
commit 29386f1449
  1. 9
      modules/cudabgsegm/CMakeLists.txt
  2. 0
      modules/cudabgsegm/doc/background_segmentation.rst
  3. 0
      modules/cudabgsegm/doc/cudabgsegm.rst
  4. 8
      modules/cudabgsegm/include/opencv2/cudabgsegm.hpp
  5. 0
      modules/cudabgsegm/perf/perf_bgsegm.cpp
  6. 2
      modules/cudabgsegm/perf/perf_main.cpp
  7. 0
      modules/cudabgsegm/perf/perf_precomp.cpp
  8. 2
      modules/cudabgsegm/perf/perf_precomp.hpp
  9. 0
      modules/cudabgsegm/src/cuda/fgd.cu
  10. 0
      modules/cudabgsegm/src/cuda/fgd.hpp
  11. 0
      modules/cudabgsegm/src/cuda/gmg.cu
  12. 0
      modules/cudabgsegm/src/cuda/mog.cu
  13. 0
      modules/cudabgsegm/src/cuda/mog2.cu
  14. 0
      modules/cudabgsegm/src/fgd.cpp
  15. 0
      modules/cudabgsegm/src/gmg.cpp
  16. 0
      modules/cudabgsegm/src/mog.cpp
  17. 0
      modules/cudabgsegm/src/mog2.cpp
  18. 0
      modules/cudabgsegm/src/precomp.cpp
  19. 2
      modules/cudabgsegm/src/precomp.hpp
  20. 0
      modules/cudabgsegm/test/test_bgsegm.cpp
  21. 0
      modules/cudabgsegm/test/test_main.cpp
  22. 0
      modules/cudabgsegm/test/test_precomp.cpp
  23. 2
      modules/cudabgsegm/test/test_precomp.hpp
  24. 9
      modules/gpubgsegm/CMakeLists.txt
  25. 2
      samples/gpu/CMakeLists.txt
  26. 2
      samples/gpu/bgfg_segm.cpp
  27. 2
      samples/gpu/performance/tests.cpp

@ -0,0 +1,9 @@
if(ANDROID OR IOS)
ocv_module_disable(cudabgsegm)
endif()
set(the_description "CUDA-accelerated Background Segmentation")
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations)
ocv_define_module(cudabgsegm opencv_video OPTIONAL opencv_legacy opencv_imgproc opencv_cudaarithm opencv_cudafilters opencv_cudaimgproc)

@ -40,11 +40,11 @@
//
//M*/
#ifndef __OPENCV_GPUBGSEGM_HPP__
#define __OPENCV_GPUBGSEGM_HPP__
#ifndef __OPENCV_CUDABGSEGM_HPP__
#define __OPENCV_CUDABGSEGM_HPP__
#ifndef __cplusplus
# error gpubgsegm.hpp header must be compiled as C++
# error cudabgsegm.hpp header must be compiled as C++
#endif
#include "opencv2/core/cuda.hpp"
@ -149,4 +149,4 @@ CV_EXPORTS Ptr<cuda::BackgroundSubtractorFGD>
}} // namespace cv { namespace cuda {
#endif /* __OPENCV_GPUBGSEGM_HPP__ */
#endif /* __OPENCV_CUDABGSEGM_HPP__ */

@ -44,4 +44,4 @@
using namespace perf;
CV_PERF_TEST_CUDA_MAIN(gpubgsegm)
CV_PERF_TEST_CUDA_MAIN(cudabgsegm)

@ -54,7 +54,7 @@
#include "opencv2/ts.hpp"
#include "opencv2/ts/gpu_perf.hpp"
#include "opencv2/gpubgsegm.hpp"
#include "opencv2/cudabgsegm.hpp"
#include "opencv2/video.hpp"
#include "opencv2/opencv_modules.hpp"

@ -45,7 +45,7 @@
#include <limits>
#include "opencv2/gpubgsegm.hpp"
#include "opencv2/cudabgsegm.hpp"
#include "opencv2/core/private.cuda.hpp"

@ -56,7 +56,7 @@
#include "opencv2/ts.hpp"
#include "opencv2/ts/gpu_test.hpp"
#include "opencv2/gpubgsegm.hpp"
#include "opencv2/cudabgsegm.hpp"
#include "opencv2/video.hpp"
#include "opencv2/opencv_modules.hpp"

@ -1,9 +0,0 @@
if(ANDROID OR IOS)
ocv_module_disable(gpubgsegm)
endif()
set(the_description "GPU-accelerated Background Segmentation")
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations)
ocv_define_module(gpubgsegm opencv_video OPTIONAL opencv_legacy opencv_imgproc opencv_cudaarithm opencv_cudafilters opencv_cudaimgproc)

@ -3,7 +3,7 @@ SET(OPENCV_GPU_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc ope
opencv_calib3d opencv_legacy opencv_contrib opencv_gpu
opencv_nonfree opencv_softcascade opencv_superres
opencv_cudaarithm opencv_cudafilters opencv_cudawarping opencv_cudaimgproc
opencv_cudafeatures2d opencv_cudaoptflow opencv_gpubgsegm
opencv_cudafeatures2d opencv_cudaoptflow opencv_cudabgsegm
opencv_cudastereo opencv_cudalegacy)
ocv_check_dependencies(${OPENCV_GPU_SAMPLES_REQUIRED_DEPS})

@ -3,7 +3,7 @@
#include "opencv2/core.hpp"
#include "opencv2/core/utility.hpp"
#include "opencv2/gpubgsegm.hpp"
#include "opencv2/cudabgsegm.hpp"
#include "opencv2/video.hpp"
#include "opencv2/highgui.hpp"

@ -10,7 +10,7 @@
#include "opencv2/cudafeatures2d.hpp"
#include "opencv2/cudafilters.hpp"
#include "opencv2/cudaoptflow.hpp"
#include "opencv2/gpubgsegm.hpp"
#include "opencv2/cudabgsegm.hpp"
#include "opencv2/legacy.hpp"
#include "performance.h"

Loading…
Cancel
Save