8 lines
202 B
Python
8 lines
202 B
Python
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) |