Dimitrii Lopanov

Results 45 comments of Dimitrii Lopanov

> It's all fine when i use vs2019 > > but same issue appear after install vs2022 > > remove vs2022 everything is ok Thanks for reply It worked for...

> It might not be the exact solution you were looking for, but I was able to accomplish modifying the default theme using a plugin. > > **/plugin/floater.client.ts** > >...

Hello, thanks for warm words) I'll take a lot into go.mod file (go mod tidy at least)

https://sum.golang.org/lookup/github.com/lddl/[email protected] - works https://proxy.golang.org/github.com/lddl/go-darknet/@v/v1.3.7.mod - works https://proxy.golang.org/github.com/lddl/go-darknet/@latest - works Interesting, force update can't help me lol. Still not valid: ![image](https://user-images.githubusercontent.com/8864477/180972627-60a7c255-dd1e-4783-b193-a8bef97186ec.png) I'm tagging this issue as a bug now

> 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...

Do we really need tight OpenCV integration? ```go // #cgo windows CPPFLAGS: -IC:/opencv/build/install/include // #cgo windows LDFLAGS: -LC:/opencv/build/install/x64/mingw/lib -lopencv_core420 -lopencv_face420 -lopencv_videoio420 -lopencv_imgproc420 -lopencv_highgui420 -lopencv_imgcodecs420 -lopencv_objdetect420 -lopencv_features2d420 -lopencv_video420 -lopencv_dnn420 -lopencv_xfeatures2d420 -lopencv_plot420...

> > Do we really need tight OpenCV integration? > > ```go > > // #cgo windows CPPFLAGS: -IC:/opencv/build/install/include > > // #cgo windows LDFLAGS: -LC:/opencv/build/install/x64/mingw/lib -lopencv_core420 -lopencv_face420 -lopencv_videoio420 -lopencv_imgproc420...

Isn't YOLOv5 written in Python+Pytroch natively? I guess so... C-code must be happen to create proper CGO bindings :) There are some interesting readings: 1. https://github.com/AlexeyAB/darknet/issues/5920#issuecomment-642812152 2. https://blog.roboflow.com/yolov4-versus-yolov5/ I don't...

Well Now I have plans for YoloV7 since this is official - https://github.com/AlexeyAB/darknet/issues/8595

YOLOv7 tiny should work without additional effort: https://github.com/LdDl/go-darknet/commit/1969bdad71d96fa533085d8a068811b9f90448d2 ```shell ~/go_work/go-darknet/cmd/examples$ go build -o base_example/main base_example/main.go && ./base_example/main --configFile=yolov7-tiny.cfg --weightsFile=yolov7-tiny.weights --imageFile=sample.jpg Try to load cfg: yolov7-tiny.cfg, clear = 0 0 :...