This site uses cookies. By continuing to use this site you agree to our use of cookies. To find out more, see our Privacy and Cookies policy.
Brought to you by:
Article The following article is Open access

Tomography analysis tool: an application for image analysis based on unsupervised machine learning

, , and

Published 24 February 2022 © 2022 The Author(s). Published by IOP Publishing Ltd
, , Citation T Bagni et al 2022 IOPSciNotes 3 015201 DOI 10.1088/2633-1357/ac54bf

2633-1357/3/1/015201

Abstract

We developed a graphical user interface (GUI) to analyse tomographic images of superconducting Nb3Sn wires designed for the next generation accelerator magnets. The Tomography Analysis Tool (TAT) relies on the k-means algorithm, an unsupervised machine learning technique which is widely used to partition images into separated clusters. The GUI is compatible with both Linux and Windows operating systems. The software reliability was tested by optical inspecting the tomographic images superimposed on the clustered image obtained by the k-means algorithm. TAT was proven to correctly segment the various components of the Nb3Sn superconducting wires with single pixel precision. Finally, this software can be a useful tool for the scientific community to segment and analyse quickly and reproducibly tomographic images.

Export citation and abstract BibTeX RIS

Original content from this work may be used under the terms of the Creative Commons Attribution 4.0 licence. Any further distribution of this work must maintain attribution to the author(s) and the title of the work, journal citation and DOI.

Introduction

Nb3Sn is an isotropic intermetallic compound with an A15 crystal structure [1]. Its critical temperature (Tc ) is ∼18 K, and its upper critical field (Bc2 ) can reach ∼30 T at 0 K [2]. These characteristics combined with a high critical current density (Jc ) make Nb3Sn the ideal material for superconducting magnets operating between 10 T and 20 T. Therefore, it is the ideal candidate for the 16 T dipole magnets that CERN is designing for its new proton-proton collider, the so-called Future Circular Collider (FCC) [3].

Nb3Sn-based magnets are prepared following the wind & react approach [4]. Unlike ductile Nb-alloys, Nb3Sn is brittle and strain sensitive intermetallic compound, which cannot be directly drawn in the form of a wire. Instead, ductile precursor components are combined, drawn to form a wire, brought to final shape (e.g. a coil) and then heat treated so that Nb3Sn forms from the precursors in a reactive diffusion process. One of the most promising Nb3Sn technology is the Internal-Tin [5], which consists of ring-like arrays of Nb-alloy filaments inside a Cu matrix with a Sn core inside each of these rings, often called sub-elements. The Cu surrounding the Nb-alloy filaments provides a pathway for a rapid diffusion of the Sn to form the Nb3Sn phase during the reaction heat treatment. Sub-elements are enclosed by a Nb or Ta diffusion barrier to prevent Sn poisoning during the reaction of the Cu matrix embedding the sub-elements, which acts as thermal stabilizer [6, 7].

In addition to the Nb3Sn phase, the reaction heat treatment generates Kirkendall voids [8] in the wire sub-elements that can have a detrimental impact on mechanical performances of the wires [9], see figure 1 3 for an example of Nb3Sn wire cross section. As said, Nb3Sn is a brittle and strain sensitive compound, this imply that it is prone to fracture and its critical current density strongly depends on the mechanical strain applied to the superconducting wire. In magnet design, the action of Lorentz forces generated by high current and high magnetic fields results in mechanical loads which translate into a reduction of the conductor performance [10]. In this context, to further improve Nb3Sn technology and achieve the performance targets in view of the FCC [11], it is necessary to fully understand the impact such voids have on the strain sensitivity of different wire designs. A fundamental step on this path is the 3D reconstruction of the wire geometry, which is necessary to create a Finite Element Models (FEM) at sub-elements level, that would allow further optimization of electro-mechanical properties of Nb3Sn wires. To reach this goal, we developed a tool to characterize completely the internal structure of Nb3Sn wires applying unsupervised machine learning to x-ray micro-tomography [12]. Synchrotron tomography is the perfect technology to study in a non-destructive way the internal features of a dense object, and it was used successfully in the past to study and characterize the voids formation in Internal-Tin Nb3Sn wires [13, 14].

