【发布时间】:2021-12-10 21:53:39
【问题描述】:
有没有办法在 Google Colab 中创建跟踪栏?在本地运行的代码上,只需执行以下操作:
cv2.namedWindow("Trackbars")
cv2.createTrackbar("L - S", "Trackbars", 0, 255, nothing)
while: ...
ls = cv2.getTrackbarPos("L - S", "Trackbars")
我想在 Colab 中做同样的事情。有什么变通方法,有补丁吗?
【问题讨论】:
标签: python opencv user-interface image-processing google-colaboratory