../
This is post #2 of a 5-part series on Darknet. If you've not yet read the summary, I suggest you start there.

Summary

Training a neural network requires many images. Hundreds at a minimum, and thousands if possible. And not thousands of images of different things, but thousands of different images of the same thing. Repetition is how a neural network is trained.

This post is about the tool I wrote to create thousands of synthetic images which I then use to train a neural network. Download the source code to follow along (CC0, public domain license).

Images

In my case, the stone barcode product I want to detect didn't exist, so I couldn't get thousands of images. I had to create some synthetic images to bootstrap the process. The good news is when you're creating synthetic images, you can create as many as you want very quickly. What I needed was:

  1. A library to generate barcode images. I chose Zint. See my previous post about how to use Zint's C API to generate barcodes.
  2. Some background images of stones of various sizes and colours. This is where Google Images helps.

Background images

The background images I found were then cropped or resized to 1024x1024, and I saved them as JPEG files (quality=65 in GIMP). I've done this with as few as 4 images to do some quick tests, but in the case of this tutorial it was very easy to find pictures of stones, and I have a total of 42 background images. They look like this:

several background image thumbnails

The synthetic image tool randomly rotates the background images 90, 180, and 270 degrees, so the 42 background images becomes 168 possible background images. On top of which, a small percentage of the time the tool selects a semi-random light colour as the background, meaning even more selection. This is the relevant function in the tool that returns the background image to be used:

cv::Mat get_random_background_image() { cv::Mat background; int r = std::rand() % 100; if (r < 5 || all_backgrounds.empty()) { // every once in a while use a plain grey background instead of one of our preloaded background images const int red = 224 + std::rand() % 32; const int green = 224 + std::rand() % 32; const int blue = 224 + std::rand() % 32; cv::Scalar colour(blue, green, red); // doesn't matter in this case, but remember OpenCV uses BGR not RGB background = cv::Mat(1024, 1024, CV_8UC3, colour); } else { // choose one of our preloaded background images r = std::rand() % all_backgrounds.size(); cv::Mat mat = all_backgrounds.at(r); // also apply a random rotation to the image r = std::rand() % 100; if (r <= 25) { background = mat.clone(); } // no rotation -- use the original image else if (r <= 50) { cv::rotate(mat, background, cv::ROTATE_90_CLOCKWISE); } else if (r <= 75) { cv::rotate(mat, background, cv::ROTATE_180); } else { cv::rotate(mat, background, cv::ROTATE_90_COUNTERCLOCKWISE); } } return background; }

Barcode (foreground) images

The barcode image is straightforward, and I've already covered Zint in this previous post. See the functions generate_random_barcode() and convert_barcode_image_to_opencv_mat() in the source code for details.

Labels (Darknet style)

When the background images and the Zint barcode images are combined into a full image, we need to record in a text file the coordinates where the region-of-interest ("barcode") is located. This is used by Darknet to direct the training of the neural net. In Darknet, this is called a "label". The labels have the following format:

When training a neural net to recognize objects, each object type is assigned a "class ID" starting at zero. In this tutorial, we only recognize a single thing: barcodes. So all of our objects will use class 0 (zero).

The coordinates and size of the region-of-interest are normalized, meaning you don't give the pixel coordinates but instead a float between 0 and 1 representing the total width or total height of the image. An example will help:

Now that we know the centre of the barcode is at (205,142) and that our image is exactly (1024x1024), we can do the following calculations:

The Darknet-style label starts with the class index, which in our case is zero. All fields are separated with a single space. The filename must be the same as the corresponding image, but with a .txt extension, and the content for this example would look like this:

0 0.200195 0.138672 0.224609 0.115234

Creating the training images

At this point, you run the tool to create the synthetic images and Darknet labels. Generate at least 1000. The loop is in main():

int main() { std::srand(std::time(nullptr)); load_all_background_images(); const size_t number_of_files_to_create = 2000; std::cout << "generating " << number_of_files_to_create << " images" << std::flush; for (size_t idx = 0; idx < number_of_files_to_create; idx ++) { std::cout << "." << std::flush; generate_random_background_and_barcode("barcode_" + std::to_string(idx)); } std::cout << std::endl; return 0; }

Once it has finished running, you should have lots of .jpg and .txt files which we'll feed to Darknet for training.

screenshot

The combined background and barcodes images should look similar to this:

synthetic stone barcode images

Now that we have thousands of synthetic images we can use, go to post #3 of the series to install and build Darknet.

Last modified: 2019-10-22
Stéphane Charette, stephanecharette@gmail.com
../