https://github.com/webermarci/hikrec
https://github.com/webermarci/hikrec
go golang hikvision-camera license-plate-recognition
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/webermarci/hikrec
- Owner: webermarci
- License: mit
- Created: 2022-02-07T12:18:02.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-23T13:08:08.000Z (7 months ago)
- Last Synced: 2025-03-24T12:11:21.402Z (about 1 month ago)
- Topics: go, golang, hikvision-camera, license-plate-recognition
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hikvision licence plate recognition library
## Usage
```go
import "github.com/webermarci/hikrec"device := hikrec.NewDevice("192.168.1.10", "admin", "12345")
channel, err := device.PullRecognitions()
if err != nil {
panic(err)
}for recognition := range channel {
...
}
```