An open API service indexing awesome lists of open source software.

https://github.com/webermarci/hikrec


https://github.com/webermarci/hikrec

go golang hikvision-camera license-plate-recognition

Last synced: 18 days ago
JSON representation

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 {
...
}
```