Home
last modified time | relevance | path

Searched refs:getOutputMat (Results 1 – 23 of 23) sorted by relevance

/external/opencv3/modules/cudaarithm/src/cuda/
Dpolar_cart.cu67 GpuMat dst = getOutputMat(_dst, x.size(), CV_32FC1, stream); in magnitude()
86 GpuMat dst = getOutputMat(_dst, x.size(), CV_32FC1, stream); in magnitudeSqr()
105 GpuMat dst = getOutputMat(_dst, x.size(), CV_32FC1, stream); in phase()
127 GpuMat mag = getOutputMat(_mag, x.size(), CV_32FC1, stream); in cartToPolar()
128 GpuMat angle = getOutputMat(_angle, x.size(), CV_32FC1, stream); in cartToPolar()
188 GpuMat x = getOutputMat(_x, angle.size(), CV_32FC1, _stream); in polarToCart()
189 GpuMat y = getOutputMat(_y, angle.size(), CV_32FC1, _stream); in polarToCart()
Dmath.cu102 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in abs()
147 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in sqr()
184 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in sqrt()
230 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in exp()
267 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in log()
349 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in pow()
Dintegral.cu73 GpuMat dst = getOutputMat(_dst, src.rows + 1, src.cols + 1, CV_32SC1, stream); in integral()
97 GpuMat dst = getOutputMat(_dst, src.rows + 1, src.cols + 1, CV_64FC1, stream); in sqrIntegral()
Dmul_spectrums.cu132 GpuMat dst = getOutputMat(_dst, src1.size(), CV_32FC2, stream); in mulSpectrums()
152 GpuMat dst = getOutputMat(_dst, src1.size(), CV_32FC2, stream); in mulAndScaleSpectrums()
Dminmax.cu110 GpuMat dst = getOutputMat(_dst, 1, 2, dst_depth, stream); in findMinMax()
181 GpuMat dst = getOutputMat(_dst, 1, 1, dst_depth, stream); in findMaxAbs()
Dsum.cu129 GpuMat dst = getOutputMat(_dst, 1, 1, CV_64FC(channels), stream); in calcSum()
174 GpuMat dst = getOutputMat(_dst, 1, 1, CV_64FC(channels), stream); in calcAbsSum()
219 GpuMat dst = getOutputMat(_dst, 1, 1, CV_64FC(channels), stream); in calcSqrSum()
Dnorm.cu108 GpuMat dst = getOutputMat(_dst, 1, 1, normType == NORM_L2 ? CV_64FC1 : CV_32SC1, stream); in calcNormDiff()
181 GpuMat dst = getOutputMat(_dst, 1, 1, CV_64FC1, stream); in normL2()
Dtranspose.cu67 GpuMat dst = getOutputMat(_dst, src.cols, src.rows, src.type(), stream); in transpose()
Dcountnonzero.cu90 GpuMat dst = getOutputMat(_dst, 1, 1, CV_32SC1, stream); in countNonZero()
Dthreshold.cu107 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in threshold()
Dcopy_make_border.cu147 …GpuMat dst = getOutputMat(_dst, src.rows + top + bottom, src.cols + left + right, src.type(), stre… in copyMakeBorder()
Dlut.cu178 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in transform()
Dreduce.cu140 …GpuMat dst = getOutputMat(_dst, 1, dim == 0 ? src.cols : src.rows, CV_MAKE_TYPE(CV_MAT_DEPTH(dtype… in reduce()
Dsplit_merge.cu127 GpuMat dst = getOutputMat(_dst, size, CV_MAKE_TYPE(depth, channels), stream); in mergeImpl()
Dnormalize.cu261 dst = getOutputMat(_dst, src.size(), tmp_depth, stream); in normalize()
Dbitwise_mat.cu74 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in bitwise_not()
Dadd_weighted.cu573 GpuMat dst = getOutputMat(_dst, src1.size(), CV_MAKE_TYPE(ddepth, cn), stream); in addWeighted()
/external/opencv3/modules/core/include/opencv2/core/
Dprivate.cuda.hpp86 CV_EXPORTS GpuMat getOutputMat(OutputArray _dst, int rows, int cols, int type, Stream& stream);
87 static inline GpuMat getOutputMat(OutputArray _dst, Size size, int type, Stream& stream) in getOutputMat() function
89 return getOutputMat(_dst, size.height, size.width, type, stream); in getOutputMat()
/external/opencv3/modules/cudaarithm/src/
Delement_operations.cpp150 GpuMat dst = getOutputMat(_dst, size, CV_MAKE_TYPE(ddepth, cn), stream); in arithm_op()
205 GpuMat dst = getOutputMat(_dst, src1.size(), src1.type(), stream); in multiply()
218 GpuMat dst = getOutputMat(_dst, src1.size(), src1.type(), stream); in multiply()
248 GpuMat dst = getOutputMat(_dst, src1.size(), src1.type(), stream); in divide()
261 GpuMat dst = getOutputMat(_dst, src1.size(), src1.type(), stream); in divide()
402 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in rshift()
426 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in lshift()
487 GpuMat dst = getOutputMat(_dst, src.size(), CV_32FC1, stream); in magnitude()
498 GpuMat dst = getOutputMat(_dst, src.size(), CV_32FC1, stream); in magnitudeSqr()
Dreductions.cpp144 GpuMat dst = getOutputMat(_dst, 1, 2, CV_64FC1, stream); in meanStdDev()
193 GpuMat dst = getOutputMat(_dst, src.size(), CV_32FC1, _stream); in rectStdDev()
Dcore.cpp128 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in flip()
Darithm.cpp203 GpuMat dst = getOutputMat(_dst, dstSize, src1.type(), stream); in gemm()
481 GpuMat result = getOutputMat(_result, result_size, CV_32FC1, _stream); in convolve()
/external/opencv3/modules/core/src/
Dcuda_gpu_mat.cpp369 GpuMat cv::cuda::getOutputMat(OutputArray _dst, int rows, int cols, int type, Stream& stream) in getOutputMat() function in cv::cuda