Alexey

Results 266 comments of Alexey

I think it is not worth to complicate the code due to the functionality that is easily achieved by these functions. * Linux: `ls /home/user/*.jpg > filelist.txt` `./darknet detector test...

@2LOVES7 @rap9430 Hi, you can try this fork: https://github.com/AlexeyAB/yolo-windows I've just got this result on Windows 7 x64 with **yolo.cfg** from my fork and **yolo.weights** from here: http://pjreddie.com/media/files/yolo.weights ![predictions](https://cloud.githubusercontent.com/assets/4096485/14691878/6451497e-075c-11e6-90cf-4607cfec298b.png)

@abhigarg It can't be compiled using MSVS 2012 (v110) without code changes, because MSVS 2012 uses C89 standard of C, then must be declaring/initializing all local variables at the beginning...

@richipower What version of MSVS, CUDA and OpenCV do you use? * I also added description "Hot to compile": https://github.com/AlexeyAB/yolo-windows#how-to-compile * And I changed links to successfully tested weight-files for...

@richipower Try to compile Yolo v2 with CUDA+OpenCV and run on video-file. About Yolo v2: * Currently detection on image doesn't work propertly: `darknet.exe yolo test yolo-voc.cfg yolo-voc.weights air7.jpg -i...

@richipower After the update the latest changes you can use this in Yolo v2: To detection on image-file: * 256 MB COCO-model - image: `darknet.exe detector test data/coco.data yolo.cfg yolo.weights...

Current Yolo version 2 for Windows tested for custom training & detection: https://github.com/AlexeyAB/darknet

@cenit Hi, * I think we should keep compiling with CMake-GUI for Windows, some users want to control anything ---- * I think sometime we should remove `build/darknet`, and re-write...

@cenit Hi, > did you try your procedure with a recent darknet? It should work this way :) No, it doesn't work. I tried both ways: 1. just double-click on...

> of course I am not removing it! I am even using cmake from command line and manually editing its own cache in order to fine-control everything! Where did you...