1. Introduction
Image analysis, also known as “computer vision” or image recognition, is the ability of computers to recognize attributes within an image.
Most computer vision techniques are inspired by human vision perception models. The techniques of processing and analysing images using computers, which have improved over the years, however still remain challenging.
The success of most of these techniques is dependent on the quality of the input images. Normally, there is a need to pre-process the input images in order to improve the quality.
Pre-processing can include noise removal, geometric correction, edges, and contrast enhancement. This is the equivalent of data cleansing/cleaning in data science. Image processing and analysis tasks include basic manipulations such as cropping, flipping, and rotating, and more complex operations such as image segmentation, classification, feature extraction, and image recognition.
Computers “see” images as arrays of pixels. Each pixel is represented by a 1 by 3 array containing numbers that indicate the RBG profile of that pixel.
2. Types of Image Processing and Uses
a. Image Segmentation
These are processing techniques that involve partitioning an image into multiple segments. That way, we can keep only the important segments for processing and analysis. It is very useful in identifying the boundaries and contours of objects of interest in the images.
One use of image segmentation includes determination of the severity of cancer, this is based on the shape of the cancerous cells.
Fig 1 illustrates how image segmentation is used to identify cancerous cells by highlighting their boundaries and revealing their shape.

Other uses of segmentation include aerial and satellite image interpretations, self-driving vehicles, and fingerprint/face/iris recognition.
b. Image Recognition
These are image processing techniques that involve the identification of objects or features in an image.
Image recognition is often used in conjunction with object detection. Image recognition identifies which object is in an image, whereas object recognition identifies the location of these objects in an image.
Image recognition is widely used for quality control in the production industry, as it can be used to inspect high volumes of products in a production line.
Fig 2 below illustrates how it can be used to check the quality of products on the production line at high speeds and with high accuracy.

Other uses of image recognition include medical or biological image processing (e.g. interpretation of X-ray images, blood/cellular microscope images) and security surveillance.
It has become so important that researchers estimate that the global market of image recognition is around $38.92 billion.
c. Feature Extractions
Feature extraction describes the process of extracting relevant shape information contained in the image so that the classification of the image is made easier.
In image processing, a feature extraction is a special form of dimension reduction where the primary objective is to obtain only the most relevant information from the original image and represent that information in a lower dimensionality space.
A good set of features will contain relevant information from the input data in order to perform the desired image classification. This is applied in several fields such as character recognition, document verification, extracting information from cheques, postal address reading, and script recognition.
d. Image Classification
Image classification refers to the labeling of images into one of a number of predefined classes.
The applications include automated image organization. For example, Google Photos uses this technique to recognize faces and categorize them so that you can view all your photos of a particular person.
Image classification has become so advanced that it can be used to identify faces within photos to determine sentiment, gender, age, and more. It can recognize multiple elements within a photo at the same time, including logos, faces, activities, objects, and scenes. Captions can be automatically generated to describe the image.
Image classification highly depends on other image processing techniques in order to work. Firstly, image pre-processing needs to be done to improve image quality, and secondly, image segmentation and object detection needs to occur to identify the object and its position. This is followed by feature extraction as the features provide the classification rules. Finally, image classification can be done. This can be supervised or unsupervised and requires the use of machine learning algorithms.


