go-darknet icon indicating copy to clipboard operation
go-darknet copied to clipboard

Go bindings for Darknet (YOLO v4 / v7-tiny / v3)

Results 6 go-darknet issues
Sort by recently updated
recently updated
newest added

Hello, I noticed that there's quite a few versions out, but the go.dev site (https://pkg.go.dev/github.com/lddl/go-darknet) still has the broken go.mod file variant, is it at all possible to update this?...

bug
enhancement

Do we have any plans to support Yolo-V5 in this project?

enhancement
discussion

**Describe the bug** Darknet built successfully. The issue occurs when testing the repo with the sample: ``` go build main.go && ./main --configFile=../yolov4.cfg --weightsFile=../yolov4.weights --imageFile=../sample.jpg ``` The net builds but...

bug
help wanted

need https://github.com/AlexeyAB/darknet/pull/6838 for libdarknet example: ```darknet.Init(*configFile, *weightsFile, 0) result, bboxs := darknet.Detect(*imageFile) if result != -1 { for _, bbox := range bboxs { fmt.Println(bbox.Rect, bbox.Confidence, bbox.ObjId) } }

enhancement

Hello! Is there any way to use custom yolov7-tiny models trained with the official PyTorch repo? I imagine I need to translate from .pt to .weights format, any hint on...

question

Hey! Did you also test this on Windows? I just tried implementing this into my Go-Project but it doesn't seem to work. First problem was that he couldn't find the...

question