Searched refs:colRange_ (Results 1 – 2 of 2) sorted by relevance
101 cv::cuda::GpuMat::GpuMat(const GpuMat& m, Range rowRange_, Range colRange_) in GpuMat() argument120 if (colRange_ == Range::all()) in GpuMat()126 … CV_Assert( 0 <= colRange_.start && colRange_.start <= colRange_.end && colRange_.end <= m.cols ); in GpuMat()128 cols = colRange_.size(); in GpuMat()129 data += colRange_.start*elemSize(); in GpuMat()
281 GpuMat GpuMat::operator ()(Range rowRange_, Range colRange_) const in operator ()()283 return GpuMat(*this, rowRange_, colRange_); in operator ()()