OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:_OutputArray
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
gpumat.hpp
348
__host__
_OutputArray
::
_OutputArray
(cudev::GpuMat_<_Tp>& m)
353
__host__
_OutputArray
::
_OutputArray
(const cudev::GpuMat_<_Tp>& m)
/external/opencv3/modules/core/include/opencv2/core/
mat.hpp
65
class CV_EXPORTS
_OutputArray
;
216
void copyTo(const
_OutputArray
& arr) const;
217
void copyTo(const
_OutputArray
& arr, const _InputArray & mask) const;
247
_OutputArray
::create() needs to be called before
_OutputArray
::getMat(). This way you guarantee
252
implementation level, use
_OutputArray
::needed() to check if certain output array needs to be
263
class CV_EXPORTS
_OutputArray
: public _InputArray
280
_OutputArray
();
281
_OutputArray
(int _flags, void* _obj);
282
_OutputArray
(Mat& m)
[
all
...]
mat.inl.hpp
136
inline
_OutputArray
::
_OutputArray
() { init(ACCESS_WRITE, 0); }
137
inline
_OutputArray
::
_OutputArray
(int _flags, void* _obj) { init(_flags|ACCESS_WRITE, _obj); }
138
inline
_OutputArray
::
_OutputArray
(Mat& m) { init(MAT+ACCESS_WRITE, &m); }
139
inline
_OutputArray
::
_OutputArray
(std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_WRITE, &vec); }
140
inline
_OutputArray
::
_OutputArray
(UMat& m) { init(UMAT+ACCESS_WRITE, &m);
[
all
...]
Completed in 589 milliseconds