Aleksei Bochkovskii
Aleksei Bochkovskii
* Try to base you cfg-file on `yolo-voc.2.0.cfg` instead of `yolo-voc.cfg` * Try to change 4 lines in the source code - set 1000 instead of 30 in these 4...
@kpreeti096 This is normal. https://github.com/AlexeyAB/darknet#how-to-train-to-detect-your-custom-objects > Note: If during training you see `nan` values for avg (loss) field - then training goes wrong, but if `nan` is in some other...
@tdurand @Luxonis-Brandon Hi, > JSON stream hooking > MJPEG stream hooking Yes, I think the best way to combine DepthAI with OpenDataCam - implement TCP-streams JSON/MJPEG in DepthAI. So if...
What OpenCV version do you use?
x_center = yolo_x * image_width y_center = yolo_y * image_height width = yolo_width * image_width height = yolo_height * image_height x_left = (yolo_x - yolo_width/2) * image_width y_top = (yolo_y...
1. I will think about it 2. Press 'h' - It is already there for a long time 3. Press 'k' to show/hide object names - It is already there...
Currently it can't. You just can copy all txt files from folder with images by using OS command * Windows `copy *.txt c:\mydir` * Linux `cp *.txt /home/labels`
@samueldedavid Hi, * Do you use this repository? https://github.com/AlexeyAB/darknet * Did you download it using `git clone` or using zip-archive? * I successfully ran darknet with your cfg-file: `darknet detector...
@TPchanger THanks! I fixed it. Download your code from GitHub.
* Do you use latest code from https://github.com/AlexeyAB/darknet ? * Can you show screenshot, what do you see when you open your dataset in the Yolo_mark?