Instead of copyTo
copyTo.py
src1[ 0 : src2.shape[0], 0 : src2.shape[1]] = src2
Instead of Clone
clone
src2 = src1.copy()
Recommended Posts