Answers for "python write image to file opencv"

8

how to save image opencv

cv2.imwrite('data/dst/lena_opencv_red.jpg', im)
Posted by: Guest on January-04-2021
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

Code answers related to "python write image to file opencv"

Python Answers by Framework

Browse Popular Code Answers by Language