CV2.Imwrite Path

import cv2

image = cv2.imread('test_img.jpg')
path ='D:/save_image.jpg'

cv2.imwrite(path,image)
Innocent Ibis