fix: increase tracking thread and lower tracking min confidence
All checks were successful
Build Worker Base and Application Images / check-base-changes (push) Successful in 7s
Build Worker Base and Application Images / build-base (push) Has been skipped
Build Worker Base and Application Images / build-docker (push) Successful in 3m39s
Build Worker Base and Application Images / deploy-stack (push) Successful in 16s
All checks were successful
Build Worker Base and Application Images / check-base-changes (push) Successful in 7s
Build Worker Base and Application Images / build-base (push) Has been skipped
Build Worker Base and Application Images / build-docker (push) Successful in 3m39s
Build Worker Base and Application Images / deploy-stack (push) Successful in 16s
This commit is contained in:
parent
0dd1b9f5c2
commit
f495b47a96
2 changed files with 10 additions and 4 deletions
|
|
@ -70,7 +70,8 @@ class TrackingPipelineIntegration:
|
|||
self.abandonment_timeout = 3.0 # seconds to wait before declaring car abandoned
|
||||
|
||||
# Thread pool for pipeline execution
|
||||
self.executor = ThreadPoolExecutor(max_workers=2)
|
||||
# Increased to 8 workers to handle 8 concurrent cameras without queuing
|
||||
self.executor = ThreadPoolExecutor(max_workers=8)
|
||||
|
||||
# Min bbox filtering configuration
|
||||
# TODO: Make this configurable via pipeline.json in the future
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue