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

  /external/opencv3/modules/core/test/
test_arithm.cpp     [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
minmax.cu 108 const int dst_depth = src_depth < CV_32F ? CV_32S : src_depth;
110 GpuMat dst = getOutputMat(_dst, 1, 2, dst_depth, stream);
179 const int dst_depth = src_depth < CV_32F ? CV_32S : src_depth;
181 GpuMat dst = getOutputMat(_dst, 1, 1, dst_depth, stream);
  /external/opencv3/modules/cudaarithm/test/
test_reductions.cpp 835 int dst_depth; local
852 dst_depth = depth;
854 dst_depth = depth == CV_8U ? CV_32S : depth < CV_64F ? CV_32F : depth;
856 dst_depth = depth < CV_32F ? CV_32F : depth;
858 dst_type = CV_MAKE_TYPE(dst_depth, channels);
868 cv::cuda::reduce(loadMat(src, useRoi), dst, 0, reduceOp, dst_depth);
871 cv::reduce(src, dst_gold, 0, reduceOp, dst_depth);
873 EXPECT_MAT_NEAR(dst_gold, dst, dst_depth < CV_32F ? 0.0 : 0.02);
881 cv::cuda::reduce(loadMat(src, useRoi), dst, 1, reduceOp, dst_depth);
884 cv::reduce(src, dst_gold, 1, reduceOp, dst_depth);
    [all...]
test_element_operations.cpp 2473 int dst_depth; local
2502 cv::cuda::addWeighted(loadMat(src1), alpha, loadMat(src2), beta, gamma, dst, dst_depth); local
2512 cv::cuda::addWeighted(loadMat(src1, useRoi), alpha, loadMat(src2, useRoi), beta, gamma, dst, dst_depth); local
    [all...]
  /external/opencv/cv/src/
cvderiv.cpp 385 int dst_depth = CV_MAT_DEPTH(dst_type); local
386 int work_depth = dst_depth < CV_32F ? CV_32S : CV_32F;
407 int src_depth = CV_MAT_DEPTH(_src_type), dst_depth = CV_MAT_DEPTH(_dst_type);
413 if( ((src_depth != CV_8U || (dst_depth != CV_16S && dst_depth != CV_32F)) &&
414 (src_depth != CV_32F || dst_depth != CV_32F)) ||
435 if( dst_depth == CV_16S )
440 else if( dst_depth == CV_32F )
448 if( dst_depth == CV_32F )
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 1027 int coi1 = 0, coi2 = 0, src_depth, dst_depth; local
1586 int coi1 = 0, coi2 = 0, src_depth, dst_depth; local
    [all...]
  /external/opencv3/modules/imgproc/test/
test_imgwarp.cpp 1275 int msz, src_depth = cvtest::randInt(rng) % 2, dst_depth; local
    [all...]
  /external/opencv3/modules/cudaarithm/perf/
perf_element_operations.cpp 1192 const int dst_depth = GET_PARAM(3); local
1206 TEST_CYCLE() cv::cuda::addWeighted(d_src1, 0.5, d_src2, 0.5, 10.0, dst, dst_depth);
1214 TEST_CYCLE() cv::addWeighted(src1, 0.5, src2, 0.5, 10.0, dst, dst_depth);
    [all...]

Completed in 4708 milliseconds