Searched refs:minstep (Results 1 – 4 of 4) sorted by relevance
55 size_t minstep = cols * elemSize(); in GpuMat() local59 step = minstep; in GpuMat()65 step = minstep; in GpuMat()67 CV_DbgAssert( step >= minstep ); in GpuMat()69 flags |= step == minstep ? Mat::CONTINUOUS_FLAG : 0; in GpuMat()72 dataend += step * (rows - 1) + minstep; in GpuMat()81 size_t minstep = cols * elemSize(); in GpuMat() local85 step = minstep; in GpuMat()91 step = minstep; in GpuMat()93 CV_DbgAssert( step >= minstep ); in GpuMat()[all …]
441 size_t esz = elemSize(), minstep; in locateROI() local452 minstep = (ofs.x + cols)*esz; in locateROI()453 wholeSize.height = (int)((delta2 - minstep)/step[0] + 1); in locateROI()
594 size_t esz = CV_ELEM_SIZE(m->type), minstep = thiz.cols*esz, _step = m->step; in cvMatToMat() local596 _step = minstep; in cvMatToMat()598 thiz.dataend = thiz.datalimit - _step + minstep; in cvMatToMat()887 size_t esz = elemSize(), minstep; in locateROI() local898 minstep = (ofs.x + cols)*esz; in locateROI()899 wholeSize.height = (int)((delta2 - minstep)/step[0] + 1); in locateROI()
400 size_t minstep = cols * esz; in Mat() local403 _step = minstep; in Mat()408 if( rows == 1 ) _step = minstep; in Mat()409 CV_DbgAssert( _step >= minstep ); in Mat()416 flags |= _step == minstep ? CONTINUOUS_FLAG : 0; in Mat()421 dataend = datalimit - _step + minstep; in Mat()431 size_t minstep = cols*esz; in Mat() local434 _step = minstep; in Mat()439 if( rows == 1 ) _step = minstep; in Mat()440 CV_DbgAssert( _step >= minstep ); in Mat()[all …]