Remove small and incomplete notes

This commit is contained in:
Marcello Lamonaca 2021-02-02 11:22:10 +01:00
parent 1fcda68019
commit 58d9b9fbf0
5 changed files with 0 additions and 634 deletions

View file

@ -1,12 +0,0 @@
# OpenCV Lib
## Bascis
### Read Image & Video
```py
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)
```