@S18CRX0120
overlay=cv2.resize(overlay,(w,h))
for i in range(overlay.shape[0]):
for j in range(overlay.shape[1]):
if(overlay[i,j,3]>0):
fullimg[y+i,x+j,:]=overlay[i,j,:-1]
what is overlay[i,j,3] denoting ,I found this code after going through discussion ,unable to understand.Help!!