chasonlee / Yolo_mark

GUI for marking bounded boxes of objects in images for training Yolo v2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yolo_mark

Windows & Linux GUI for marking bounded boxes of objects in images for training Yolo v2


  1. To test, simply run
  • on Windows: x64/Release/yolo_mark.cmd
  • on Linux ./linux_mark.sh
  1. To use for labeling your custom images:
  1. To training for your custom objects, you should change 2 lines in file x64/Release/yolo-obj.cfg:

3.1 Download pre-trained weights for the convolutional layers (76 MB): http://pjreddie.com/media/files/darknet19_448.conv.23

3.2 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, and start training: darknet detector train data/obj.data yolo-obj.cfg darknet19_448.conv.23

For a detailed description, see: https://github.com/AlexeyAB/darknet#how-to-train-to-detect-your-custom-objects

####Here are:

  • /x64/Release/

    • yolo_mark.cmd - example hot to use yolo mark: yolo_mark.exe data/img data/train.txt data/obj.names
    • train_obj.cmd - example how to train yolo for your custom objects (put this file near with darknet.exe): darknet.exe detector train data/obj.data yolo-obj.cfg darknet19_448.conv.23
    • yolo-obj.cfg - example of yoloV2-neural-network for 2 object
  • /x64/Release/data/

    • obj.names - example of list with object names
    • obj.data - example with configuration for training Yolo v2
    • train.txt - example with list of image filenames for training Yolo v2
  • /x64/Release/data/img/air4.txt - example with coordinates of objects on image air4.jpg with aircrafts (class=0)

Image of Yolo_mark

About

GUI for marking bounded boxes of objects in images for training Yolo v2


Languages

Language:C++ 96.0%Language:CMake 1.6%Language:Batchfile 1.6%Language:Shell 0.9%