doxygenated core and imgproc modules (C++ API only)

This commit is contained in:
Vadim Pisarevsky
2010-05-25 14:57:10 +00:00
parent 201d4a068d
commit 4632d65889
4 changed files with 1593 additions and 263 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -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>::