Next Article in Journal
Laser Therapy in the Treatment of Peri-Implantitis: State-of-the-Art, Literature Review and Meta-Analysis
Next Article in Special Issue
Underwater Image Mosaic Algorithm Based on Improved Image Registration
Previous Article in Journal
Experimental Validation of a Thermo-Electric Model of the Photovoltaic Module under Outdoor Conditions
Previous Article in Special Issue
Processing of EMG Signals with High Impact of Power Line and Cardiac Interferences
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Fractional Order Processing of Satellite Images

by
Manuel Henriques
1,†,
Duarte Valério
1,† and
Rui Melicio
1,2,*,†
1
IDMEC, Instituto Superior Técnico, Universidade de Lisboa, Av. Rovisco Pais, 1049-001 Lisboa, Portugal
2
ICT, Escola de Ciências e Tecnologia, Universidade de Évora, Rua Romão Ramalho 59, 7000-671 Évora, Portugal
*
Author to whom correspondence should be addressed.
These authors contributed equally to this work.
Submission received: 11 May 2021 / Revised: 31 May 2021 / Accepted: 1 June 2021 / Published: 7 June 2021
(This article belongs to the Special Issue Novel Advances of Image and Signal Processing)

Abstract

:
Nowadays, satellite images are used in many applications, and their automatic processing is vital. Conventional integer grey-scale edge detection algorithms are often used for this. This study shows that the use of color-based, fractional order edge detection may enhance the results obtained using conventional techniques in satellite images. It also shows that it is possible to find a fixed set of parameters, allowing automatic detection while maintaining high performance.

1. Introduction

1.1. Objective and Contribution

Image processing has always been an essential tool in remote sensing. Processed images taken by satellites allow extracting relevant information in fields like land monitoring, routine mapping and surveillance [1].
Edge detection represents an important role in remote sensing. The conventional edge detectors are based on integer derivatives. With the introduction of fractional calculus, some new non-integer edge detectors were created and the existent integer ones adapted [2].
The aforementioned detectors were developed for grey-scale images. Since colored images are often available, a simple solution is to convert them to grey-scale, but this may compromise the performance of edge detection and discards potentially relevant information. Thus, color-based edge detection detectors were created [3,4].
Algorithms for edge detection methods often involve first or second order derivatives, which can be generalised using a fractional order derivative instead [5]. The goal of this paper is to apply fractional edge detection to satellite images, verifying how appropriate these algorithms are for the job. To assess this, results obtained with fractional order algorithms applied to color images are compared with those of conventional integer order algorithms, for both color and grey-scale images. Another important point to assess performance is whether or not it is possible to use fixed parameters to treat all the images. Experiences with medical images, for which optimal parameters have very disparate values, and are hardly predictable in advance, suggest that this may be an issue [6]. So the contribution of this paper is to show that fractional derivatives achieve good results in image treatment of satellite images with parameters automatically set.

1.2. Previous Work on Fractional Image Processing

Fractional derivatives, defined below in Section 2.2, are studied in depth in [7,8,9]. Their application to image processing began in 2002 with the CRONE method [10]. Since then, a few already extant image treatment methods have been adapted to include fractional derivatives (instead of usual, integer order derivatives), such as the fractional Roberts operator [11], the fractional Sobel method [12,13], the fractional Canny method [6], or the fractional Laplacian of Gaussian method [14]. These methods will be addressed below in Section 2 and details can be found in [5].
Fractional derivatives can be used in image treatment for purposes other than edge detection, such as denoising, encription, or compression [2]. One of the most frequent applications is to medical imaging [15,16], in which difficulties in parameter tuning were felt [6], as already mentioned.
A state of the art of satellite image processing falls outside the scope of this paper; reviews covering not only edge detection but also segmentation and classification can be found in [17,18].

1.3. Satellite Image Data

