OpenCV (Python) video subplots
问题 I am trying to show two OpenCV video feeds in the same figure as subplots, but couldn't find how to do it. When I try using plt.imshow(...), plt.show() , the window won't even appear. When I try using cv2.imshow(...) , it shows two independent figures. What I actually want are subplots :(. Any help? Here is the code that I have so far: import numpy as np import cv2 import matplotlib.pyplot as plt cap = cv2.VideoCapture(0) ret, frame = cap.read() while(True): ret, frame = cap.read() channels =