Searched refs:arows (Results 1 - 6 of 6) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
H A Dopengl.hpp106 @param arows Number of rows in a 2D array.
112 Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease = false);
123 @param arows Number of rows in a 2D array.
129 Buffer(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
148 @param arows Number of rows in a 2D array.
154 void create(int arows, int acols, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
303 Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoRelease = false);
309 @param arows Number of rows.
314 Texture2D(int arows, int acols, Format aformat, bool autoRelease = false);
331 @param arows Numbe
542 Buffer(int arows, int acols, int atype, Target target, bool autoRelease) argument
616 Texture2D(int arows, int acols, Format aformat, bool autoRelease) argument
[all...]
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
H A Dgpumat.hpp69 __host__ GpuMat_(int arows, int acols, Allocator* allocator = defaultAllocator());
73 __host__ GpuMat_(int arows, int acols, Scalar val, Allocator* allocator = defaultAllocator());
83 __host__ GpuMat_(int arows, int acols, T* adata, size_t astep = Mat::AUTO_STEP);
97 __host__ void create(int arows, int acols);
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
H A Dgpumat.hpp61 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, Allocator* allocator) argument
62 : GpuMat(arows, acols, DataType<T>::type, allocator)
73 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, Scalar val, Allocator* allocator) argument
74 : GpuMat(arows, acols, DataType<T>::type, val, allocator)
113 __host__ GpuMat_<T>::GpuMat_(int arows, int acols, T* adata, size_t astep) argument
114 : GpuMat(arows, acols, DataType<T>::type, adata, astep)
152 __host__ void GpuMat_<T>::create(int arows, int acols) argument
154 GpuMat::create(arows, acols, DataType<T>::type);
/external/opencv3/modules/core/src/
H A Dopengl.cpp466 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease) : rows_(0), cols_(0), type_(0) argument
469 (void) arows;
477 rows_ = arows;
531 void cv::ogl::Buffer::create(int arows, int acols, int atype, Target target, bool autoRelease) argument
534 (void) arows;
541 if (rows_ != arows || cols_ != acols || type_ != atype)
543 const GLsizeiptr asize = arows * acols * CV_ELEM_SIZE(atype);
545 rows_ = arows;
950 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, unsigned int atexId, bool autoRelease) : rows_(0), cols_(0), format_(NONE) argument
953 (void) arows;
1053 create(int arows, int acols, Format aformat, bool autoRelease) argument
[all...]
/external/opencv/cv/src/
H A Dcvhough.cpp869 int rows, cols, arows, acols; local
896 arows = accum->rows - 2;
943 (unsigned)y2 >= (unsigned)arows )
962 for( y = 1; y < arows - 1; y++ )
/external/opencv3/modules/imgproc/src/
H A Dhough.cpp1016 int rows, cols, arows, acols; local
1049 arows = accum->rows - 2;
1089 (unsigned)y2 >= (unsigned)arows )
1106 for( y = 1; y < arows - 1; y++ )

Completed in 280 milliseconds