Created
March 11, 2020 10:28
-
-
Save jdhao/67e4dfdde3b4dad7f1e1df53e03056b7 to your computer and use it in GitHub Desktop.
Save image with quality parameter in OpenCV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
img = cv2.imread('test.jpg') | |
# specify the write parameter, can be found in https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga292d81be8d76901bff7988d18d2b42ac | |
write_param = [cv2.IMWRITE_JPEG_QUALITY, 90, cv2.IMWRITE_JPEG_OPTIMIZE, 1] | |
cv2.imwrite("test_new.jpg", img, write_param) | |
# Reference | |
# https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#gabbc7ef1aa2edfaa87772f1202d67e0ce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment