嗯,吾亦木有想到.加参数False即可:
try: frame_id = camera_queue.get(False) print frame_id return frame_id except queue.Empty: camera_queue = None return 0
可以指定阻塞时间,这个就没必要了.
当然,也可以直接调用get_nowait()
嗯,吾亦木有想到.加参数False即可:
try: frame_id = camera_queue.get(False) print frame_id return frame_id except queue.Empty: camera_queue = None return 0
可以指定阻塞时间,这个就没必要了.
当然,也可以直接调用get_nowait()