Alexey

Results 266 comments of Alexey

> Do I need to mark all objects? Yes, you must. > If I mark only one object and use such kind of images to train. Does it affect to...

@deimsdeutsch Ok, I will add key-shortcut to delete image from Yolo_mark - actually it will move image & txt files from source directory to the `delete` directory, so you can...

1. Do you use Linux or Windows? 2. Did you successfully compiled Yolo_mark by using MSVS2015 and OpenCV 2.4.x? 3. Where is created file `yolo_mark.exe`, is there `Yolo_mark/x64/Release/`?

From the manual: https://github.com/AlexeyAB/Yolo_mark#yolo_mark > To test, simply run > * on Windows: `x64/Release/yolo_mark.cmd` > * **on Linux `./linux_mark.sh`** So run `./linux_mark.sh`

> I already ran it, i saw my own images without bounding boxes, cuz I haven't trained yet, At first you should mark all of your images by `./linux_mark.sh` ----...

For Linux - you should download Darknet for Linux: https://github.com/pjreddie/darknet Compile it, find the runable file `darknet`, put near all files and run `./darknet detector train data/obj.data yolo-obj.cfg darknet19_448.conv.23`

Put files: yolo-obj.cfg, data/train.txt, data/obj.names, data/obj.data, darknet19_448.conv.23 and directory data/img near with executable darknet-file, but not vice versa :) https://github.com/AlexeyAB/Yolo_mark#yolo_mark > 3.2 Put files: yolo-obj.cfg, data/train.txt, data/obj.names, data/obj.data, darknet19_448.conv.23 and...

Yolo format is: ` ` So: ` = ((X_end + X_start) / 2) / image_width` ` = ((Y_end + Y_start) / 2) / image_height` ` = (X_end - X_start) /...

@ido-ran @RRMoelker @vinjn @lovexytoo I fixed it. Now Yolo_mark supports OpenCV 3.x and 4.x

@AzimovS * What OS and OpenCV version do you use? * Do you use the latest version of Yolo_mark?