analysis/demo/simpleIPC.go
@@ -12,11 +12,11 @@ ) // RunYoloFromIPC recv data from ipc func RunYoloFromIPC(ipcURL string) { func RunYoloFromIPC(ipcURL string, asServer bool) { imageChan := make(chan srv.ImageInfo) d := srv.NewReciever(ipcURL, imageChan) go d.Run() go d.Run(asServer) cfg := "./data/yolo/cfg/yolov3.cfg" weights := "./data/yolo/yolov3.weights"