Searched defs:cols_ (Results 1 - 13 of 13) sorted by relevance

/external/opencv3/modules/core/src/
H A Dcuda_gpu_mat.cpp49 cv::cuda::GpuMat::GpuMat(int rows_, int cols_, int type_, void* data_, size_t step_) : argument
50 flags(Mat::MAGIC_VAL + (type_ & Mat::TYPE_MASK)), rows(rows_), cols(cols_),
H A Dcuda_host_mem.cpp179 void cv::cuda::HostMem::create(int rows_, int cols_, int type_) argument
183 (void) cols_;
195 if (rows == rows_ && cols == cols_ && type() == type_ && data)
201 CV_DbgAssert( rows_ >= 0 && cols_ >= 0 );
203 if (rows_ > 0 && cols_ > 0)
207 cols = cols_;
/external/opencv3/modules/flann/include/opencv2/flann/
H A Dmatrix.h60 Matrix(T* data_, size_t rows_, size_t cols_, size_t stride_ = 0) : argument
61 rows(rows_), cols(cols_), stride(stride_), data(data_)
95 UntypedMatrix(void* data_, long rows_, long cols_) : argument
96 rows(rows_), cols(cols_), data(data_)
/external/webrtc/webrtc/system_wrappers/include/
H A Daligned_array.h25 cols_(cols) {
30 head_row_[i] = static_cast<T*>(AlignedMalloc(cols_ * sizeof(**head_row_),
61 RTC_CHECK_LE(col, cols_);
66 RTC_CHECK_LE(col, cols_);
75 return cols_;
80 size_t cols_; member in class:webrtc::AlignedArray
/external/ceres-solver/internal/ceres/
H A Dcompressed_row_sparse_matrix.h106 const int* cols() const { return &cols_[0]; }
107 int* mutable_cols() { return &cols_[0]; }
164 vector<int> cols_; member in class:ceres::internal::CompressedRowSparseMatrix
H A Dtriplet_sparse_matrix.h72 // of rows_, cols_ and values_. If new_max_num_nonzeros is smaller
92 const int* cols() const { return cols_.get(); }
94 int* mutable_cols() { return cols_.get(); }
118 // stored at the location (rows_[i], cols_[i]). If the there are
119 // multiple entries with the same (rows_[i], cols_[i]), the values_
122 scoped_array<int> cols_; member in class:ceres::internal::TripletSparseMatrix
/external/gemmlowp/public/
H A Dmap.h40 int rows_, cols_, stride_; member in class:gemmlowp::MatrixMap
43 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {}
45 : data_(data), rows_(rows), cols_(cols), stride_(stride) {}
49 cols_(other.cols_),
53 int cols() const { return cols_; }
68 assert(start_col + block_cols <= cols_);
/external/opencv3/modules/core/include/opencv2/core/
H A Dcuda_types.hpp112 __CV_CUDA_HOST_DEVICE__ PtrStepSz(int rows_, int cols_, T* data_, size_t step_) argument
113 : PtrStep<T>(data_, step_), cols(cols_), rows(rows_) {}
H A Dopengl.hpp276 int cols_; member in class:cv::ogl::Buffer
397 int cols_; member in class:cv::ogl::Texture2D
542 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, Target target, bool autoRelease) : rows_(0), cols_(0), type_(0)
548 cv::ogl::Buffer::Buffer(Size asize, int atype, Target target, bool autoRelease) : rows_(0), cols_(0), type_(0)
568 return cols_;
574 return Size(cols_, rows_);
580 return rows_ == 0 || cols_ == 0;
616 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, bool autoRelease) : rows_(0), cols_(0), format_(NONE)
622 cv::ogl::Texture2D::Texture2D(Size asize, Format aformat, bool autoRelease) : rows_(0), cols_(0), format_(NONE)
642 return cols_;
[all...]
H A Dcuda.inl.hpp63 GpuMat::GpuMat(int rows_, int cols_, int type_, Allocator* allocator_) argument
66 if (rows_ > 0 && cols_ > 0)
67 create(rows_, cols_, type_);
79 GpuMat::GpuMat(int rows_, int cols_, int type_, Scalar s_, Allocator* allocator_) argument
82 if (rows_ > 0 && cols_ > 0)
84 create(rows_, cols_, type_);
399 HostMem::HostMem(int rows_, int cols_, int type_, AllocType alloc_type_) argument
402 if (rows_ > 0 && cols_ > 0)
403 create(rows_, cols_, type_);
/external/opencv3/modules/videostab/include/opencv2/videostab/
H A Dglobal_motion.hpp163 std::vector<int> rows_, cols_; member in class:cv::videostab::MotionEstimatorL1
168 cols_.push_back(col);
H A Dmotion_stabilizing.hpp154 std::vector<int> rows_, cols_; member in class:cv::videostab::LpMotionStabilizer
160 cols_.push_back(col);
/external/opencv3/modules/photo/src/
H A Dfast_nlmeans_multi_denoising_invoker.hpp68 int cols_; member in struct:FastNlMeansMultiDenoisingInvoker
112 cols_ = srcImgs[0].cols;
171 Array4d<int> up_col_dist_sums(cols_, temporal_window_size_, search_window_size_, search_window_size_);
175 for (int j = 0; j < cols_; j++)

Completed in 461 milliseconds