Commit ccb1e5fa authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

added assert to MatConstIterator::pos()

parent 39335eb3
...@@ -1804,11 +1804,11 @@ template<typename _Tp> inline MatIterator_<_Tp> MatIterator_<_Tp>::operator ++(i ...@@ -1804,11 +1804,11 @@ template<typename _Tp> inline MatIterator_<_Tp> MatIterator_<_Tp>::operator ++(i
return b; return b;
} }
// Fixing a back compatibility problem -- to be reviewed by Vadim
template<typename _Tp> inline Point MatConstIterator_<_Tp>::pos() const template<typename _Tp> inline Point MatConstIterator_<_Tp>::pos() const
{ {
if( !m ) if( !m )
return Point(); return Point();
CV_DbgAssert( m->dims <= 2 );
if( m->isContinuous() ) if( m->isContinuous() )
{ {
ptrdiff_t ofs = ptr - (_Tp*)m->data; ptrdiff_t ofs = ptr - (_Tp*)m->data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment