Home
last modified time | relevance | path

Searched refs:_frame (Results 1 – 21 of 21) sorted by relevance

/external/opencv3/modules/superres/src/
Dframe_source.cpp115 void CaptureFrameSource::nextFrame(OutputArray _frame) in nextFrame() argument
117 if (_frame.kind() == _InputArray::MAT) in nextFrame()
118 vc_ >> _frame.getMatRef(); in nextFrame()
119 else if(_frame.kind() == _InputArray::CUDA_GPU_MAT) in nextFrame()
122 arrCopy(frame_, _frame); in nextFrame()
124 else if (_frame.isUMat()) in nextFrame()
125 vc_ >> *(UMat *)_frame.getObj(); in nextFrame()
227 void VideoFrameSource_CUDA::nextFrame(OutputArray _frame) in nextFrame() argument
229 if (_frame.kind() == _InputArray::CUDA_GPU_MAT) in nextFrame()
231 bool res = reader_->nextFrame(_frame.getGpuMatRef()); in nextFrame()
[all …]
/external/libunwind/doc/
Dunw_is_signal_frame.tex8 …in{Name}{3}{unw\_is\_signal\_frame}{David Mosberger-Tang}{Programming Library}{unw\_is\_signal\_fr…
15 \Type{int} \Func{unw\_is\_signal\_frame}(\Type{unw\_cursor\_t~*}\Var{cp});\\
19 The \Func{unw\_is\_signal\_frame}() routine returns a positive value
34 On successful completion, \Func{unw\_is\_signal\_frame}() returns a
41 \Func{unw\_is\_signal\_frame}() is thread-safe as well as safe to use
Dunw_get_reg.tex30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access
66 \SeeAlso{unw\_is\_signal\_frame(3)},
Dunw_get_fpreg.tex30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access
66 \SeeAlso{unw\_is\_signal\_frame(3)},
Dunw_set_fpreg.tex30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access
68 \SeeAlso{unw\_is\_signal\_frame(3)},
Dunw_set_reg.tex30 \Func{unw\_is\_signal\_frame}(3)), it is usually possible to access
68 \SeeAlso{unw\_is\_signal\_frame(3)},
Dlibunwind.tex55 \Type{int} \Func{unw\_is\_signal\_frame}(\Type{unw\_cursor\_t~*});\\
336 \SeeAlso{unw\_is\_signal\_frame(3)},
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
Dscreen_finder.py112 self._frame = None
129 self._height, self._width = self._frame.shape[:2]
135 self._frame = None
142 self._frame = frame
152 return self._frame is not None
167 if self._frame is None:
215 self._frame, transform, (int(w + 0.5), int(h + 0.5)))
829 cv2.imshow('original', self._frame)
/external/opencv3/samples/tapi/
Dpyrlk_optical_flow.cpp33 static void drawArrows(UMat& _frame, const vector<Point2f>& prevPts, const vector<Point2f>& nextPts… in drawArrows() argument
36 Mat frame = _frame.getMat(ACCESS_WRITE); in drawArrows()
/external/opencv3/modules/cudabgsegm/src/
Dmog.cpp134 void MOGImpl::apply(InputArray _frame, OutputArray _fgmask, double learningRate, Stream& stream) in apply() argument
138 GpuMat frame = _frame.getGpuMat(); in apply()
Dmog2.cpp179 … void MOG2Impl::apply(InputArray _frame, OutputArray _fgmask, double learningRate, Stream& stream) in apply() argument
183 GpuMat frame = _frame.getGpuMat(); in apply()
/external/opencv3/modules/cudalegacy/src/
Dgmg.cpp168 …void GMGImpl::apply(InputArray _frame, OutputArray _fgmask, double newLearningRate, Stream& stream) in apply() argument
184 GpuMat frame = _frame.getGpuMat(); in apply()
Dfgd.cpp630 void FGDImpl::apply(InputArray _frame, OutputArray fgmask, double) in apply() argument
632 GpuMat curFrame = _frame.getGpuMat(); in apply()
/external/clang/test/SemaObjC/
Dproperty-error-readonly-assign.m30 NSRect _frame; field
/external/autotest/client/cros/
Dxmlrpc_server.py90 def _handle_signal(self, _signum, _frame): argument
/external/opencv3/modules/video/src/opencl/
Dbgfg_mog2.cl58 __global const uchar* _frame = (frame + mad24(y, frame_step, mad24(x, CN, frame_offset)));
60 frameToMean(_frame, pix);
/external/autotest/client/cros/networking/
Dandroid_xmlrpc_server.py123 def _handle_signal(self, _signum, _frame): argument
/external/opencv3/modules/cudacodec/src/
Dvideo_writer.cpp610 void VideoWriterImpl::write(InputArray _frame, bool lastFrame) in write() argument
612 GpuMat frame = _frame.getGpuMat(); in write()
/external/autotest/site_utils/
Dgs_offloader.py117 def timeout_handler(_signum, _frame): argument
/external/opencv3/modules/core/src/
Ddatastructs.cpp3381 cvInsertNodeIntoTree( void* _node, void* _parent, void* _frame ) in cvInsertNodeIntoTree() argument
3389 node->v_prev = _parent != _frame ? parent : 0; in cvInsertNodeIntoTree()
3402 cvRemoveNodeFromTree( void* _node, void* _frame ) in cvRemoveNodeFromTree() argument
3405 CvTreeNode* frame = (CvTreeNode*)_frame; in cvRemoveNodeFromTree()
/external/opencv/cxcore/src/
Dcxdatastructs.cpp3825 cvInsertNodeIntoTree( void* _node, void* _parent, void* _frame ) in cvInsertNodeIntoTree() argument
3837 node->v_prev = _parent != _frame ? parent : 0; in cvInsertNodeIntoTree()
3852 cvRemoveNodeFromTree( void* _node, void* _frame ) in cvRemoveNodeFromTree() argument
3859 CvTreeNode* frame = (CvTreeNode*)_frame; in cvRemoveNodeFromTree()