Figure 1.

Figure 1. Cross section of a Nb3Sn wire after the reaction heat treatment. The wire is 0.71 mm in diameter. The sub-elements are surrounded by high purity Cu matrix, and Kirkendal voids are visible inside some of the sub-elements.

Standard image High-resolution image

The Tomography Analysis Tool (TAT) is a Python application that enables a user-friendly post-process of tomographic images based on k-means, i.e. the same unsupervised machine learning used in [12]. TAT exploited k-means to divide the different components of a wire in separate clusters, based on the brightness and colour of the corresponding pixels, and save them as separate images and matrices compatible with other softwares, e.g., MATLAB, Python or ImageJ. K-means is particularly effective when the components are characterized by different pixel colour or brightness. Furthermore, TAT is made to study single images as well as large dataset (∼1000 images) and is compatible with the most common image formats as PNG, JPG and TIFF. Even if the application was developed for analysing Nb3Sn wires, the flexibility of k-means allows to use TAT for every application which requires image clustering.

The paper first discusses the k-means algorithm and TAT workflow. The second part is dedicated to TAT interface, functionality and possible applications.

The tomographic images used as case study for TAT features were acquired at the micro-tomography beamline ID19 of the European Synchrotron Radiation Facility (ESRF), France, with an average beam energy of 89 keV and a resolution 0.7 μm pixel−1.

Methods

k-means

The separation of the various components in an image can be done using the k-means algorithm, an unsupervised classification algorithm developed for clustering [15]. The advantage of unsupervised learning is that it exhibits self-organization and, in the case of k-means, captures patterns as probability densities [16], thus having the capability to operate without training. The intuition behind clustering is to divide a given set of data into a specific number of groups based on patterns or similarities present in the data; in our case the groups (e.g., sub-elements, Cu matrix and voids, see figure 1) are defined based on the pixel brightness in the tomographic image.

The algorithm divides the given set of data into k disjoint clusters matching the number of the chosen groups. The analysis of an image, e.g. one of the slices from a tomography or a SEM picture, can be summarized as follows: in the initial step k-means generates a k number of centres, ck , based on the pixel brightness scale of the picture. The initial centres are arbitrarily generated by the algorithm, while the operator can control the number k of clusters, the number of times the algorithm will run with different initial ck , and the maximum number of iteration per run [17]. For each pixel of the image, the Euclidean distance d, between the centres and the pixel in the brightness scale, p(x, y), is calculated as:

Equation (1)

then, each pixel is assigned to the nearest center based on the calculated distance d. When all pixels have been assigned, new centers are generated using equation (2):

Equation (2)

where nk is the number of observations in the kth cluster [18]. Then, the process is repeated until there are no significant changes in the centers positions.

As a last step the clusters are saved, and the clustered image is generated. More on k-means algorithm can be found in [19]. k-means algorithm was implemented in TAT using the python scikit-learn library [20].

App workflow and verification

The TAT process can be divided into two main stages as shown in the workflow depicted in figure 2. The first part (left side of figure 2) is focused on image clustering, i.e., finding a proper number of clusters by applying the k-means algorithm using equations (1) and (2). The program allows the user to select the input images directory and the output destination directory. The user can select a specific set of images among the uploaded ones and define the k-means parameters. The output images can be readily controlled and evaluated inside the application once the clustering of all the selected images is over (we report an average processing time per image between ∼2–8 s 4 ) and, if necessary, the procedure can be rapidly repeated changing the parameters. All the outputs are automatically saved in the dedicated folder at every iteration.

Figure 2.

Figure 2. TAT workflow, on the left the clustering steps are indicated, while on the right the merging and saving process are listed.

