Home
last modified time | relevance | path

Searched refs:_flow (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/test/channel_transport/
Dudp_socket2_win.cc58 _flow(NULL), in UdpSocket2Windows()
199 if (_flow) in ~UdpSocket2Windows()
201 free(_flow); in ~UdpSocket2Windows()
202 _flow = NULL; in ~UdpSocket2Windows()
1031 if (!_flow) in SetTrafficControl()
1036 _flow = (PTC_GEN_FLOW)malloc(allocSize); in SetTrafficControl()
1038 _flow->SendingFlowspec.DelayVariation = QOS_NOT_SPECIFIED; in SetTrafficControl()
1039 _flow->SendingFlowspec.Latency = QOS_NOT_SPECIFIED; in SetTrafficControl()
1040 _flow->SendingFlowspec.MaxSduSize = QOS_NOT_SPECIFIED; in SetTrafficControl()
1041 _flow->SendingFlowspec.MinimumPolicedSize = QOS_NOT_SPECIFIED; in SetTrafficControl()
[all …]
Dudp_socket2_win.h167 PTC_GEN_FLOW _flow; variable
/external/opencv3/modules/video/src/
Doptflowgf.cpp217 FarnebackUpdateMatrices( const Mat& _R0, const Mat& _R1, const Mat& _flow, Mat& matM, int _y0, int … in FarnebackUpdateMatrices() argument
222 int x, y, width = _flow.cols, height = _flow.rows; in FarnebackUpdateMatrices()
230 const float* flow = _flow.ptr<float>(y); in FarnebackUpdateMatrices()
315 Mat& _flow, Mat& matM, int block_size, in FarnebackUpdateFlow_Blur() argument
318 int x, y, width = _flow.cols, height = _flow.rows; in FarnebackUpdateFlow_Blur()
343 float* flow = _flow.ptr<float>(y); in FarnebackUpdateFlow_Blur()
399 FarnebackUpdateMatrices( _R0, _R1, _flow, matM, y0, y1 ); in FarnebackUpdateFlow_Blur()
408 Mat& _flow, Mat& matM, int block_size, in FarnebackUpdateFlow_GaussianBlur() argument
411 int x, y, i, width = _flow.cols, height = _flow.rows; in FarnebackUpdateFlow_GaussianBlur()
450 float* flow = _flow.ptr<float>(y); in FarnebackUpdateFlow_GaussianBlur()
[all …]
Dtvl1flow.cpp373 void OpticalFlowDual_TVL1::calc(InputArray _I0, InputArray _I1, InputOutputArray _flow) in calc() argument
375 CV_OCL_RUN(_flow.isUMat() && in calc()
377 calc_ocl(_I0, _I1, _flow)) in calc()
385 CV_Assert( !useInitialFlow || (_flow.size() == I0.size() && _flow.type() == CV_32FC2) ); in calc()
405 split(_flow.getMat(), mv); in calc()
499 merge(uxy, 2, _flow); in calc()
502 bool OpticalFlowDual_TVL1::calc_ocl(InputArray _I0, InputArray _I1, InputOutputArray _flow) in calc_ocl() argument
510 CV_Assert(!useInitialFlow || (_flow.size() == I0.size() && _flow.type() == CV_32FC2)); in calc_ocl()
532 cv::split(_flow,umv); in calc_ocl()
598 merge(uxy, _flow); in calc_ocl()
Dcompat_video.cpp292 CvArr* _flow, double pyr_scale, int levels, in cvCalcOpticalFlowFarneback() argument
297 cv::Mat flow = cv::cvarrToMat(_flow); in cvCalcOpticalFlowFarneback()
/external/opencv3/modules/cudaoptflow/src/
Dbrox.cpp127 …void BroxOpticalFlowImpl::calc(InputArray _I0, InputArray _I1, InputOutputArray _flow, Stream& str… in calc() argument
185 cuda::merge(flows, 2, _flow, stream); in calc()
Dpyrlk.cpp323 …virtual void calc(InputArray _prevImg, InputArray _nextImg, InputOutputArray _flow, Stream& stream) in calc() argument
335 cuda::merge(flows, 2, _flow, stream); in calc()
Dtvl1flow.cpp161 …ual_TVL1_Impl::calc(InputArray _frame0, InputArray _frame1, InputOutputArray _flow, Stream& stream) in calc() argument
173 cuda::merge(flows, 2, _flow, stream); in calc()
Dfarneback.cpp164 …ticalFlowImpl::calc(InputArray _frame0, InputArray _frame1, InputOutputArray _flow, Stream& stream) in calc() argument
176 cuda::merge(flows, 2, _flow, stream); in calc()
/external/opencv3/modules/imgproc/src/
Demd.cpp1143 float* lowerBound, OutputArray _flow ) in EMD() argument
1151 if( _flow.needed() ) in EMD()
1153 _flow.create(signature1.rows, signature2.rows, CV_32F); in EMD()
1154 flow = _flow.getMat(); in EMD()
1160 _flow.needed() ? &_cflow : 0, lowerBound, 0 ); in EMD()