moved GpuMat and DevMem2D to core module, some code refactoring
authorVladislav Vinogradov <no@email>
Wed, 9 Nov 2011 13:13:52 +0000 (13:13 +0000)
committerVladislav Vinogradov <no@email>
Wed, 9 Nov 2011 13:13:52 +0000 (13:13 +0000)
commitfcfa72081e8b5678e31afe339570f238e3cb937c
tree542398eaa7f43e603eafd07e490618b240f42d08
parent8a148e39f04e4c206b3cc4839b9a08d2f5972990
moved GpuMat and DevMem2D to core module, some code refactoring
95 files changed:
modules/core/include/opencv2/core/core.hpp
modules/core/include/opencv2/core/devmem2d.hpp [new file with mode: 0644]
modules/core/include/opencv2/core/gpumat.hpp [new file with mode: 0644]
modules/core/src/gpumat.cpp [new file with mode: 0644]
modules/gpu/CMakeLists.txt
modules/gpu/include/opencv2/gpu/devmem2d.hpp
modules/gpu/include/opencv2/gpu/gpu.hpp
modules/gpu/include/opencv2/gpu/gpumat.hpp
modules/gpu/include/opencv2/gpu/matrix_operations.hpp [deleted file]
modules/gpu/perf/perf_arithm.cpp
modules/gpu/perf/perf_calib3d.cpp
modules/gpu/perf/perf_filters.cpp
modules/gpu/perf/perf_imgproc.cpp
modules/gpu/perf/perf_matop.cpp
modules/gpu/src/arithm.cpp
modules/gpu/src/bilateral_filter.cpp
modules/gpu/src/blend.cpp
modules/gpu/src/brute_force_matcher.cpp
modules/gpu/src/calib3d.cpp
modules/gpu/src/cascadeclassifier.cpp
modules/gpu/src/color.cpp
modules/gpu/src/cuda/bf_knnmatch.cu
modules/gpu/src/cuda/bf_match.cu
modules/gpu/src/cuda/bf_radius_match.cu
modules/gpu/src/cuda/bilateral_filter.cu
modules/gpu/src/cuda/blend.cu
modules/gpu/src/cuda/calib3d.cu
modules/gpu/src/cuda/canny.cu
modules/gpu/src/cuda/color.cu
modules/gpu/src/cuda/column_filter.cu
modules/gpu/src/cuda/copy_make_border.cu
modules/gpu/src/cuda/element_operations.cu
modules/gpu/src/cuda/hist.cu
modules/gpu/src/cuda/hog.cu
modules/gpu/src/cuda/imgproc.cu
modules/gpu/src/cuda/internal_shared.hpp
modules/gpu/src/cuda/match_template.cu
modules/gpu/src/cuda/mathfunc.cu
modules/gpu/src/cuda/matrix_operations.cu
modules/gpu/src/cuda/matrix_reductions.cu
modules/gpu/src/cuda/pyr_down.cu
modules/gpu/src/cuda/pyr_up.cu
modules/gpu/src/cuda/remap.cu
modules/gpu/src/cuda/resize.cu
modules/gpu/src/cuda/row_filter.cu
modules/gpu/src/cuda/safe_call.hpp
modules/gpu/src/cuda/split_merge.cu
modules/gpu/src/cuda/stereobm.cu
modules/gpu/src/cuda/stereobp.cu
modules/gpu/src/cuda/stereocsbp.cu
modules/gpu/src/cuda/surf.cu
modules/gpu/src/cudastream.cpp
modules/gpu/src/element_operations.cpp
modules/gpu/src/filtering.cpp
modules/gpu/src/gpumat.cpp [deleted file]
modules/gpu/src/hog.cpp
modules/gpu/src/imgproc.cpp
modules/gpu/src/initialization.cpp
modules/gpu/src/match_template.cpp
modules/gpu/src/matrix_operations.cpp
modules/gpu/src/matrix_reductions.cpp
modules/gpu/src/mssegmentation.cpp
modules/gpu/src/opencv2/gpu/device/border_interpolate.hpp
modules/gpu/src/opencv2/gpu/device/color.hpp
modules/gpu/src/opencv2/gpu/device/datamov_utils.hpp
modules/gpu/src/opencv2/gpu/device/detail/color_detail.hpp
modules/gpu/src/opencv2/gpu/device/detail/transform_detail.hpp
modules/gpu/src/opencv2/gpu/device/detail/type_traits_detail.hpp
modules/gpu/src/opencv2/gpu/device/detail/utility_detail.hpp
modules/gpu/src/opencv2/gpu/device/detail/vec_distance_detail.hpp
modules/gpu/src/opencv2/gpu/device/dynamic_smem.hpp
modules/gpu/src/opencv2/gpu/device/emulation.hpp
modules/gpu/src/opencv2/gpu/device/filters.hpp
modules/gpu/src/opencv2/gpu/device/funcattrib.hpp
modules/gpu/src/opencv2/gpu/device/functional.hpp
modules/gpu/src/opencv2/gpu/device/limits.hpp
modules/gpu/src/opencv2/gpu/device/saturate_cast.hpp
modules/gpu/src/opencv2/gpu/device/transform.hpp
modules/gpu/src/opencv2/gpu/device/type_traits.hpp
modules/gpu/src/opencv2/gpu/device/utility.hpp
modules/gpu/src/opencv2/gpu/device/vec_distance.hpp
modules/gpu/src/opencv2/gpu/device/vec_math.hpp
modules/gpu/src/opencv2/gpu/device/vec_traits.hpp
modules/gpu/src/opencv2/gpu/device/warp.hpp
modules/gpu/src/opencv2/gpu/device/warp_reduce.hpp
modules/gpu/src/split_merge.cpp
modules/gpu/src/stereobm.cpp
modules/gpu/src/stereobp.cpp
modules/gpu/src/stereocsbp.cpp
modules/gpu/src/surf.cpp
modules/gpu/test/test_filters.cpp
modules/gpu/test/test_hog.cpp
modules/gpu/test/test_imgproc.cpp
samples/gpu/stereo_match.cpp
samples/gpu/surf_keypoint_matcher.cpp