Darknet binding written in Go
Since this repository https://github.com/gyonluks/go-darknet is no longer maintained I decided to move on and make little different bindings for Darknet.
This bindings aren't for official implementation but for AlexeyAB's fork.
Added features:
- It is possible to load image.Image into []float32 slice and inference it to CGO. https://github.com/LdDl/go-darknet/blob/master/image.go#L62
- Has GPU support (CUDA).
- Has download_data.sh scpirt to load YOLOv3 weights/cfg/classnames and sample image.
Future works:
- Add classic function for loading image from file system.
- Save predictions
- gRPC server example
- Updates according to AlexeyAB's fork