lemonyhw

Results 2 issues of lemonyhw

### 问题确认 Search before asking - [x] 我已经搜索过问题,但是没有找到解答。I have searched the question and found no related answer. ### 请提出你的问题 Please ask your question ppyoloe-l可以压缩,但对yolox_s压缩时出错 1、执行以下代码得到转换后的模型 python tools/export_model.py \ -c configs/yolox/yolox_s_300e_coco.yml...

in_filename = "test.mp4" process1 = ( ffmpeg.input(in_filename) .output(format='rawvideo', pix_fmt='rgb24') .run(capture_stdout=True, capture_stderr=True) ) while True: in_bytes = process1.stdout.read(width * height * 3) if not in_bytes: break in_frame = ( np .frombuffer(in_bytes,...