cv2 write image python

Solutions on MaxInterview for cv2 write image python by the best coders in the world

showing results for - "cv2 write image python"
Amelie
14 Sep 2016
1# Filename
2filename = 'savedImage.jpg'
3  
4# Using cv2.imwrite() method
5# Saving the image
6cv2.imwrite(filename, img)