initial commit

This commit is contained in:
2019-12-28 16:26:19 +08:00
commit 9b54936e28
19 changed files with 876 additions and 0 deletions

8
example.py Normal file
View File

@@ -0,0 +1,8 @@
from imshow.client import client
import cv2
img1 = cv2.imread('./img/1.jpg')
img2 = cv2.imread('./img/2.jpg')
while True:
client.imshow('Name', img1, waitKey=1)
client.imshow('Name', img2, waitKey=1)