How set batch size in track.py? #930
-
how i may process video faster |
Beta Was this translation helpful? Give feedback.
Answered by
mikel-brostrom
Jun 7, 2023
Replies: 1 comment
-
I guess this could be done. But the bottleneck is the reid model, not yolo. I will try to explain why
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kodinkod
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I guess this could be done. But the bottleneck is the reid model, not yolo. I will try to explain why
Each of these output are used to crop each of the original input images. All the crops are then stacked together for each image and fed to the ReID model
The dimensions of a conv network are maximum 4. So you would have to process the images sequentially anyways for the ReID model. Not so simple as just increasing the batch size for yolo.