Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Image Processing Coursework: Investigating the Impact of Using Image Processing Techniques in Chest X-Ray images for COVID-19 Diagnosis via Deep Learning.

Notifications You must be signed in to change notification settings

brenomfviana/xr-cv19-diagnosis

 
 

Repository files navigation

Investigating the Impact of Using Image Processing Techniques in Chest X-Ray images for COVID-19 Diagnosis via Deep Learning

Authors

Introduction

Since World Health Organization (WHO) recognized COVID-19 as a global threat, several works of different areas about the topic emerged. Regarding abnormalities detection, numerous works try to classify COVID-19 cases from Chest X-Ray images and images of other lung image acquisition methods. Most of these works applied Deep Learning (DL) techniques for predicting COVID-19 and non-COVID-19 cases in the original lung images.

Objective

This work intends to investigate the impact of using image preprocessing techniques on the chest X-ray images in their classification in COVID-19 and non-COVID-19 cases. We believe that such a process may improve the COVID-19 diagnosis performed by the ResNet-50 with the original chest X-ray images. The ResNet-50 version of the ResNet model contains 48 Convolution layers, 1 MaxPool, and 1 Average Pool layer.

Dataset

In this investigation, we are using the COVID-19 Chest X-ray Database from Kaggle (the dataset present in this repository (Dataset) has 40 images, and it is just a small subset of the COVID-19 Chest X-ray Database). Furthermore, it was originally provided by Chowdhury et al. [1] and Rahman et al. [2]. This dataset contains chest X-ray images of healthy people (10,192) and people diagnosed with COVID-19, viral pneumonia (1,345), and lung opacity, i.e., non-COVID-19 lung infection (6,012). All the images are gray-scale in PNG file format (but some of them are represented with RGB channels), and their resolution is 299x299 pixels. The following images present examples of such cases:

1 2
Normal Lung Opacity
3 4
Viral Pneumonia COVID-19

Since this is a preliminary stage of our research, we selected the first 1.000 images of each class from the database to perform our experiments. Therefore, we selected 4.000 images, where 3.000 of them are non-COVID cases, and the remaining are COVID cases.

Methodology

To carry out our investigation, we first perform data augmentation by using the following image processing techniques: noise insertion, rotation, contrast adjustment, and sharpness adjustment. Before the augmentation, we verify if they are represented in a single grayscale channel or RBG images. In the latter case, we perform the luminance method to convert the images into a single grayscale channel.

These image processing methods are implemented in the augmentation.py file. The data augmentation is performed by the script augmentate.py. This script automatizes the data augmentation process by reading all the images from Dataset and creating eight new versions of each original image, two for each processing image technique. We rotate the images in 15 degrees and -15 degrees; we opt for these values to simulate and (maybe) fix some badly positioned chest X-rays. We generated images with two intensities of noise (both means and standard deviations equal to 5 and 10), contrast adjustment (factor equal to 1.1 and 1.2), and sharpness adjustment (intensity equal to 0.1 and 0.3, sigma values equal to 1.5 and 3, and k values equal to 7.5 and 11) for the remaining techniques. We avoid using too high values since, so far, we did not have expert advice.

  • Noise Insertion: consists basically in inserting random pixels in the input image.
  • Contrast Adjustment: comprises the following equation 128 + C * F - C * 128, where F is the input image, C is the contrast level, and the value 128 is the mid-value the [0-255] range.
  • Sharpeness Adjustment: consists in applying the equation F + C * (F - G), where, F is the input image, G is the blurred version of the input image F, and C is the adjustment level.
  • Rotation: We apply the rotation equation to rotate the input image. When we rotate θ angles the point (x1, y1) arround the point (x0, y0) (in our case, the image center) we get the new point (x2, y2).
    • x2 = cos(θ) * (x1 − x0) + sin(θ) * (y1 − y0) calculates the new x position of each pixel.
    • y2 = −sin(θ) * (x1 − x0) + cos(θ) * (y1 − y0) calculates the new y position of each pixel.

After the data augmentation, we used both the original images (from Dataset) and the images generated by the data augmentation techniques (from Augmented) for training the ResNet-50. This network has an input of a 224X224 image with three channels. It goes through 5 stages and has an output of the number of classes. In the case of a network pre-trained with imagenet, the output is more than 20 thousand values. For our application, we adapted the model to only one output with a probability between 0 and 1. Then, every number less than 0.5 is classified as non-COVID, otherwise, it is classified as COVID. In the following section, we describe our experiments and their results.

Results

As we said earlier, we selected 4.000 images (1.000 COVID and 3.000 non-COVID images) for training and testing the ResNet-50. However, to keep in this repository (Dataset), we selected only 28 images of those images.

The results are present in the folder Augmented and in Python file. First, the folder Augmented presents a total of 224 images. All of them are augmented images generated from the Dataset. The following images present some results of the data augmentation process. demo-processing-images.ipynb is a Jupiter Notebook file demonstrating the use of the processing image techniques.

1
Input image
2 2
Noisy image #1 (mean: 5, std: 5) Noisy image #2 (mean: 10, std: 10)
2 2
Image with contrast adjusted #1 (factor: 1.1) Image with contrast adjusted #2 (factor: 1.2)
2 2
Rotated image #1 (angle: 15 degrees) Rotated image #2 (angle: -15 degrees)
2 2
Image with sharpness adjusted #1 (intensity: 0.1, sigma: 1.5, k: 7.5) Image with sharpness adjusted #2 (intensity: 0.3, sigma: 3, k: 11)

