Home | History | Annotate | Download | only in src

Lines Matching refs:Range

234     void operator()( const BlockedRange& range ) const
236 T* p0 = p_[0] + range.begin() * (step_[0] + imageWidth_*d_[0]);
237 uchar* mask = mask_ + range.begin()*mstep_;
239 for( int row = range.begin(); row < range.end(); row++, p0 += step_[0] )
309 void operator()(const BlockedRange& range) const
311 T* p0 = p_[0] + range.begin()*(step_[0] + imageWidth_*d_[0]);
312 T* p1 = p_[1] + range.begin()*(step_[1] + imageWidth_*d_[1]);
313 uchar* mask = mask_ + range.begin()*mstep_;
315 for( int row = range.begin(); row < range.end(); row++, p0 += step_[0], p1 += step_[1] )
384 void operator()( const BlockedRange& range ) const
386 T* p0 = p_[0] + range.begin()*(imageWidth_*d_[0] + step_[0]);
387 T* p1 = p_[1] + range.begin()*(imageWidth_*d_[1] + step_[1]);
388 T* p2 = p_[2] + range.begin()*(imageWidth_*d_[2] + step_[2]);
389 uchar* mask = mask_ + range.begin()*mstep_;
391 for( int i = range.begin(); i < range.end(); i++, p0 += step_[0], p1 += step_[1], p2 += step_[2] )
472 void operator()( const BlockedRange& range ) const
486 p0 += (xN*d_[0] + tail*d_[0] + step_[0]) * range.begin();
490 p0 += (imageWidth_*d_[0] + step_[0]) * range.begin();
491 mask += mstep_*range.begin();
494 for( int i = range.begin(); i < range.end(); i++, p0 += step_[0] )
592 void operator()( const BlockedRange& range ) const
594 uchar* p0 = p_[0] + range.begin()*(step_[0] + imageWidth_*d_[0]);
595 uchar* p1 = p_[1] + range.begin()*(step_[1] + imageWidth_*d_[1]);
596 uchar* mask = mask_ + range.begin()*mstep_;
602 for(int i = range.begin(); i < range.end(); i++, p0 += step_[0], p1 += step_[1])
675 void operator()( const BlockedRange& range ) const
677 uchar* p0 = p_[0] + range.begin()*(step_[0] + imageWidth_*d_[0]);
678 uchar* p1 = p_[1] + range.begin()*(step_[1] + imageWidth_*d_[1]);
679 uchar* p2 = p_[2] + range.begin()*(step_[2] + imageWidth_*d_[2]);
680 uchar* mask = mask_ + range.begin()*mstep_;
682 for(int i = range.begin(); i < range.end(); i++, p0 += step_[0], p1 += step_[1], p2 += step_[2] )
1190 virtual void operator() (const Range & range) const
1195 src->ptr(range.start), (int)src->step, ippiSize(src->cols, range.end - range.start),
1253 Range range(0, src.rows);
1254 parallel_for_(range, invoker, nstripes);
2599 CV_Error( CV_BadOrder, "Number of dimensions is out of range" );
3110 // Sets a value range for every histogram bin
3452 void operator()( const cv::Range& rowRange ) const
3510 void operator()( const cv::Range& rowRange ) const
3644 cv::Range heightRange(0, src.rows);