In this paper, forty-three random images with low nebulosity from ESA’s Sentinel-2 satellite [19] were used. The images retrieved from the website were analysed and a ground truth was manually taken using GIMP. The satellite images database, as well as the detailed extended results of this study, are available in an online repository [20].
Due to space reasons, from the forty three figures, four were chosen to illustrate performance in this paper. The selected images are numbers 12, 18, 27 and 38. These pictures were selected since they present different levels of global performance due to their heterogeneity and are shown in Figure 1, Figure 2, Figure 3 and Figure 4 together with their corresponding ground truth.

1.4. Paper Organisation

This paper is organised as follows. Section 2 explains the theoretical formulations for the edge detectors tested. Section 3 presents performance metrics and results. Conclusions are drawn in Section 4.

2. Definitions and Formulations

This section presents and compares the image treatment algorithms.

2.1. Main Algorithm Description

A main script was developed where the different edge detectors were introduced:
  • The image to be processed is read.
  • A pre-processing step is performed where the figure is scanned for blue color pixels. A mask is formed attributing value zero to all blue pixels found. This mask is later used in post-processing (Figure 5), both for the case of grey-scale detection operators, and the case of color detection operators.
  • One of the edge detection operators described in the next subsection is applied to the image. If the operator is to be applied to a grey-scale image, it must be converted first; Figure 6 shows the case when the image is converted to grey-scale for comparison purposes.
  • After contour detection it is necessary to close the contours, so that in the end segmentation of land and water is evident. For that, several closing morphological operations are performed.
  • Firstly, using lines in 0 , 45 , 90 and 135 directions a closing operation is carried out in order to close pixel gaps between nearby edges that the detector did not encounter.
  • Next, in order to fill the parts of land that were not yet detected by the operator and the closing operations, a MATLAB built-in function is used (imfill).
  • The blue mask obtained in the pre-processing is then applied to the result of the previous operations. As one can see in Figure 6, after the edge detection there is still a lot of noise in the water. The blue mask serves as a filter that eliminates this noise and guarantees better performance in segmentation.
  • One last closing operation is performed. This is due to the fact that sometimes the color filter identifies small areas of land as blue. Using this closing operation, these small areas are set to white and are correctly identified. This step finalizes the processing part of the algorithm. An example of a processed image is shown in Figure 7.
  • After post-processing, performance analysis is done. For this, the ground truth jpg image is read and converted to a logical array. Then, by comparison between the resultant processed image and the ground truth, four metrics of performance are computed. The results of this analysis are stored in an array and are ready for analysis.

2.2. Edge Detection Operators

All the edge detection operators used in the algorithm above make use of the Grünwald-Letnikoff definition of fractional derivative:
c D t α f ( t ) = lim h 0 h α k = 0 N ( 1 ) k α k f ( t k h ) , N = t c h , t > c
where combinations of a things, b at a time, are given by [21]
a b = Γ ( a + 1 ) Γ ( b + 1 ) Γ ( a b + 1 ) , if a , b , a - b Z ( 1 ) b Γ ( b a ) Γ ( b + 1 ) Γ ( a ) , if a Z b Z 0 + 0 , if b Z b a N a Z a , b Z | a | > | b |
The operators employed were the following. They are further detailed in [5].
  • Canny Edge Detector. In this popular edge detection algorithm [22], the image is first convolved with a Gaussian Filter, and then a derivative operator is applied to the smoothed image to compute gradients. This is done determining the first partial derivatives of the smoothed image in both the x and y directions for each color channel, defining the following Jacobian [3]:
    J = R x R y G x G y B x B y = C x , C y
    The direction in the image along which the largest variation in the chromatic image function occurs is represented by the eigenvector of J T J corresponding to the largest eigenvalue.
    J T J = J x J x y J y x J y
    λ = J y + J x ± ( J y + J x ) 2 4 ( J x J y J x y 2 ) 2
  • Sobel Edge Detector. The integer Sobel operator performs a derivative operation on an image and so it highlights regions where there are sudden increases of pixel intensity which correspond to edges, and consists of the two masks [23]
    1 0 1 2 0 2 1 0 1 1 2 1 0 0 0 1 2 1
    The fractional Sobel operator given in [13] has the mask
    α ( α + 1 ) ( α + 2 ) 12 α ( α + 1 ) ( α + 2 ) 6 α ( α + 1 ) ( α + 2 ) 12 α ( α + 1 ) 4 α ( α + 1 ) 2 α ( α + 1 ) 4 α 2 α ( α + 1 ) ( α + 2 ) 12 α α ( α + 1 ) ( α + 2 ) 6 α 2 α ( α + 1 ) ( α + 2 ) 12 1 2 α ( α + 1 ) 4 1 α ( α + 1 ) 2 1 2 α ( α + 1 ) 4 α 2 α α 2 1 2 1 1 2
    A novel color-based fractional Sobel was implemented by applying the same algorithm of the Canny deterctor, with the mask in (7).
  • Roberts Edge Detector. The integer Roberts operator [24] consists of a pair of 2 × 2 masks [23]:
    1 0 0 1 0 1 1 0
    The fractional Roberts detector presented in [11] and based on the truncated coefficients of the GL definition applies derivatives of arbitrary order α :
    α 2 α + 2 2 α 2 α + 2 2 α 2 α + 2 2 α 2 α + 2 2 8 α α 2 α + 2 2 α 2 α + 2 2 α 2 α + 2 2 α 2 α + 2 2
    This mask is applied after the convolution of an image with the conventional integer Sobel. A color-based version of this detector was developed using the same approach as the Sobel algorithm. Since the fractional operator requires two convolutions, the color-based computations were applied only to the first one with the integer mask. After this, the result is convolved with (9).
  • Laplacian of Gaussian (LoG) Detector. Three possible Laplacian operators are
    0 1 0 1 4 1 0 1 0 1 1 1 1 8 1 1 1 1 1 2 1 2 4 2 1 2 1
    To tackle the sensitivity of second order derivatives to noise, in the LoG the image is Gaussian smoothed before applying the Laplacian filter reducing high frequency noise. The smoothing filter can also be convolved first with the Laplacian kernel and only then is the result convolved with the input image. In the fractional case [14],
    0 0 ( 1 ) κ C K 1 α 0 0 0 α α 2 / 2 0 ( 1 ) κ C K 1 α α α 2 / 2 2 α 1 0 0 1 0
    For color images [25], a pixel is considered as part of an edge if zero-crossings are found in any of the color channels. Using this definition, an algorithm that detects edges in color images was developed. The algorithm convolves each channel of the input color image with the LoG mask in (11). Then, a search for zero-crossings in the results for each channel is performed. If any zero-crossings are found, the corresponding pixels are flagged as part of an edge.
  • CRONE. The CRONE operator [10] uses the coefficients of (1):
    a k = ( 1 ) k n k = ( 1 ) k n ( n 1 ) ( n k + 1 ) k !
    In order to detect edges on images, the formulated detector can be used in two dimensions with mask
    + a m + a 1 0 a 1 a m
    and its transpose. Color is handled as for the Canny operator.
  • Fractional Derivative Operator. Fractional mask (9) from the Roberts operator was used in this paper by itself as a fractional edge detector. For color images, the Jacobian is reduced to a vector
    J = R G B
    and the magnitude of the gradients is given by
    f = R 2 + G 2 + B 2

3. Results

In this section, the overall relevant results of the iterations with different parameters will be presented, and illustrated with the four images shown in Section 1.3. Again, the results for all the forty-three images in the database are available in repository [20].

3.1. Performance Assessment

In order to check performance, quantification has to be made. For that, the ground truth is compared to the output of the algorithm by scanning all pixels within the image. Four instances may occur: True Positives, False Positives, True Negatives and False Negatives (Table 1).
Using the number of occurrences of each instance the following metrics were computed:
J ( A , B ) = T P F P + T P + F N
D S C = 2 × T P 2 × T P + F P + F N
Sensitivity = T P T P + F N
Specificity = T N F P + T N
During the study it was concluded that the Jaccard coefficient (J) is a good overall performance metric since the results with the highest J corresponded to the ones with maximum mean performance regarding the four metrics. Thus, the Jaccard coefficient is used as overall performance indicator.

3.2. Performance Analysis of Fractional vs. Integer Edge Detection

The first step of performance analysis is to understand, in each edge detection algorithm, if its fractional order based adaptation outperforms the conventional integer version. Therefore, all the algorithms formulated in Section 2 were tested. The performance was evaluated for all 43 images in the database, converted for simplicity purposes to grey-scale, and using the metrics introduced in Section 3.1. The best performances of the different detectors for the selected images are presented in Figure 8, Figure 9, Figure 10, Figure 11, Figure 12, Figure 13, Figure 14, Figure 15, Figure 16, Figure 17, Figure 18, Figure 19, Figure 20, Figure 21, Figure 22 and Figure 23 and Table 2, Table 3, Table 4 and Table 5.

3.3. Grey-Scale Edge Detectors vs. Color Based Edge Detectors

As explained before, color edge detection algorithms were implemented and tested with the whole data set due to their good results in other applications. All the six methods were adapted and applied in the main algorithm in order to perform color-based edge detection. The best results of the performance assessment for these versions of the algorithms are presented above and are compared with the corresponding best grey-scale result, using index Δ J :
Δ J = J Color J Grey scale
The results of this comparison are presented under the form of histograms (in semilogarithmic plots) for each detector in Figure 24.

3.4. Overall Performance with Varying Parameters

To analyse the overall performance of detectors, the mean Jaccard of the best results for each edge detection operator (for all images in the data set) was computed. The results are shown in Table 6 and Figure 25.

3.5. Overall Performance with Fixed Parameters

One crucial objective of this work is to assess if it is possible to find and easily tune parameters, in an automatic way, without loosing performance. A search for optimal fixed parameters was conducted sorting performance results using fixed parameters for all the images in the data set. Table 7 and Figure 26 present the best fixed parameters results for each detector; they are discussed in the next section.

4. Discussion and Conclusions

In this paper, an automatic coasts edge detection tool using five state-of-the-art edge detection versions and seven novel detector versions was presented. The conventional integer versions of the algorithms were also tested and compared to fractional solutions.
Forty-three high definition (10,980p × 10,980p) satellite images were tested using the different versions of the operators in a wide range of parameters.
The grey-scale Fractional Derivatives operator was the detector that provided the best average scores regarding all figures, with varying parameters. The mean Jaccard coefficient for this operator was 0.9623, i.e. the algorithm identified correctly in average 96.23% of the pixels in the input images.
In remote sensing, it is important not only that the algorithm can reach high efficiency but also that the parameters required are possible to implement for an automatic solution. Despite the exceptional performance achieved with varying parameters, this Jaccard coefficient is only possible using a great spread of parameters impossible to reach in automatic solutions. Thus, the search for a solution with fixed parameters was conducted. In this case, the color-based Fractional Derivatives operator was the method that provided the best average scores regarding all figures in the data set, with a Jaccard metric of 0.9436. The result obtained sets a fixed-parameter solution that allows automatic detection of coasts with a decrease in performance compared to the aforementioned varying-parameters of less than 2%.
Further analyzing overall performance Table 6 and Table 7, as well as the performance data in [20], one may draw a few more conclusions. The usage of fractional derivatives in edge detection for this application matched or improved, in most cases, the performance of the conventional integer methods, which is not surprising since more information is available to be used. The color based algorithms allowed to equal or improve the performance of grey-scale methods in most cases. However, often the increase in performance is low in percentage. Nevertheless, and since we are dealing with images that are composed of more than 120 million pixels, a percentage of 1% increase corresponds to more than 1 million pixels correctly identified.
To summarize, in this study a successful automatic tool was developed that identifies and segments coasts in satellite images using both grey-scale and novel color-based fractional edge detectors. Subsequent parameters that allow the automation of this tool were also found.

