Open In App

Introduction to Convolutions using Python

Last Updated : 14 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Convolutions are one of the key features behind Convolutional Neural Networks. For the details of working of CNNs, refer to Introduction to Convolution Neural Network. Feature Learning Feature Engineering or Feature Extraction is the process of extracting useful patterns from input data that will help the prediction model to understand better the real nature of the problem. A good feature learning will present patterns in a way that increase significantly the accuracy and performance of the applied machine learning algorithms in a way that would be impossible or too expensive by the machine learning itself. Feature learning algorithms find the common patterns that are important to distinguish between the wanted classes and extract them automatically. 

After this process, they are ready to be used in a classification or regression problem. Let us consider a popular image classification problem, classification of images of a face and a non-face object. In the early days of computer vision, scientists tried to solve the problem by hand coding the detection algorithms of possible features of a human face like shape, eyes, nose, lips etc. This approach usually gave poor results because a face may appear in so many varieties, that it was not possible to account for even a significant fraction of the features. Just a simple change in lighting or orientation can bring about change in an image such that the algorithms were no longer able to detect faces. In 1998, Yann Lecun introduced the concept of Convolutional Neural Networks which was capable of classifying images of handwritten characters with about 99% accuracy. 

The great advantage of Convolutional Neural Networks is that they are uncommonly good at finding features in images that grow after each level, resulting in high-level features in the end. The final layers (can be one or more) use all these generated features for classification or regression. Convolution Convolution is an operation that is performed on an image to extract features from it applying a smaller tensor called a kernel like a sliding window over the image. Depending on the values in the convolutional kernel, we can pick up specific patterns from the image. In the following example, we will demonstrate detection of horizontal and vertical edges in an image using appropriate kernels. 

Convolution is a mathematical operation that is used to combine two functions to form a third function that expresses how the shape of one is modified by the other. In the context of image processing and computer vision, convolutions are used to extract features from images.

In Python, one popular library for image processing and computer vision is OpenCV. OpenCV has the function cv2.filter2D() which can be used to apply a convolution to an image.

Python3




import numpy as np
import matplotlib.pyplot as plt
 
# let img1 be an image with no features
img1 = np.array([np.array([200, 200]), np.array([200, 200])])
img2 = np.array([np.array([200, 200]), np.array([0, 0])])
img3 = np.array([np.array([200, 0]), np.array([200, 0])])
 
kernel_horizontal = np.array([np.array([2, 2]), np.array([-2, -2])])
print(kernel_horizontal, 'is a kernel for detecting horizontal edges')
 
kernel_vertical = np.array([np.array([2, -2]), np.array([2, -2])])
print(kernel_vertical, 'is a kernel for detecting vertical edges')
 
# We will apply the kernels on the images by
# elementwise multiplication followed by summation
def apply_kernel(img, kernel):
    return np.sum(np.multiply(img, kernel))
 
# Visualizing img1
plt.imshow(img1)
plt.axis('off')
plt.title('img1')
plt.show()
 
# Checking for horizontal and vertical features in image1
print('Horizontal edge confidence score:', apply_kernel(img1,
                                            kernel_horizontal))
print('Vertical edge confidence score:', apply_kernel(img1,
                                            kernel_vertical))
 
# Visualizing img2
plt.imshow(img2)
plt.axis('off')
plt.title('img2')
plt.show()
 
# Checking for horizontal and vertical features in image2
print('Horizontal edge confidence score:', apply_kernel(img2,
                                            kernel_horizontal))
print('Vertical edge confidence score:', apply_kernel(img2,
                                            kernel_vertical))
 
# Visualizing img3
plt.imshow(img3)
plt.axis('off')
plt.title('img3')
plt.show()
 
# Checking for horizontal and vertical features in image3
print('Horizontal edge confidence score:', apply_kernel(img3,
                                            kernel_horizontal))
print('Vertical edge confidence score:', apply_kernel(img3,
                                            kernel_vertical))


Output:

[ [ 2 2] [-2 -2] ] is a kernel for detecting horizontal edges [ [ 2 -2] [ 2 -2] ] is a kernel for detecting vertical edges Horizontal edge confidence score: 0 Vertical edge confidence score: 0 Horizontal edge confidence score: 800 Vertical edge confidence score: 0 Horizontal edge confidence score: 0 Vertical edge confidence score: 800

Advantages and Disadvantages:

Advantages of using convolution in image processing and computer vision include:

  • The ability to extract features from images: Convolutions can be used to identify patterns and features in an image, such as edges, corners, and textures. This can be useful for tasks such as object detection, image classification, and image segmentation.
  • Translation invariance: Convolutions are translation invariant, which means that the same feature can be detected regardless of its position in the image. This is important for tasks such as object recognition, where the object may be in different positions in different images.
  • Efficiency: Convolutions can be computed using fast algorithms such as the Fast Fourier Transform (FFT), which makes them efficient to compute even for large images.
  • ability to learn features from data: In CNNs, the convolutional layers learn to extract features from the input data, which makes them useful in tasks such as image classification.

Disadvantages of using convolution in image processing and computer vision include:

  • Limited ability to process large images: Convolutions are limited by the size of the kernel, which means that they are not well-suited for processing very large images.
  • Limited ability to detect non-linear features: Convolutions are linear operations, which means that they are not well-suited for detecting non-linear features in images.
  • High computational cost: Convolutional neural networks have a high computational cost which makes them less efficient to train and run.
  • Overfitting: CNNs are prone to overfitting, especially when the training dataset is small. It is important to use techniques such as regularization to prevent overfitting.

References:

There are several books that provide in-depth coverage of convolution and its applications in image processing and computer vision. Some popular ones include:

  • “Digital Image Processing” by Rafael C. Gonzalez and Richard E. Woods: This book provides a comprehensive introduction to image processing, including a thorough coverage of convolution and its applications.
  • “Computer Vision: Algorithms and Applications” by Richard Szeliski: This book covers a wide range of computer vision topics, including a detailed discussion of convolution and its use in image processing.
  • “Deep Learning for Computer Vision” by Rajalingapuram K. Sundaram: This book provides an in-depth introduction to deep learning for computer vision, including coverage of convolutional neural networks and their applications in image and video analysis.
  • “Hands-On Image Processing with Python” by Sandipan Dey: This book is a practical guide to image processing using Python and its libraries such as OpenCV and scikit-image. It covers a wide range of image processing techniques, including convolution and its applications.
  • “Python Machine Learning” by Sebastian Raschka and Vahid Mirjalili: This book provides a comprehensive introduction to machine learning with Python, including coverage of convolutional neural networks and their use in image and video analysis.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads