At the very start of your machine learning journey, publicly available datasets alleviate the worry of creating the datasets yourself and let you focus on learning to use the machine learning algorithms. It also helps if the datasets are moderately sized and do not require too much pre-processing to get you to practice using the algorithms quicker before moving on to more challenging problems.
Two datasets we will be looking at are the simpler digits dataset provided with OpenCV and the more challenging but widely used CIFAR-10 dataset. We will use any of these two datasets during our journey through OpenCV’s machine learning algorithms.
In this tutorial, you will learn how to download and extract the OpenCV digits and CIFAR-10 datasets for practicing machine learning in OpenCV.
After completing this tutorial, you will know:
- How to download and extract the OpenCV digits dataset.
- How to download and extract the CIFAR-10 dataset without necessarily relying on other Python packages (such as TensorFlow).
Tutorial Overview
This tutorial is divided into three parts; they are:
- The Digits Dataset
- The CIFAR-10 Dataset
- Loading the Datasets
The Digits Dataset
OpenCV provides the image, digits.png, composed of a ‘collage’ of 20
The digits dataset provided by OpenCV does not necessarily represent the real-life challenges that come with more complex datasets, primarily because its image content features very limited variation. However, its simplicity and ease of use will allow us to quickly test several machine learning algorithms at a low pre-processing and computational cost.
To be able to extract the dataset from the full digits image, our first step is to split it into the many sub-images that make it up. For this purpose, let’s create the following split_images
function:
The split_images
function takes as input the path to the full image, together with the pixel size of the sub-images. Since we are working with square sub-images, we shall be denoting their size by a single dimension, which is equal to 20.
The function subsequently applies the OpenCV imread
method to load a grayscale version of the image into a NumPy array. The hsplit
and vsplit
methods are then used to split the NumPy array horizontally and vertically, respectively.
The array of sub-images the split_images
function returns is of size (50, 100, 20, 20).
Once we have extracted the array of sub-images, we shall partition it into training and testing sets. We will also need to create the ground truth labels for both splits of data to be used during the training process and to evaluate the test results.
The following split_data
function serves these purposes:
The split_data
function takes the array of sub-images as input and the split ratio for the training portion of the dataset. The function then proceeds to compute the partition
value that divides the array of sub-images along its columns into training and testing sets. This partition
value is then used to allocate the first set of columns to the training data and the remaining set of columns to the testing data.
To visualize this partitioning on the digits.png image, this would appear as follows:
You may also note that we are flattening out every 20
The final part of the split_data
function creates ground truth labels with values between 0 and 9 and repeats these values according to how many training and testing images we have available.
The CIFAR-10 Dataset
The CIFAR-10 dataset is not provided with OpenCV, but we shall consider it because it represents real-world challenges better than OpenCV’s digits dataset.
The CIFAR-10 dataset consists of a total of 60,000, 32
Let’s go ahead and download the CIFAR-10 dataset for Python from this link (note: the reason for not using TensorFlow/Keras to do so is to show how we can work without relying on additional Python packages if need be). Take note of the path on your hard disk to which you have saved and extracted the dataset.
The following code loads the dataset files and returns the training and testing, images, and labels:
It is important to remember that the compromise of testing out different models using a larger and more varied dataset, such as the CIFAR-10, over a simpler one, such as the digits dataset, is that training on the former might be more time-consuming.
Loading the Datasets
Let’s try calling the functions that we have created above.
I have separated the code belonging to the digits dataset from the code belonging to the CIFAR-10 dataset into two different Python scripts that I named digits_dataset.py
and cifar_dataset.py
, respectively:
Note: Do not forget to change the paths in the code above to where you have saved your data files.
In the subsequent tutorials, we shall see how to use these datasets with different machine learning techniques, first seeing how to convert the dataset images into feature vectors as one of the pre-processing steps before using them for machine learning.
Further Reading
This section provides more resources on the topic if you want to go deeper.
Books
Websites
- OpenCV, https://opencv.org/
Summary
In this tutorial, you learned how to download and extract the OpenCV digits and CIFAR-10 datasets for practicing machine learning in OpenCV.
Specifically, you learned:
- How to download and extract the OpenCV digits dataset.
- How to download and extract the CIFAR-10 dataset without necessarily relying on other Python packages (such as TensorFlow).
Do you have any questions?
Ask your questions in the comments below, and I will do my best to answer.
No comments:
Post a Comment