Vehicle Counting Data

NoProblems

n3wb
Joined
May 10, 2021
Messages
10
Reaction score
7
Location
United States
Using BlueIris and a working codeproject .

It is possible to just get the total count of vehicles crossing a trip wire in Blueiris example trucks , cars , motorcycles hourly and daily id so how ,
 

jaydeel

BIT Beta Team
Joined
Nov 9, 2016
Messages
1,237
Reaction score
1,295
Location
SF Bay Area
You can also scrape and count entries from the Blue Iris logfile:

Column 2 (‘Time’):
Filter whatever datetime range you want​
Column 3 (‘Object’):
matches camera name (e.g., ‘DW1’)​
Column 4 (‘Message)’:
matches ‘AI:’​
AND matches ‘[‘ … entry has AI analysis data​
AND matches ‘vehicle’ … or whatever AI label you want​
AND not matches ‘cancel’​
AND not matches ‘err’​
 
Top