Open Vishnu15018 opened 8 months ago
Hello! You have error in str tracks = object_tracker.update_tracks(list1,frame)
Need use arghument "frame"
tracks = object_tracker.update_tracks(list1,frame=frame)
any solution?
any solution? No, solution. I copy pasted the code directly from Nicolai Nielsen tutorials GitHub, repo on deepsort.
I found that by adding a row a, b = np.squeeze(a), np.squeeze(b)
after row 53 inside of the if not data_is_normalized
portion of function _cosine_distance
in nn_matching.py
allows the program to proceed. I now face issues elsewhere in my program, but I haven't been able to diagnose fully if they are related to this error and fix.
After running the fix for a few days now I can say that the issues that followed were unrelated and squeezing the variables seems to be working.
I tried yolov8 object detection , and deep sort object tracking to track vehicles , using the Nicolai Nielsen tutorials.I got this below error.
Trace if the error.
`ValueError Traceback (most recent call last)