Lines Matching refs:LineIterator
4134 The class LineIterator is used to get each pixel of a raster line. It
4140 The number of pixels along the line is stored in LineIterator::count.
4141 The method LineIterator::pos returns the current position in the image:
4146 LineIterator it(img, pt1, pt2, 8);
4147 LineIterator it2 = it;
4161 class CV_EXPORTS LineIterator
4173 LineIterator( const Mat& img, Point pt1, Point pt2,
4180 LineIterator& operator ++();
4183 LineIterator operator ++(int);
4198 // === LineIterator implementation ===
4201 uchar* LineIterator::operator *()
4207 LineIterator& LineIterator::operator ++()
4216 LineIterator LineIterator::operator ++(int)
4218 LineIterator it = *this;
4224 Point LineIterator::pos() const