mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
250 B
250 B
OpenCV Lib
Bascis
Read Image & Video
import cv2 as cv
img = cv.imread("filename") # read and save the image as matrix of pixels
cv.imgshow("Window Name", image) # show an image in a named window (takes name and pixel matrix)