mirror of
https://github.com/LdDl/go-darknet.git
synced 2025-10-06 16:17:32 +08:00
32 lines
738 B
Markdown
32 lines
738 B
Markdown
# Example Go application using go-darknet
|
|
|
|
This is an example Go application which uses go-darknet.
|
|
|
|
## Install
|
|
|
|
```shell
|
|
go get github.com/LdDl/go-darknet
|
|
go install github.com/LdDl/go-darknet/example
|
|
|
|
# Alternatively
|
|
go build github.com/LdDl/go-darknet/example
|
|
```
|
|
|
|
An executable named `example` should be in your `$GOPATH/bin`, if using
|
|
`go install`; otherwise it will be in your current working directory (`$PWD`),
|
|
if using `go build`.
|
|
|
|
## Run
|
|
|
|
```shell
|
|
$GOPATH/bin/example
|
|
```
|
|
|
|
Please ensure that `libdarknet.so` is in your `$LD_LIBRARY_PATH`.
|
|
|
|
## Notes
|
|
|
|
Note that the bounding boxes' values are ratios. To get the actual values, use
|
|
the ratios and multiply with either the image's width or height, depending on
|
|
which ratio is used.
|