Ajit Kumar
Results
2
comments of
Ajit Kumar
When we have to count the from in the video then need tracking, But in the yolo pipeline there is no tracking id. That's the issue, even i run on...
import os import time print("Ajit") st=time.time() model_path="traffic_best_n.onnx" output_path="out" cmd=["deepsparse.yolov8.annotate", "--source", "People2.mp4", "--model_filepath", str(model_path), "--save_dir", output_path] cmd = ' '.join(cmd) os.system(cmd) ed=time.time() print(ed-st) I have used the above code for the...