Answers for "how to read and write an image using cv2 python"

4

cv2 write image python

# Filename
filename = 'savedImage.jpg'
  
# Using cv2.imwrite() method
# Saving the image
cv2.imwrite(filename, img)
Posted by: Guest on April-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language