Skip to content Skip to sidebar Skip to footer

Not Losing The Quality Of Pictures Saved With Cv2.imwrite()

I am wondering seriously about the effects of cv2.imwrite() function of OpenCV. I noticed that when I read pictures with cv2.imread() and save them again with cv2.imwrite() functio

Solution 1:

JPEG is a lossy format, you need to save your images as PNG as it is a lossless format.


Post a Comment for "Not Losing The Quality Of Pictures Saved With Cv2.imwrite()"