Update imgwarp.cpp

github editor does not show white space and inserts one for you ... great combination
This commit is contained in:
grundman 2015-12-07 11:48:45 -08:00
parent 5772cb52e3
commit 2f0a598ac8

View File

@ -3257,7 +3257,7 @@ void cv::resize( InputArray _src, OutputArray _dst, Size dsize,
Mat src = _src.getMat();
_dst.create(dsize, src.type());
Mat dst = _dst.getMat();
if (dsize == ssize) {
// Source and destination are of same size. Use simple copy.
src.copyTo(dst);