Skip to content

Instantly share code, notes, and snippets.

View Princekrampah's full-sized avatar
😃
Out sick

Prince Krampah Princekrampah

😃
Out sick
View GitHub Profile
import cv2
# we load in the image
img = cv2.imread("images/image1.jpg")
h, w, c = img.shape
print(f"Height: {h}, width: {w}, channels: {c}")
# we create a window and display the image