cv2 imwrite path

Solutions on MaxInterview for cv2 imwrite path by the best coders in the world

showing results for - "cv2 imwrite path"
Alyssa
14 Jul 2017
1import cv2
2
3image = cv2.imread('test_img.jpg')
4path ='D:/save_image.jpg'
5
6cv2.imwrite(path,image)