for file in os.listdir('yolov3_tiny_car_det/output'): fsize = os.path.getsize(f'yolov3_tiny_car_det/output/{file}') if (fsize<40000): os.remove(f'yolov3_tiny_car_det/output/{file}')
yolov3_tiny_car_det/output为目录,40000指字节
for file in os.listdir('yolov3_tiny_car_det/output'): fsize = os.path.getsize(f'yolov3_tiny_car_det/output/{file}') if (fsize<40000): os.remove(f'yolov3_tiny_car_det/output/{file}')
yolov3_tiny_car_det/output为目录,40000指字节
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。