doxygenated core and imgproc modules (C++ API only)
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1474,6 +1474,13 @@ inline LineIterator LineIterator::operator ++(int)
|
||||
++(*this);
|
||||
return it;
|
||||
}
|
||||
inline Point LineIterator::pos() const
|
||||
{
|
||||
Point p;
|
||||
p.y = (ptr - ptr0)/step;
|
||||
p.x = ((ptr - ptr0) - p.y*step)/elemSize;
|
||||
return p;
|
||||
}
|
||||
|
||||
#if 0
|
||||
template<typename _Tp> inline VectorCommaInitializer_<_Tp>::
|
||||
|
Reference in New Issue
Block a user