Regarding the ResNet-50, we performed the following experiments:

  • Train the CNN with 3.200 original images.
  • Train the CNN with 3.200 original images and 6.400 noisy images (total of 9.600 images).
  • Train the CNN with 3.200 original images and 6.400 images with contrast adjusted (total of 9.600 images).
  • Train the CNN with 3.200 original images and 6.400 images with sharpness adjusted (total of 9.600 images).
  • Train the CNN with 3.200 original images and 6.400 rotated images (total of 9.600 images).

For all these cases, we tested with the remaining 800 original images and 60 epochs. The training resulted in these h5 files.

1
Figure 1

Figure 1 shows the results of balance accuracy, F1-score, precision, and recall by experiment. As we can observe in the image, all but the experiment with sharpness-adjusted images presented the same balanced accuracy. This particular experiment was the only one to outperform in both balanced accuracy and F1-score.

In terms of precision, all the experiments that used the images generated processing techniques beat the experiment with only original images. However, concerning the recall metric, most experiments were worse than the experiment with only original images. The single exception was the experiment with sharpness-adjusted images that tied with the experiment with only original images.

We believe that the augmented images increased the dataset unbalance since there are more non-COVID images than the COVID ones.

Figures 2, 3, 4, 5, and 6 show the probability distributions for each experiment. The values less than 0.5 are the images classified as non-COVID cases, and the ones closer to 1 are the images classified as COVID cases. The blue label is for the COVID images, and the yellow label is for the non-COVID images. As expected, some non-COVID and COVID cases are misclassified. Figure 2 shows that some chest X-ray images have a degree of uncertainty regarding COVID or non-COVID classification (in a range of 0.1 until 0.9). Also, there is a high degree of certainty predicted as false positives or false negatives. As shown in figures 3, 4, 5, and 6, the augmented data reduced the uncertainty of the images; however, it kept some miss predictions.

1
Figure 2
1 2
Figure 3 Figure 4
3 4
Figure 5 Figure 6

Figures 7, 8, 9, 10, and 11 show the confusion matrices for each experiment. In these figures, we can see the four classification cases: True Negatives (line 1 column 1), False positives (line 1 column 2), False negatives (line 2 column 1), True positives (line 2 column 2). These matrices show that all processing image techniques we applied to the chest X-ray images can decrease false negatives. Besides, except for the sharpness adjustment, the techniques can increase the number of false positives.

1
Figure 7
1 2
Figure 8 Figure 9
3 4
Figure 10 Figure 11

Conclusion

This work investigated the impact of using processing images as a data augmentation approach for fine-tuning the ResNet-50. First, we successfully implemented the processing image techniques of noise insertion, rotation, contrast adjustment, and sharpness adjustment. Our experiments showed that all these techniques improved the precision of the COVID classification, although only the sharpness adjustment kept the recall of the training with only original images. Therefore, we conclude that our project was successful within the scope of the processing image course and as a preliminary research investigation.

Future Works

A possible future work is to rerun the experiments with a bigger dataset to verify if the results are similar to ours. We could also run each experiment more than once to observe the impact of the random initialization of the neuron weights. Besides, we could apply the best-found processing image techniques to generate a single image and observe if they improve the model learning.

What We Learned

The dataset presents some irregularities, such as children's lungs only of non-COVID cases, and the X-ray images were collected from different X-ray machines. These irregularities may affect badly the training and, consequently, the quality resulting model.

Deep Learning approaches are very computationally expensive, and we needed a powerful machine to perform our experiments. Fortunately, we did not have a problem finding such a powerful machine. This machine was vital since we ran the first experiment with a gross error in our code, and we had time to rerun the experiment with the fixed code.

Besides, the error was that the path to augmented images was wrong. Therefore, in our first experiment, we trained the ResNet-50 only with the 3.200 original images. Still, the executions presented significantly different results for the same set of images. Then we could conclude that the random parameters may influence a lot of the resulting model. However, this could have occurred due to the small dataset we used (a subset of the original one).

Tasks by Author

  • Breno Maurício de Freitas Viana (11920060)
    • Implementation of noise insertion, rotation, and luminance techniques.
    • Development of the script for automatizing the data augmentation.
  • Felipe Antunes Quirino (12448645)
    • Implementation of contrast and sharpness adjustment techniques.
    • Configuration and development of the CNN model with ResNet-50.

References

[1] M.E.H. Chowdhury, T. Rahman, A. Khandakar, R. Mazhar, M.A. Kadir, Z.B. Mahbub, K.R. Islam, M.S. Khan, A. Iqbal, N. Al-Emadi, M.B.I. Reaz, M. T. Islam, “Can AI help in screening Viral and COVID-19 pneumonia?” IEEE Access, Vol. 8, 2020, pp. 132665 - 132676. Paper DOI: (https://doi.org/10.1109/ACCESS.2020.3010287).

[2] Rahman, T., Khandakar, A., Qiblawey, Y., Tahir, A., Kiranyaz, S., Kashem, S.B.A., Islam, M.T., Maadeed, S.A., Zughaier, S.M., Khan, M.S. and Chowdhury, M.E., 2020. Exploring the Effect of Image Enhancement Techniques on COVID-19 Detection using Chest X-ray Images. Paper DOI: (https://doi.org/10.1016/j.compbiomed.2021.104319).

About

Image Processing Coursework: Investigating the Impact of Using Image Processing Techniques in Chest X-Ray images for COVID-19 Diagnosis via Deep Learning.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 96.8%
  • Python 3.2%