Removed an unnecessary workaround for matrix-to-vector copyTo.

This commit is contained in:
Roman Donchenko 2014-01-17 14:16:22 +04:00
parent ee97a5e757
commit 4e4a7d0353

View File

@ -232,10 +232,7 @@ void Mat::copyTo( OutputArray _dst ) const
const uchar* sptr = data;
uchar* dptr = dst.data;
// to handle the copying 1xn matrix => nx1 std vector.
Size sz = size() == dst.size() ?
getContinuousSize(*this, dst) :
getContinuousSize(*this);
Size sz = getContinuousSize(*this, dst);
size_t len = sz.width*elemSize();
for( ; sz.height--; sptr += step, dptr += dst.step )