/external/opencv3/modules/cudalegacy/include/opencv2/ |
D | cudalegacy.hpp | 194 CV_EXPORTS void calcOpticalFlowBM(const GpuMat& prev, const GpuMat& curr, 196 GpuMat& velx, GpuMat& vely, GpuMat& buf, 202 …void operator ()(const GpuMat& I0, const GpuMat& I1, GpuMat& flowx, GpuMat& flowy, int search_wind… 205 GpuMat buffer; 206 GpuMat extended_I0; 207 GpuMat extended_I1; 226 CV_EXPORTS void interpolateFrames(const GpuMat& frame0, const GpuMat& frame1, 227 const GpuMat& fu, const GpuMat& fv, 228 const GpuMat& bu, const GpuMat& bv, 229 float pos, GpuMat& newFrame, GpuMat& buf, [all …]
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | cuda.inl.hpp | 58 GpuMat::GpuMat(Allocator* allocator_) in GpuMat() function in cv::cuda::GpuMat 63 GpuMat::GpuMat(int rows_, int cols_, int type_, Allocator* allocator_) in GpuMat() function in cv::cuda::GpuMat 71 GpuMat::GpuMat(Size size_, int type_, Allocator* allocator_) in GpuMat() function in cv::cuda::GpuMat 79 GpuMat::GpuMat(int rows_, int cols_, int type_, Scalar s_, Allocator* allocator_) in GpuMat() function in cv::cuda::GpuMat 90 GpuMat::GpuMat(Size size_, int type_, Scalar s_, Allocator* allocator_) in GpuMat() function in cv::cuda::GpuMat 101 GpuMat::GpuMat(const GpuMat& m) in GpuMat() function in cv::cuda::GpuMat 109 GpuMat::GpuMat(InputArray arr, Allocator* allocator_) : in GpuMat() function in cv::cuda::GpuMat 116 GpuMat::~GpuMat() in ~GpuMat() 122 GpuMat& GpuMat::operator =(const GpuMat& m) in operator =() 126 GpuMat temp(m); in operator =() [all …]
|
D | cuda.hpp | 96 class CV_EXPORTS GpuMat class 105 virtual bool allocate(GpuMat* mat, int rows, int cols, size_t elemSize) = 0; 106 virtual void free(GpuMat* mat) = 0; 114 explicit GpuMat(Allocator* allocator = defaultAllocator()); 117 GpuMat(int rows, int cols, int type, Allocator* allocator = defaultAllocator()); 118 GpuMat(Size size, int type, Allocator* allocator = defaultAllocator()); 121 GpuMat(int rows, int cols, int type, Scalar s, Allocator* allocator = defaultAllocator()); 122 GpuMat(Size size, int type, Scalar s, Allocator* allocator = defaultAllocator()); 125 GpuMat(const GpuMat& m); 128 GpuMat(int rows, int cols, int type, void* data, size_t step = Mat::AUTO_STEP); [all …]
|
/external/opencv3/modules/cudaarithm/src/ |
D | element_operations.cpp | 95 …typedef void (*mat_mat_func_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& … 96 …typedef void (*mat_scalar_func_t)(const GpuMat& src, Scalar val, bool inv, GpuMat& dst, const GpuM… 108 GpuMat src1; in arithm_op() 112 GpuMat src2; in arithm_op() 129 GpuMat mask = getInputMat(_mask, stream); in arithm_op() 150 GpuMat dst = getOutputMat(_dst, size, CV_MAKE_TYPE(ddepth, cn), stream); in arithm_op() 166 void addMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… 168 void addScalar(const GpuMat& src, Scalar val, bool, GpuMat& dst, const GpuMat& mask, double, Stream… 178 void subMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… 180 void subScalar(const GpuMat& src, Scalar val, bool inv, GpuMat& dst, const GpuMat& mask, double, St… [all …]
|
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | mul_mat.cu | 55 void mulMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double scale, Strea… 56 void mulMat_8uc4_32f(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); 57 void mulMat_16sc4_32f(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); 90 …void mulMatImpl(const GpuMat& src1, const GpuMat& src2, const GpuMat& dst, double scale, Stream& s… in mulMatImpl() 106 void mulMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double scale, Strea… in mulMat() argument 108 …typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, const GpuMat& dst, double scale, St… in mulMat() 181 GpuMat src1_ = src1.reshape(1); in mulMat() 182 GpuMat src2_ = src2.reshape(1); in mulMat() 183 GpuMat dst_ = dst.reshape(1); in mulMat() 214 void mulMat_8uc4_32f(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in mulMat_8uc4_32f() [all …]
|
D | minmax_mat.cu | 55 void minMaxMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double, Stream& … 57 void minMaxScalar(const GpuMat& src, cv::Scalar value, bool, GpuMat& dst, const GpuMat&, double, St… 65 void minMaxMat_v1(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in minMaxMat_v1() 87 void minMaxMat_v2(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in minMaxMat_v2() 115 void minMaxMat_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in minMaxMat_v4() 127 void minMaxMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double, Stream& … in minMaxMat() argument 129 typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); in minMaxMat() 166 GpuMat src1_ = src1.reshape(1); in minMaxMat() 167 GpuMat src2_ = src2.reshape(1); in minMaxMat() 168 GpuMat dst_ = dst.reshape(1); in minMaxMat() [all …]
|
D | div_mat.cu | 55 void divMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double scale, Strea… 56 void divMat_8uc4_32f(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); 57 void divMat_16sc4_32f(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); 104 …void divMatImpl(const GpuMat& src1, const GpuMat& src2, const GpuMat& dst, double scale, Stream& s… in divMatImpl() 120 void divMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double scale, Strea… in divMat() argument 122 …typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, const GpuMat& dst, double scale, St… in divMat() 195 GpuMat src1_ = src1.reshape(1); in divMat() 196 GpuMat src2_ = src2.reshape(1); in divMat() 197 GpuMat dst_ = dst.reshape(1); in divMat() 232 void divMat_8uc4_32f(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in divMat_8uc4_32f() [all …]
|
D | math.cu | 78 void absMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in absMat() 86 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in abs() 98 GpuMat src = getInputMat(_src, stream); in abs() 102 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in abs() 123 void sqrMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in sqrMat() 131 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in sqr() 143 GpuMat src = getInputMat(_src, stream); in sqr() 147 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in sqr() 160 void sqrtMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in sqrtMat() 168 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in sqrt() [all …]
|
D | cmp_mat.cu | 55 void cmpMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double, Stream& str… 79 void cmpMat_v1(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in cmpMat_v1() 114 void cmpMatEq_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in cmpMatEq_v4() 124 void cmpMatNe_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in cmpMatNe_v4() 134 void cmpMatLt_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in cmpMatLt_v4() 144 void cmpMatLe_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in cmpMatLe_v4() 156 void cmpMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double, Stream& str… in cmpMat() argument 158 typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); in cmpMat() 170 typedef void (*func_v4_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); in cmpMat() 184 const GpuMat* psrc1[] = in cmpMat() [all …]
|
D | absdiff_mat.cu | 55 void absDiffMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double, Stream&… 91 void absDiffMat_v1(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in absDiffMat_v1() 104 void absDiffMat_v2(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in absDiffMat_v2() 123 void absDiffMat_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in absDiffMat_v4() 135 void absDiffMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat&, double, Stream&… in absDiffMat() argument 137 typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream); in absDiffMat() 153 GpuMat src1_ = src1.reshape(1); in absDiffMat() 154 GpuMat src2_ = src2.reshape(1); in absDiffMat() 155 GpuMat dst_ = dst.reshape(1); in absDiffMat()
|
D | norm.cu | 61 void normDiffInf(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream) in normDiffInf() 70 void normDiffL1(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream) in normDiffL1() 79 void normDiffL2(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream) in normDiffL2() 95 typedef void (*func_t)(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream); in calcNormDiff() 101 GpuMat src1 = getInputMat(_src1, stream); in calcNormDiff() 102 GpuMat src2 = getInputMat(_src2, stream); in calcNormDiff() 108 GpuMat dst = getOutputMat(_dst, 1, 1, normType == NORM_L2 ? CV_64FC1 : CV_32SC1, stream); in calcNormDiff() 140 void normL2Impl(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream) in normL2Impl() 163 typedef void (*func_t)(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream); in normL2() 175 const GpuMat src = getInputMat(_src, stream); in normL2() [all …]
|
D | add_mat.cu | 55 void addMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… 68 …void addMat_v1(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, Stream& st… in addMat_v1() 84 void addMat_v2(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in addMat_v2() 103 void addMat_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in addMat_v4() 115 void addMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… in addMat() 117 …typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, St… in addMat() 190 GpuMat src1_ = src1.reshape(1); in addMat() 191 GpuMat src2_ = src2.reshape(1); in addMat() 192 GpuMat dst_ = dst.reshape(1); in addMat()
|
D | sub_mat.cu | 55 void subMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… 68 …void subMat_v1(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, Stream& st… in subMat_v1() 84 void subMat_v2(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in subMat_v2() 103 void subMat_v4(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in subMat_v4() 115 void subMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… in subMat() 117 …typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, St… in subMat() 190 GpuMat src1_ = src1.reshape(1); in subMat() 191 GpuMat src2_ = src2.reshape(1); in subMat() 192 GpuMat dst_ = dst.reshape(1); in subMat()
|
D | split_merge.cu | 68 static void call(const GpuMat* src, GpuMat& dst, Stream& stream) in call() 78 static void call(const GpuMat* src, GpuMat& dst, Stream& stream) in call() 88 static void call(const GpuMat* src, GpuMat& dst, Stream& stream) in call() 96 void mergeImpl(const GpuMat* src, size_t n, cv::OutputArray _dst, Stream& stream) in mergeImpl() 117 typedef void (*func_t)(const GpuMat* src, GpuMat& dst, Stream& stream); in mergeImpl() 127 GpuMat dst = getOutputMat(_dst, size, CV_MAKE_TYPE(depth, channels), stream); in mergeImpl() 141 void cv::cuda::merge(const GpuMat* src, size_t n, OutputArray dst, Stream& stream) in merge() 147 void cv::cuda::merge(const std::vector<GpuMat>& src, OutputArray dst, Stream& stream) in merge() 161 static void call(const GpuMat& src, GpuMat* dst, Stream& stream) in call() 174 static void call(const GpuMat& src, GpuMat* dst, Stream& stream) in call() [all …]
|
D | minmax.cu | 62 void minMaxImpl(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream) in minMaxImpl() 74 void minMaxImpl(const GpuMat& src, const GpuMat& mask, double* minVal, double* maxVal) in minMaxImpl() 77 GpuMat buf(pool.getBuffer(1, 2, DataType<R>::type)); in minMaxImpl() 89 typedef void (*func_t)(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream); in findMinMax() 101 const GpuMat src = getInputMat(_src, stream); in findMinMax() 102 const GpuMat mask = getInputMat(_mask, stream); in findMinMax() 110 GpuMat dst = getOutputMat(_dst, 1, 2, dst_depth, stream); in findMinMax() 146 void findMaxAbsImpl(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream) in findMaxAbsImpl() 160 typedef void (*func_t)(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream); in findMaxAbs() 172 const GpuMat src = getInputMat(_src, stream); in findMaxAbs() [all …]
|
D | bitwise_mat.cu | 59 void bitMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… 66 GpuMat src = getInputMat(_src, stream); in bitwise_not() 67 GpuMat mask = getInputMat(_mask, stream); in bitwise_not() 74 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in bitwise_not() 140 …void bitMatOp(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, Stream& str… in bitMatOp() 153 void bitMat(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, double, Stream… in bitMat() 155 …typedef void (*func_t)(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, St… in bitMat() 188 GpuMat vsrc1(src1.rows, vcols, CV_32SC1, src1.data, src1.step); in bitMat() 189 GpuMat vsrc2(src1.rows, vcols, CV_32SC1, src2.data, src2.step); in bitMat() 190 GpuMat vdst(src1.rows, vcols, CV_32SC1, dst.data, dst.step); in bitMat() [all …]
|
/external/opencv3/modules/superres/src/ |
D | btv_l1_cuda.cpp | 81 …veMotions(const std::vector<std::pair<GpuMat, GpuMat> >& forwardMotions, const std::vector<std::pa… in calcRelativeMotions() argument 82 …std::vector<std::pair<GpuMat, GpuMat> >& relForwardMotions, std::vector<std::pair<GpuMat, GpuMat> … in calcRelativeMotions() 118 …scaleMotions(const std::vector<std::pair<GpuMat, GpuMat> >& lowResMotions, std::vector<std::pair<G… in upscaleMotions() argument 132 …void buildMotionMaps(const std::pair<GpuMat, GpuMat>& forwardMotion, const std::pair<GpuMat, GpuMa… in buildMotionMaps() argument 133 … std::pair<GpuMat, GpuMat>& forwardMap, std::pair<GpuMat, GpuMat>& backwardMap) in buildMotionMaps() 147 void upscale(const GpuMat& src, GpuMat& dst, int scale, Stream& stream) in upscale() 165 void diffSign(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream) in diffSign() 190 void calcBtvRegularization(const GpuMat& src, GpuMat& dst, int btvKernelSize) in calcBtvRegularization() 215 void process(const std::vector<GpuMat>& src, GpuMat& dst, 216 …const std::vector<std::pair<GpuMat, GpuMat> >& forwardMotions, const std::vector<std::pair<GpuMat,… [all …]
|
D | optical_flow.cpp | 423 … virtual void impl(const GpuMat& input0, const GpuMat& input1, GpuMat& dst1, GpuMat& dst2) = 0; 427 GpuMat buf_[6]; 428 GpuMat u_, v_, flow_; 437 GpuMat frame0 = arrGetGpuMat(_frame0, buf_[0]); in calc() 438 GpuMat frame1 = arrGetGpuMat(_frame1, buf_[1]); in calc() 443 GpuMat input0 = convertToType(frame0, work_type_, buf_[2], buf_[3]); in calc() 444 GpuMat input1 = convertToType(frame1, work_type_, buf_[4], buf_[5]); in calc() 461 GpuMat src[] = {u_, v_}; in calc() 497 void impl(const GpuMat& input0, const GpuMat& input1, GpuMat& dst1, GpuMat& dst2); 527 void Brox_CUDA::impl(const GpuMat& input0, const GpuMat& input1, GpuMat& dst1, GpuMat& dst2) in impl() [all …]
|
/external/opencv3/modules/cudaoptflow/src/ |
D | tvl1flow.cpp | 131 … void calcImpl(const GpuMat& I0, const GpuMat& I1, GpuMat& flowx, GpuMat& flowy, Stream& stream); 132 …void procOneScale(const GpuMat& I0, const GpuMat& I1, GpuMat& u1, GpuMat& u2, GpuMat& u3, Stream& … 134 std::vector<GpuMat> I0s; 135 std::vector<GpuMat> I1s; 136 std::vector<GpuMat> u1s; 137 std::vector<GpuMat> u2s; 138 std::vector<GpuMat> u3s; 140 GpuMat I1x_buf; 141 GpuMat I1y_buf; 143 GpuMat I1w_buf; [all …]
|
D | farneback.cpp | 150 const GpuMat& R0, const GpuMat& R1, GpuMat& flowx, GpuMat &flowy, 151 GpuMat& M, GpuMat &bufM, int blockSize, bool updateMatrices, Stream streams[]); 154 const GpuMat& R0, const GpuMat& R1, GpuMat& flowx, GpuMat& flowy, 155 GpuMat& M, GpuMat &bufM, int blockSize, bool updateMatrices, Stream streams[]); 157 …void calcImpl(const GpuMat &frame0, const GpuMat &frame1, GpuMat &flowx, GpuMat &flowy, Stream &st… 159 GpuMat frames_[2]; 160 GpuMat pyrLevel_[2], M_, bufM_, R_[2], blurredFrame_[2]; 161 std::vector<GpuMat> pyramid0_, pyramid1_; 166 const GpuMat frame0 = _frame0.getGpuMat(); in calc() 167 const GpuMat frame1 = _frame1.getGpuMat(); in calc() [all …]
|
D | pyrlk.cpp | 76 … void sparse(const GpuMat& prevImg, const GpuMat& nextImg, const GpuMat& prevPts, GpuMat& nextPts, 77 GpuMat& status, GpuMat* err, Stream& stream); 79 … void dense(const GpuMat& prevImg, const GpuMat& nextImg, GpuMat& u, GpuMat& v, Stream& stream); 88 std::vector<GpuMat> prevPyr_; 89 std::vector<GpuMat> nextPyr_; 116 …alFlowBase::sparse(const GpuMat& prevImg, const GpuMat& nextImg, const GpuMat& prevPts, GpuMat& ne… in sparse() 141 GpuMat temp1 = (useInitialFlow_ ? nextPts : prevPts).reshape(1); in sparse() 142 GpuMat temp2 = nextPts.reshape(1); in sparse() 167 GpuMat buf = pool.getBuffer(prevImg.size(), CV_MAKE_TYPE(prevImg.depth(), 4)); in sparse() 207 …void PyrLKOpticalFlowBase::dense(const GpuMat& prevImg, const GpuMat& nextImg, GpuMat& u, GpuMat& … in dense() [all …]
|
/external/opencv3/modules/cudalegacy/src/ |
D | graphcuts.cpp | 47 void cv::cuda::graphcut(GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, Stream&) { t… in graphcut() argument 48 void cv::cuda::graphcut(GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, Gpu… in graphcut() argument 50 void cv::cuda::connectivityMask(const GpuMat&, GpuMat&, const cv::Scalar&, const cv::Scalar&, Strea… in connectivityMask() argument 51 void cv::cuda::labelComponents(const GpuMat&, GpuMat&, int, Stream&) { throw_no_cuda(); } in labelComponents() argument 71 void cv::cuda::connectivityMask(const GpuMat& image, GpuMat& mask, const cv::Scalar& lo, const cv::… in connectivityMask() 105 void cv::cuda::labelComponents(const GpuMat& mask, GpuMat& components, int flags, Stream& s) in labelComponents() 145 …d cv::cuda::graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTransp, GpuMat& top, GpuM… in graphcut() 204 void cv::cuda::graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTransp, GpuMat& top, Gp… in graphcut() 205 … GpuMat& bottom, GpuMat& bottomLeft, GpuMat& bottomRight, GpuMat& labels, GpuMat& buf, Stream& s) in graphcut()
|
D | interpolate_frames.cpp | 50 …nterpolateFrames(const GpuMat&, const GpuMat&, const GpuMat&, const GpuMat&, const GpuMat&, const … in interpolateFrames() argument 54 …interpolateFrames(const GpuMat& frame0, const GpuMat& frame1, const GpuMat& fu, const GpuMat& fv, … in interpolateFrames() 55 float pos, GpuMat& newFrame, GpuMat& buf, Stream& s) in interpolateFrames() 70 GpuMat occ0 = buf.rowRange(0 * frame0.rows, 1 * frame0.rows); in interpolateFrames() 71 GpuMat occ1 = buf.rowRange(1 * frame0.rows, 2 * frame0.rows); in interpolateFrames() 74 GpuMat fui = buf.rowRange(2 * frame0.rows, 3 * frame0.rows); in interpolateFrames() 75 GpuMat fvi = buf.rowRange(3 * frame0.rows, 4 * frame0.rows); in interpolateFrames() 78 GpuMat bui = buf.rowRange(4 * frame0.rows, 5 * frame0.rows); in interpolateFrames() 79 GpuMat bvi = buf.rowRange(5 * frame0.rows, 6 * frame0.rows); in interpolateFrames()
|
/external/opencv3/modules/cudaoptflow/perf/ |
D | perf_optflow.cpp | 72 const cv::cuda::GpuMat d_frame0(frame0); 73 const cv::cuda::GpuMat d_frame1(frame1); 74 cv::cuda::GpuMat flow; 82 cv::cuda::GpuMat flows[2]; 85 cv::cuda::GpuMat u = flows[0]; 86 cv::cuda::GpuMat v = flows[1]; 136 const cv::cuda::GpuMat d_pts(pts.reshape(2, 1)); 143 const cv::cuda::GpuMat d_frame0(frame0); 144 const cv::cuda::GpuMat d_frame1(frame1); 145 cv::cuda::GpuMat nextPts; [all …]
|
/external/opencv3/modules/core/src/cuda/ |
D | gpu_mat.cu | 60 class DefaultAllocator : public GpuMat::Allocator 63 bool allocate(GpuMat* mat, int rows, int cols, size_t elemSize); 64 void free(GpuMat* mat); 67 bool DefaultAllocator::allocate(GpuMat* mat, int rows, int cols, size_t elemSize) in allocate() 85 void DefaultAllocator::free(GpuMat* mat) in free() 92 GpuMat::Allocator* g_defaultAllocator = &cudaDefaultAllocator; 95 GpuMat::Allocator* cv::cuda::GpuMat::defaultAllocator() in defaultAllocator() 100 void cv::cuda::GpuMat::setDefaultAllocator(Allocator* allocator) in setDefaultAllocator() 109 void cv::cuda::GpuMat::create(int _rows, int _cols, int _type) in create() 156 void cv::cuda::GpuMat::release() in release() [all …]
|