Standard image High-resolution image

In some cases, and especially in the data exploration phase, this part of the program is sufficient already. On the other hand, in case of poor image quality or if some features are not correctly clustered, it can be beneficial to use a number of clusters exceeding the number of the researched features. These clusters can be then combined to increase the final cluster precision. For this purpose, the second functionality of TAT (right side of figure 2), referred as 'merging tool', is designed to merge different clusters together. This option allows to combine different components into a larger cluster whenever is necessary to the image analysis, e.g. to compensate for image aberrations. Completed the initial clustering (part one), the user can select which clusters to merge. After evaluating the result, the user can directly apply the merging to all the processed images, or if not satisfied it is possible to 'undo' the merge and modify the cluster aggregation.

TAT interface

TAT is designed to run both on Windows and on Linux operating systems with an identical GUI. Figure 3 shows the main window of TAT where the user can start the analysis of the tomographic images. Two buttons are dedicated to select the input directory for uploading the images, and the output directory for saving. Once the images are loaded, they can be seen as a small preview in the bottom panel of the interface (see panel 1 of figure 3). The user can choose which images are going to be processed selecting them by using the ticking box. There is a dedicated 'select/deselect all' button to simplify and speed up the image selection process. The user can input the desired number of clusters in which the images will be partitioned using the 'Cluster count' tab (green box). Additionally, we added a 'Run count' tab (red box) in order to define how many clustering attempt the software will run, and a 'Max iterations' tab (blue box) used in case the algorithm fails to converge or if the user wants to extend the number of iterations. Once these values are set the process of generating the clusters can be launched with the 'Generate' button.

Figure 3.

Figure 3. Main window interface of TAT. 'Clear', 'load input directory', 'load output directory' and 'generate' buttons are positioned at the bottom of the GUI. In the same area, the k-means parameters (Cluster counts, Run count and Max iterations) can be set. In panel 1, all the miniatures of the input images are listed. In panel 2, the output image miniatures are listed. In panel 3, the image selected in the miniature panels is shown, in this case the output of 'image_slice_0504'.

Standard image High-resolution image

At the end of the clusters generation, the clustered images appear as a preview on the top right column of the main window, see panel 2 of figure 3. Each output can be examined by clicking on the respective preview, which will be shown in the main panel (panel 3 of figure 3). In case the result is not satisfying the user can reset TAT by clicking on the 'Clear' button, changing the parameters and repeating the process. Once the ideal conditions are found, the user can either stop the analysis, since at every run the images and all the clusters matrices are saved in the output folder, both as PNG images and NumPy arrays (*.npy file), or proceed to the merging phase in case further processing is needed.

As it is often the case, in order to have higher precision and gather more information from the various components, the capability of using more clusters turns out to be extremely useful. In fact, more clusters allow a more detailed pixel-wise partition of the components of an image making appear features that otherwise would not be partitioned correctly. For this reason, we created a separated window for the second stage of the analysis called 'Cluster editor' that can be accessed by double clicking on any of the clustered miniatures on the right column of the interface.

Figure 4 shows the interface of the Cluster Editor window, in this example, the same image showed in figure 3, i.e. 'image_slice_0504', is analysed using 15 clusters, instead of 4, to better define sub-element edges. The central panel shows a single cluster (panel 2 of figure 5), which can be selected by clicking on the clusters miniatures in the right column. The merging can be done by selecting multiple layers followed by pressing the 'Merge' button. In case the resulting combination is not ideal, it is possible to use the 'Reset' button to start the procedure again.

Figure 4.

Figure 4. TAT merging interface. Panel 1 shows clustered image with each cluster defined by a different colour. Panel 2 shows the cluster 14 as binary image. In the right column the control buttons and the clusters miniatures are listed. In this specific case, the input image 'image_slice_0504' was segmented in 15 clusters (from 0 to 14).

Standard image High-resolution image
Figure 5.

Figure 5. TAT merging interface after merging the clusters. The 15 clusters (from 0 to 14) of figure 4 were merged in three new clusters, as indicated in the miniature names in the right column. Panel 1 shows the clustered image with a different colour for each cluster, and panel 2 shows the selected cluster as binary image.

Standard image High-resolution image

The final merged image appears in figure 5, where the 15 clusters are merged into 3 (the image colour code changes as function of the number of clusters). Once the layers are successfully merged, it is possible to apply the same changes to all the other images that were analysed using the 'Apply to all' button. This will save all the new merged images inside the 'merged' sub-folder that TAT previously created in the output directory. Applying the merging to all the images, the software imposes the same colour code through all the image clusters, this is extremely useful in further post-processing steps where the single components can be retrieved by simply selecting the corresponding pixel value which is now the same along all the frames 5 .To be noted, in case of bad merging instead of resetting the entire picture it is also possible to 'undo' the last merge by clicking the dedicated 'Undo' button.

The verification of TAT outputs was done upon visual inspection of the output images. Currently there are not known applications readily available to separate the components in the images of a superconducting wire exploiting the k-means algorithm. Therefore, the goodness of the result was evaluated observing the 3D reconstruction of several Nb3Sn superconducting wires and analysing their voids distribution [12]. Following the 3D reconstruction, it was possible to evaluate if any component was missing in the analysed images (approximately 500 images for every batch). An example of 3D reconstruction is shown in figure 6.

Figure 6.

Figure 6. 3D reconstruction of a Nb3Sn wire analysed in [12]. The different colours correspond to different wire components.

Standard image High-resolution image

Furthermore, even if the TAT was developed to analyse superconducting wires, it can have significant use also in other application which requires image clustering. The robustness of the k-means algorithm is well known to the research community [21, 22], in particular in segmentation problems for biology [23] and medical applications [24], making TAT an efficient and ideal tool to analyse images for a broad spectrum of researchers. Finally, TAT can be exploited to generate the first training datasets for more sophisticated supervised artificial intelligences, like Convolutional Neural Networks (CNNs), speeding up the training process of learning networks.

More examples of analyses performed using unsupervised machine learning applied to superconducting wires can be found in [12] [25].

Conclusions

We have developed the Tomography Analysis Tool, an open-source user-friendly application to post-process efficiently tomographic images of superconducting wires exploiting the k-means algorithm. TAT allows a very quick and precise identification of all the components of a wire. This tool was specifically developed to help analyze superconducting wires through image analysis but could also be applied to different complex systems as biological or medical images. TAT can be quickly deployed for other specific user-cases wherever it is necessary to separate an image into clusters.

Tomography Analysis Tool can be downloaded at: https://tat.readthedocs.io.

Acknowledgments

This work was done under the auspices of CHART (Swiss Accelerator Research and Technology Collaboration, https://chart.ch).

Financial support was provided by the European Organization for Nuclear Research (CERN), Memorandum of Understanding for the FCC Study, Addendum FCC-GOV-CC-0176 (KE4612/ATS).

Research also supported by the European Synchrotron Radiation Facility (Grant No. MA-2767).

Data availability statement

The data that support the findings of this study are openly available at the following URL/DOI: https://doi.org/10.26037/yareta:noxmqsspnzcxbkm5f2kgajo3vy.

Footnotes

  • 3  

    The wire cross section was collected at the University of Geneva by low angle backscatter scanning electron microscopy (LABE-SEM) with beam energy at 20 kV.

  • 4  

    Time obtained running several times TAT on a batch of 20 images 512 × 512 pixels on an intel i7 personal laptop. The range in time is due to the change of the number of clusters ranging from 4 until 10.

  • 5  

    Note that during the cluster calculation, the color of the clusters can slightly vary between one image and the other. This ends up having different color-coded images for same components and might complicate the analysis. The 'merging' procedure takes care of this detail.

Please wait… references are loading.