HomeSort by relevance Sort by last modified time
    Searched refs:createContinuous (Results 1 - 7 of 7) sorted by null

  /external/opencv3/modules/cudaarithm/src/
arithm.cpp 329 createContinuous(src.rows, src.cols, src.type(), src_cont);
359 createContinuous(dft_size, CV_32FC2, _dst);
368 createContinuous(dft_size, CV_32F, _dst);
379 createContinuous(Size(dft_size.width / 2 + 1, dft_size.height), CV_32FC2, _dst);
381 createContinuous(Size(dft_size.width, dft_size.height / 2 + 1), CV_32FC2, _dst);
448 createContinuous(dft_size, CV_32F, image_block);
449 createContinuous(dft_size, CV_32F, templ_block);
450 createContinuous(dft_size, CV_32F, result_data);
453 createContinuous(1, spect_len, CV_32FC2, image_spect);
454 createContinuous(1, spect_len, CV_32FC2, templ_spect)
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
cuda.inl.hpp 347 GpuMat createContinuous(int rows, int cols, int type)
350 createContinuous(rows, cols, type, m);
355 void createContinuous(Size size, int type, OutputArray arr)
357 createContinuous(size.height, size.width, type, arr);
361 GpuMat createContinuous(Size size, int type)
364 createContinuous(size, type, m);
cuda.hpp 317 CV_EXPORTS void createContinuous(int rows, int cols, int type, OutputArray arr);
  /external/opencv3/modules/cudaarithm/perf/
perf_arithm.cpp 229 cv::cuda::GpuMat d_image = cv::cuda::createContinuous(size, CV_32FC1);
232 cv::cuda::GpuMat d_templ = cv::cuda::createContinuous(templ_size, templ_size, CV_32FC1);
  /external/opencv3/modules/cudev/test/
test_warp.cu 227 createContinuous(M.size(), M.type(), d_M);
247 createContinuous(M.size(), M.type(), d_M);
  /external/opencv3/modules/core/src/
cuda_gpu_mat.cpp 270 void cv::cuda::createContinuous(int rows, int cols, int type, OutputArray arr)
  /external/opencv3/modules/cudafilters/src/
filtering.cpp 225 kernel_ = cuda::createContinuous(kernel.size(), CV_32FC1);
560 kernel_ = cuda::createContinuous(kernel.size(), CV_8UC1);
    [all...]

Completed in 233 milliseconds