Author Contributions

M.H.: methodology, software, investigation, data curation, writing – original draft preparation, visualization; D.V.: conceptualization, methodology, validation, investigation, writing – review and editing, supervision; R.M.: conceptualization, methodology, validation, investigation, data curation, writing – review and editing, supervision. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

See [20].

Acknowledgments

This work was supported by FCT, through IDMEC, under LAETA, project UIDB/50022/2020; and by FCT under the ICT (Institute of Earth Sciences) project UIDB/04683/2020. The authors would like to acknowledge ESA, Copernicus for kindly providing access to the database for this research.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. ESA. Sentinel-2. 2020. Available online: https://sentinel.esa.int/web/sentinel/missions/sentinel-2/mission-objectives (accessed on 12 June 2020).
  2. Yang, Q.; Chen, D.; Zhao, T.; Chen, Y. Fractional calculus in image processing: A review. Fract. Calc. Appl. Anal. 2016, 19, 1222–1249. [Google Scholar] [CrossRef] [Green Version]
  3. Kanade, T.; Shafer, S. Image Understanding Research at Carnegie Mellon. In Proceedings of the Workshop on Image Understanding Workshop, December 1989; Morgan Kaufmann Publishers Inc.: San Francisco, CA, USA, 1989; pp. 32–48. [Google Scholar]
  4. Cumani, A. Edge detection in multispectral images. CVGIP Graph. Model. Image Process. 1991, 53, 40–51. [Google Scholar] [CrossRef]
  5. Henriques, M.; Valério, D.; Gordo, P.; Melicio, R. Fractional Order Colour Image Processing. Mathematics 2021, 9, 457. [Google Scholar] [CrossRef]
  6. Bento, T.; Valério, D.; Teodoro, P.; Martins, J. Fractional order image processing of medical images. J. Appl. Nonlinear Dyn. 2017, 6, 181–191. [Google Scholar] [CrossRef]
  7. Valério, D.; Sá da Costa, J. An Introduction to Fractional Control; IET: Stevenage, UK, 2013; ISBN 978-1-84919-545-4. [Google Scholar]
  8. Samko, S.G.; Kilbas, A.A.; Marichev, O.I. Fractional Integrals and Derivatives; Gordon and Breach: Yverdon, Switzerland, 1993. [Google Scholar]
  9. Ortigueira, M.D.; Valério, D. Fractional Signals and Systems; De Gruyter: Berlin, Germany, 2020. [Google Scholar]
  10. Mathieu, B.; Melchior, P.; Oustaloup, A.; Ceyral, C. Fractional differentiation for edge detection. Signal Process. 2003, 83, 2421–2432. [Google Scholar] [CrossRef]
  11. Chen, X.; Fei, X. Improving Edge-Detection Algorithm Based on Fractional Differential Approach; IPCSIT: Singapore, 2012; Volume 50, Available online: http://www.ipcsit.com/vol50/048-ICIVC2012-S0064.pdf (accessed on 4 June 2021).
  12. Tian, D.; Wu, J.; Yang, Y. A fractional-order edge detection operator for medical image structure feature extraction. In Proceedings of the 26th Chinese Control and Decision Conference, CCDC, Changsha, China, 31 May–2 June 2014. [Google Scholar] [CrossRef]
  13. Yaacoub, C.; Zeid Daou, R.A. Fractional Order Sobel Edge Detector. In Proceedings of the 2019 Ninth International Conference on Image Processing Theory, Tools and Applications (IPTA), Istanbul, Turkey, 6–9 November 2019; pp. 1–5. [Google Scholar] [CrossRef]
  14. Tian, D.; Wu, J.; Yang, Y. A Fractional-Order Laplacian Operator for Image Edge Detection. Appl. Mech. Mater. 2014, 536–537, 55–58. [Google Scholar] [CrossRef]
  15. Sohail, A.; Bég, O.A.; Li, Z.; Celik, S. Physics of fractional imaging in biomedicine. Prog. Biophys. Mol. Biol. 2018, 140, 13–20. [Google Scholar] [CrossRef] [PubMed]
  16. Yu, Q.; Vegh, V.; Liu, F.; Turner, I. A Variable Order Fractional Differential-Based Texture Enhancement Algorithm with Application in Medical Imaging. PLoS ONE 2015, 10, e0132952. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  17. Babbar, J.; Rathee, N. Satellite Image Analysis: A Review. In Proceedings of the IEEE International Conference on Electronics, Communication and Computing Technologies (ICECCT), Coimbatore, India, 20–22 February 2019. [Google Scholar] [CrossRef]
  18. Dshmukh, K.; Badole, M. A Review Article of Satellite Image Different Type Approach. Int. J. Sci. Res. 2017, 6, 941–944. [Google Scholar]
  19. ESA. Copernicus Open Access Hub. 2020. Available online: https://scihub.copernicus.eu/ (accessed on 31 March 2020).
  20. Henriques, M. Results Repository. 2020. Available online: https://drive.google.com/drive/folders/1GMeKvc3oqNWfzd4h-GyRwHT9yFJ_UDLP?usp=sharing (accessed on 4 June 2021).
  21. Valério, D.; da Costa, J.S. Introduction to single-input, single-output fractional control. IET Control Theory Appl. 2011, 5, 1033–1057. [Google Scholar] [CrossRef]
  22. Canny, J. A computational approach to edge detection. IEEE Trans. Pattern Anal. Mach. Intell. 1986, 679–698. [Google Scholar] [CrossRef]
  23. Fisher, R.; Perkins, S.; Walker, A.; Wolfart, E. Image Processing Learning Resources. 2004. Available online: http://homepages.inf.ed.ac.uk/rbf/HIPR2/hipr_top.htm (accessed on 30 July 2020).
  24. Roberts, L. Machine Perception of 3-D Solids. Ph.D. Thesis, Massachusetts Institute of Technology, Cambridge, MA, USA, 1963. [Google Scholar]
  25. Zhu, S.Y.; Plataniotis, K.N.; Venetsanopoulos, A.N. Comprehensive analysis of edge detection in color image processing. Opt. Eng. 1999, 38, 612–625. [Google Scholar] [CrossRef]
