Saturday, June 13, 2026
HomeArtificial IntelligencePicture Augmentation with Keras Preprocessing Layers and tf.picture

Picture Augmentation with Keras Preprocessing Layers and tf.picture

[ad_1]

Final Up to date on July 20, 2022

Once we work on a machine studying drawback associated to pictures, not solely we have to gather some pictures as coaching knowledge, but in addition must make use of augmentation to create variations within the picture. It’s very true for extra complicated object recognition issues.

There are numerous methods for picture augmentation. You might use some exterior libraries or write your individual features for that. There are some modules in TensorFlow and Keras for augmentation, too. On this submit you’ll uncover how we are able to use the Keras preprocessing layer in addition to tf.picture module in TensorFlow for picture augmentation.

After studying this submit, you’ll know:

  • What are the Keras preprocessing layers and methods to use them
  • What are the features offered by tf.picture module for picture augmentation
  • The way to use augmentation along with tf.knowledge dataset

Let’s get began.

Picture Augmentation with Keras Preprocessing Layers and tf.picture

Picture Augmentation with Keras Preprocessing Layers and tf.picture.
Photograph by Steven Kamenar. Some rights reserved.

Overview

This text is break up into 5 sections; they’re:

  • Getting Photographs
  • Visualizing the Photographs
  • Keras Preprocessing Layesr
  • Utilizing tf.picture API for Augmentation
  • Utilizing Preprocessing Layers in Neural Networks

Getting Photographs

Earlier than we see how we are able to do augmentation, we have to get the pictures. In the end, we want the pictures to be represented as arrays, for instance, in HxWx3 in 8-bit integers for the RGB pixel worth. There are numerous methods to get the pictures. Some may be downloaded as a ZIP file. For those who’re utilizing TensorFlow, it’s possible you’ll get some picture dataset from the tensorflow_datasets library.

On this tutorial, we’re going to use the citrus leaves pictures, which is a small dataset in lower than 100MB. It may be downloaded from tensorflow_datasets as follows:

Operating this code the primary time will obtain the picture dataset into your laptop with the next output:

The operate above returns the pictures as a tf.knowledge dataset object and the metadata. This can be a classification dataset. We are able to print the coaching labels with the next:

and this prints:

For those who run this code once more at a later time, you’ll reuse the downloaded picture. However the different strategy to load the downloaded pictures right into a tf.knowledge dataset is to the image_dataset_from_directory() operate.

As we are able to see the display screen output above, the dataset is downloaded into the listing ~/tensorflow_datasets. For those who have a look at the listing, you see the listing construction as follows:

The directories are the labels and the pictures are recordsdata saved below their corresponding listing. We are able to let the operate to learn the listing recursively right into a dataset:

You might wish to set batch_size=None if you do not need the dataset to be batched. Normally we wish the dataset to be batched for coaching a neural community mannequin.

Visualizing the Photographs

You will need to visualize the augmentation end result so we are able to confirm the augmentation result’s what we would like it to be. We are able to use matplotlib for this.

In matplotlib, we now have the imshow() operate to show a picture. Nonetheless, for the picture to be displayed appropriately, the picture must be offered as an array of 8-bit unsigned integer (uint8).

Given we now have a dataset created utilizing image_dataset_from_directory(), we are able to get the primary batch (of 32 pictures) and show a number of of them utilizing imshow(), as follows:

Right here we show 9 pictures in a grid, and label the pictures with their corresponding classification label, utilizing ds.class_names. The pictures must be transformed to NumPy array in uint8 for show. This code shows a picture like the next:

The entire code from loading the picture to show is as follows.

Word that, in the event you’re utilizing tensorflow_datasets to get the picture, the samples are offered as a dictionary as a substitute of a tuple of (picture,label). You must change your code barely into the next:

In the remainder of this submit, we assume the dataset is created utilizing image_dataset_from_directory(). You might must tweak the code barely in case your dataset is created otherwise.

Keras Preprocessing Layers

Keras comes with many neural community layers similar to convolution layers that we have to practice. There are additionally layers with no parameters to coach, similar to flatten layers to transform an array similar to a picture right into a vector.

The preprocessing layers in Keras are particularly designed to make use of in early levels in a neural community. We are able to use them for picture preprocessing, similar to to resize or rotate the picture or to regulate the brightness and distinction. Whereas the preprocessing layers are presupposed to be half of a bigger neural community, we are able to additionally use them as features. Under is how we are able to use the resizing layer as a operate to rework some pictures and show them side-by-side with the unique:

Our pictures are in 256×256 pixels and the resizing layer will make them into 256×128 pixels. The output of the above code is as follows:

For the reason that resizing layer is a operate itself, we are able to chain them to the dataset itself. For instance,

The dataset ds has samples within the type of (picture, label). Therefore we created a operate that takes in such tuple and preprocess the picture with the resizing layer. We assigned this operate as an argument for map() within the dataset. Once we draw a pattern from the brand new dataset created with the map() operate, the picture shall be a reworked one.

There are extra preprocessing layers accessible. In beneath, we display some.

As we noticed above, we are able to resize the picture. We are able to additionally randomly enlarge or shrink the peak or width of a picture. Equally, we are able to zoom in or zoom out on a picture. Under is an instance to govern the picture dimension in numerous methods for a most of 30% enhance or lower:

This code reveals pictures as follows:

Whereas we specified a hard and fast dimension in resize, we now have a random quantity of manipulation in different augmentations.

We are able to additionally do flipping, rotation, cropping, and geometric translation utilizing preprocessing layers:

This code reveals the next pictures:

And at last, we are able to do augmentations on coloration changes as properly:

This reveals the pictures as follows:

For completeness, beneath is the code to show the results of numerous augmentations:

Lastly, you will need to level out that almost all neural community mannequin can work higher if the enter pictures are scaled. Whereas we normally use 8-bit unsigned integer for the pixel values in a picture (e.g., for show utilizing imshow() as above), neural community prefers the pixel values to be between 0 and 1, or between -1 and +1. This may be finished with a preprocessing layers, too. Under is how we are able to replace certainly one of our instance above so as to add the scaling layer into the augmentation:

Utilizing tf.picture API for Augmentation

Apart from the preprocessing layer, the tf.picture module additionally offered some features for augmentation. Not like the preprocessing layer, these features are meant for use in a user-defined operate and assigned to a dataset utilizing map() as we noticed above.

The features offered by tf.picture usually are not duplicates of the preprocessing layers, though there are some overlap. Under is an instance of utilizing the tf.picture features to resize and crop pictures:

Under is the output of the above code:

Whereas the show of pictures match what we’d anticipate from the code, the usage of tf.picture features is sort of totally different from that of the preprocessing layers. Each tf.picture operate is totally different. Subsequently, we are able to see the crop_to_bounding_box() operate takes pixel coordinates however the central_crop() operate assumes a fraction ratio as argument.

These features are additionally totally different in the best way randomness is dealt with. A few of these operate doesn’t assume random conduct. Subsequently, the random resize ought to have the precise output dimension generated utilizing a random quantity generator individually earlier than calling the resize operate. Another operate, similar to stateless_random_crop(), can do augmentation randomly however a pair of random seed in int32 must be specified explicitly.

To proceed the instance, there are the features for flipping a picture and extracting the Sobel edges:

which reveals the next:

And the next are the features to govern the brightness, distinction, and colours:

This code reveals the next:

Under is the whole code to show the entire above:

These augmentation features must be sufficient for many use. However when you’ve got some particular concept on augmentation, most likely you would want a greater picture processing library. OpenCV and Pillow are frequent however highly effective libraries that means that you can rework pictures higher.

Utilizing Preprocessing Layers in Neural Networks

We used the Keras preprocessing layers as features within the examples above. However they will also be used as layers in a neural community. It’s trivial to make use of. Under is an instance on how we are able to incorporate a preprocessing layer right into a classification community and practice it utilizing a dataset:

Operating this code provides the next output:

Within the code above, we created the dataset with cache() and prefetch(). This can be a efficiency method to permit the dataset to arrange knowledge asynchronously whereas the neural community is educated. This is able to be vital if the dataset has another augmentation assigned utilizing the map() operate.

You will note some enchancment in accuracy in the event you eliminated the RandomFlip and RandomRotation layers since you make the issue simpler. Nonetheless, as we would like the community to foretell properly on a large variations of picture high quality and properties, utilizing augmentation may also help our ensuing community extra highly effective.

Additional Studying

Under are documentations from TensorFlow which are associated to the examples above:

Abstract

On this submit, you could have seen how we are able to use the tf.knowledge dataset with picture augmentation features from Keras and TensorFlow.

Particularly, you discovered:

  • The way to use the preprocessing layers from Keras, each as a operate and as a part of a neural community
  • The way to create your individual picture augmentation operate and apply it to the dataset utilizing the map() operate
  • The way to use the features offered by the tf.picture module for picture augmentation

Develop Deep Studying Tasks with Python!

Deep Learning with Python

 What If You May Develop A Community in Minutes

…with only a few traces of Python

Uncover how in my new E book:

Deep Studying With Python

It covers end-to-end tasks on matters like:

Multilayer Perceptrons, Convolutional Nets and Recurrent Neural Nets, and extra…

Lastly Convey Deep Studying To

Your Personal Tasks

Skip the Teachers. Simply Outcomes.

See What’s Inside

[ad_2]

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments