Answers for "opencv save image python"

8

how to save image opencv

cv2.imwrite('data/dst/lena_opencv_red.jpg', im)
Posted by: Guest on January-04-2021
4

cv2 load image

import numpy as np
    import cv2
    import matplotlib.pyplot as plt
    %matplotlib inline # if you are running this code in jupyter notebook

    img = cv2.imread('/path_to_image/opencv-logo.png',0) # reads image 'opencv-logo.png' as grayscale
    plt.imshow(img, cmap='gray')
Posted by: Guest on June-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language