Figure 1. Image number 12 to be evaluated with corresponding ground truth.
Figure 1. Image number 12 to be evaluated with corresponding ground truth.
Applsci 11 05288 g001
Figure 2. Image number 18 to be evaluated with corresponding ground truth.
Figure 2. Image number 18 to be evaluated with corresponding ground truth.
Applsci 11 05288 g002
Figure 3. Image number 27 to be evaluated with corresponding ground truth.
Figure 3. Image number 27 to be evaluated with corresponding ground truth.
Applsci 11 05288 g003
Figure 4. Image number 38 to be evaluated with corresponding ground truth.
Figure 4. Image number 38 to be evaluated with corresponding ground truth.
Applsci 11 05288 g004
Figure 5. Original image and Blue Mask of Coast_D(23).jpg.
Figure 5. Original image and Blue Mask of Coast_D(23).jpg.
Applsci 11 05288 g005
Figure 6. Output of an edge detection operation.
Figure 6. Output of an edge detection operation.
Applsci 11 05288 g006
Figure 7. Totally Processed Image.
Figure 7. Totally Processed Image.
Applsci 11 05288 g007
Figure 8. Best results for image 12 processed using Canny algorithms.
Figure 8. Best results for image 12 processed using Canny algorithms.
Applsci 11 05288 g008
Figure 9. Best results for image 12 processed using Sobel algorithms.
Figure 9. Best results for image 12 processed using Sobel algorithms.
Applsci 11 05288 g009
Figure 10. Best results for image 12 processed using Roberts algorithms.
Figure 10. Best results for image 12 processed using Roberts algorithms.
Applsci 11 05288 g010
Figure 11. Best results for image 12 processed using LoG algorithms.
Figure 11. Best results for image 12 processed using LoG algorithms.
Applsci 11 05288 g011
Figure 12. Best results for image 18 processed using Canny algorithms.
Figure 12. Best results for image 18 processed using Canny algorithms.
Applsci 11 05288 g012
Figure 13. Best results for image 18 processed using Sobel algorithms.
Figure 13. Best results for image 18 processed using Sobel algorithms.
Applsci 11 05288 g013
Figure 14. Best results for image 18 processed using Roberts algorithms.
Figure 14. Best results for image 18 processed using Roberts algorithms.
Applsci 11 05288 g014
Figure 15. Best results for image 18 processed using LoG algorithms.
Figure 15. Best results for image 18 processed using LoG algorithms.
Applsci 11 05288 g015
Figure 16. Best results for image 27 processed using Canny algorithms.
Figure 16. Best results for image 27 processed using Canny algorithms.
Applsci 11 05288 g016
Figure 17. Best results for image 27 processed using Sobel algorithms.
Figure 17. Best results for image 27 processed using Sobel algorithms.
Applsci 11 05288 g017
Figure 18. Best results for image 27 processed using Roberts algorithms.
Figure 18. Best results for image 27 processed using Roberts algorithms.
Applsci 11 05288 g018
Figure 19. Best results for image 27 processed using LoG algorithms.
Figure 19. Best results for image 27 processed using LoG algorithms.
Applsci 11 05288 g019
Figure 20. Best results for image 38 processed using Canny algorithms.
Figure 20. Best results for image 38 processed using Canny algorithms.
Applsci 11 05288 g020
Figure 21. Best results for image 38 processed using Sobel algorithms.
Figure 21. Best results for image 38 processed using Sobel algorithms.
Applsci 11 05288 g021
Figure 22. Best results for image 38 processed using Roberts algorithms.
Figure 22. Best results for image 38 processed using Roberts algorithms.
Applsci 11 05288 g022
Figure 23. Best results for image 38 processed using LoG algorithms.
Figure 23. Best results for image 38 processed using LoG algorithms.
Applsci 11 05288 g023
Figure 24. Analysis of performance comparison between grey-scale and color based detectors.
Figure 24. Analysis of performance comparison between grey-scale and color based detectors.
Applsci 11 05288 g024
Figure 25. Bar chart with best results average for all images (Varying parameters).
Figure 25. Bar chart with best results average for all images (Varying parameters).
Applsci 11 05288 g025
Figure 26. Bar chart with best results average for all images (Fixed parameters).
Figure 26. Bar chart with best results average for all images (Fixed parameters).
Applsci 11 05288 g026
Table 1. Performance Instances.
Table 1. Performance Instances.
Processed Image
01
Ground Truth 0TNFP
1FNTP
Table 2. Best performance results using Grey-Scale detectors on image 12.
Table 2. Best performance results using Grey-Scale detectors on image 12.
Método σ Threshold α JDSensitivitySpecificity
Integer Canny2.0--0.86850.92960.99600.9758
Fractional Canny1.4-2.20.88850.94100.99450.9804
Integer Sobel-0.1-0.50430.67050.51040.9758
Fractional Sobel-0.90.70.56200.71960.99990.8717
Integer Roberts-0.1-0.44400.61490.44860.9983
Fractional Roberts-0.10.80.92450.96080.95950.9938
Integer LoG-0.01-0.57370.72910.58200.9976
Fractional LoG-0.3 2.0 0.94800.97330.97180.9959
Table 3. Best performance results using Grey-Scale detectors on image 18.
Table 3. Best performance results using Grey-Scale detectors on image 18.
Método σ Threshold α JDSensitivitySpecificity
Integer Canny1.6--0.65980.79500.67670.9914
Fractional Canny1.8- 0.1 0.66000.79520.67410.9928
Integer Sobel-0.1-0.14190.24860.14450.9940
Fractional Sobel-0.90.60.66000.79520.67410.9928
Integer Roberts-0.1-0.15890.27420.16190.9934
Fractional Roberts-0.1 0.3 0.65880.79430.67710.9907
Integer LoG-0.01-0.10510.19020.10650.9957
Fractional LoG-0.33.00.65940.79480.67710.9910
Table 4. Best performance results using Grey-Scale detectors on image 27.
Table 4. Best performance results using Grey-Scale detectors on image 27.
Método σ Threshold α JDSensitivitySpecificity
Integer Canny0.8--0.99520.99760.99860.9932
Fractional Canny0.6-2.60.99560.99780.99840.9943
Integer Sobel-0.8-0.99520.99760.99860.9932
Fractional Sobel-0.91.40.99480.99740.99870.9919
Integer Roberts-0.1-0.86140.92550.86180.9990
Fractional Roberts-0.12.40.99520.99760.99810.9940
Integer LoG-0.01-0.83210.90840.83260.9988
Fractional LoG-0.1 1.2 0.99570.99780.99820.9950
Table 5. Best performance results using Grey-Scale detectors on image 38.
Table 5. Best performance results using Grey-Scale detectors on image 38.
Methodk σ Threshold α JDSensitivitySpecificity
Integer Canny-0.2--0.51800.68250.53650.7167
Fractional Canny-0.6-2.40.73560.84770.76000.7359
Integer Sobel--0.1-0.07680.14270.07750.9271
Fractional Sobel--0.90.50.96000.97960.99970.6710
Integer Roberts--0.1-0.06180.11630.06220.9451
Fractional Roberts--0.1 1.7 0.96130.98030.99900.6877
Integer LoG--0.01-0.08870.16300.08980.9076
Fractional LoG--0.11.80.96370.98150.99940.7046
CRONE2--30.96120.98020.99950.6818
Fract. Deriv. Mask--0.92.30.96250.98090.99950.6936
Table 6. Ranking of the best results average for all images.
Table 6. Ranking of the best results average for all images.
Detector J ¯
Fractional Derivative Op.0.9623
Color Fractional Derivative Op.0.9596
Color Laplacian of Gaussian0.9554
Color Roberts0.9537
Laplacian of Gaussian0.9531
Color Sobel0.9478
Roberts0.9474
Color CRONE0.9461
Color Canny0.9448
CRONE0.9447
Canny0.9342
Sobel0.9282
Table 7. Full volume analysis of best results with fixed parameters for all detectors.
Table 7. Full volume analysis of best results with fixed parameters for all detectors.
Detector Threshold k σ α J ¯
Color Fractional Derivative Op.0.9--0.80.9436
Fractional Derivative Op.0.7--0.80.9428
Color CRONE-5-0.90.9328
CRONE-5-1.10.9261
Color Canny--0.71.70.9193
Color Roberts0.1--1.40.9174
Color Sobel0.3--−0.20.9153
Sobel0.9--0.20.9111
Color Laplacian of Gaussian0.1--−0.90.9108
Roberts0.1--−1.30.9076
Laplacian of Gaussian0.1--−1.40.9028
Canny--0.600.9011
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Henriques, M.; Valério, D.; Melicio, R. Fractional Order Processing of Satellite Images. Appl. Sci. 2021, 11, 5288. https://0-doi-org.brum.beds.ac.uk/10.3390/app11115288

AMA Style

Henriques M, Valério D, Melicio R. Fractional Order Processing of Satellite Images. Applied Sciences. 2021; 11(11):5288. https://0-doi-org.brum.beds.ac.uk/10.3390/app11115288

Chicago/Turabian Style

Henriques, Manuel, Duarte Valério, and Rui Melicio. 2021. "Fractional Order Processing of Satellite Images" Applied Sciences 11, no. 11: 5288. https://0-doi-org.brum.beds.ac.uk/10.3390/app11115288

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop