Exactly that was my original motivation to create this, and I feel like this is honestly way better now, even at this fairly early point in its existence.Wow I need to give this a try
Paying $20/mo for Rekor is getting very old
Yes, I am. I’ll try pulling the last update again to see if that helps.I'm not seeing this on my end and can't reproduce. Are you still having this issue?
The reason is not to clutter up the database with plates I do not care to track. Also I do not want the plates to show up on the Top 5 Plates (24h) because I know who the plate belongs to. In my ALPR camera field of view I have parked cars that are family and this plate can have over 1000 reads in 24 hours.Nice photoshop
I certainly can, but can you explain why you would want this?
What additional hardware will be required for this?TPMS capture support...
Most likely a Software-defined radio (SDR) like the belowWhat additional hardware will be required for this?
Most likely a Software-defined radio (SDR) like the below
What additional hardware will be required for this?
This thread has jumped to the next level.... I have power at the road and I love gadgetsI'm interested to hear about other people's power/wiring situations. I have my ALPR cams wired all the way out to the street, so I think I am going to run another line and power this little box off POE, but otherwise, it could be powered by a regular outlet if you have one of those on your property close enough to the street, or off landscape lighting, or off solar (although much more expensive and requires a battery).
I was originally going to do solar to avoid running another cable, but if you have the ability to run power/POE, it's really a lot better and cheaper. Solar setup: I would put in an ammo box to fit the battery or 3d print something with O rings.
I ordered this enclosure for myself to use with POE: Enclosure.
I'm trying to keep the setup as cheap and compact as possible and am testing with the following hardware soon:
Total: ~$100 + Figuring out how to power it.
- SDR Nano - $41
- Raspberry Pi 4 (may downgrade) -$35
- Enclosure - $12
- SMA Bulkhead Fitting - $--
- 26 AWG unshielded copper jumper (3in) $--
- Custom 315 MHz antenna (Bc not on Amazon. Available at a premium from radio/engineering sites, but better to just make one since it's literally a piece of copper in a tube.). Exact implementation TBD. - $--
Solar would be more like $250 and would use WiFi.
There are two options to get the data. Either stream the raw RF data from the SDR and deal with it in the app - or decode it in the box then send to an application like my ALPR database. Not really sure what will work best at the moment.
If I do end up getting consistent reads out on my street, I would be happy to assemble a box for anyone who wants one at no additional charge. I'll even ship it for free just because I'd like to see the data from other locations. I'll post what the decoded data from my setup looks like sometime soon.
PLEASE, do share any other features you would like or think are missing. More than happy to take any request into consideration.
@algertc what does Download do.
Nothing at the moment. Was thinking it could be nice to be able to export your database, just not sure exactly how that should look yet or what people would end up using it for.
Would love to hear any thoughts
import urllib.parse import urllib.request url = "" header={"x-api-key" : 'a7f1bc2f790dfc6959...(redacted)...'} post_param = urllib.parse.urlencode({ 'plate_number' : '9MQC052', 'Image' : 'Alerts/Cam3a.20240611_123315_45027682.jpg', 'Camera' : 'LPR', 'timestamp' : '2024-06-11T19:33:17Z' }).encode('UTF-8') req = urllib.request.Request(url, post_param, header) response = urllib.request.urlopen(req) print(response.read()) |