答案 0 :(得分:2)
由于此表是静态的并且不会更改,因此如何根据它将具有的行数以编程方式调整此表的大小,
将所有数据添加到表后,您可以使用:
webcam = cv2.VideoCapture(0)
(_, im) = webcam.read() # here the funcation read() not found in auto complete
gray = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)
然后,当表格添加到滚动窗格时,滚动窗格的大小将是表格的首选大小。
答案 1 :(得分:1)