Abstract
Analysis of chemical exchange saturation transfer (CEST) MRI data requires sophisticated methods to obtain reliable results about metabolites in the tissue under study. CEST generates z-spectra with multiple components, each originating from individual molecular groups. The individual lines with Lorentzian line shape are mostly overlapping and disturbed by various effects. We present an elaborate method based on an adaptive nonlinear least squares algorithm that provides robust quantification of z-spectra and incorporates prior knowledge in the fitting process. To disseminate CEST to the research community, we developed software as part of this study that runs on the Microsoft Windows operating system and will be made freely available to the community. Special attention has been paid to establish a low entrance threshold and high usability, so that even less experienced users can successfully analyze CEST data.
Keywords: MRI, CEST analysis, z-spectra, Lorentzian fitting, Software
Introduction
Chemical exchange saturation transfer (CEST) MRI is an evolving metabolic imaging method, which has proven as valuable in many imaging studies in the last two decades [1–3]. In particular, CEST has been shown to add diagnostic and prognostic value to the conventional MRI in patients with cerebrovascular stroke, neurological diseases, tumor imaging, and musculoskeletal disorders [4]. Despite its potential to provide unique metabolic information [5–10], CEST is not yet widely used in the clinical settings. Two major reasons for this are: firstly, the limited availability of CEST acquisition sequences on clinical MRI systems and, secondly, the relatively high complexity of CEST data analysis. To facilitate the clinical translation of CEST MRI, we present new methods for CEST data processing and analysis using the Lorentzian fitting approach. The methods are implemented in a user-friendly software that runs on the Microsoft Windows operating system, and are made available to the CEST imaging community.
In CEST MRI multiple images are acquired after applying radio-frequency (RF) saturation pulses at several frequency offsets upfield and downfield from the bulk water resonance [2]. By point plotting of the image intensity as a function of the offset frequency of the pre-saturation, the so-called z-spectra are obtained pixel by pixel. The frequency selective irradiation ahead of the image acquisition causes a pre-saturation of the labile protons on functional groups of metabolites. Exchanging protons from these individual molecular groups transfer their magnetization to water protons, leading indirectly to a decrease of the measured water signal intensity. This saturation transfer process creates signal peaks that exhibit a Lorentzian line shape [11, 12] with a center frequency offset specific for each functional group.
The acquisition process based on an alternating repetition of the pre-saturation and image recording is time-consuming, resulting in z-spectra with a limited number of data points in frequency direction. Besides, the necessary fast image acquisition usually yields a relatively low signal-to-noise ratio (SNR), leading to noisy z-spectra [13]. This is especially problematic as the CEST effect usually results in waters signal intensity changes that are only a few percent. Finally yet importantly, the resonance frequency in MRI is proportional to the external magnetic field, leading to a substantial shift of the z-spectra in frequency direction even at low levels of static magnetic field inhomogeneities [14, 15].
To cope with these problems in the analysis of the z-spectra, different approaches and corrections were proposed. The most common and rather qualitative metric is the magnetization transfer ratio asymmetry (MTRasym) [16, 17], which is defined as the difference between the z-spectrum value at the negative offsets and corresponding positive offsets with respect to water. In asymmetric spectra due to the nuclear Overhauser effect (NOE) or other confounding effects, MTRasym has a restricted explanatory power, especially in cases where the measured CEST effect is low or in molecules resonating close to the water resonance frequency. To improve the analysis of z-spectra, mathematical fitting using Lorentzian model functions was established [18–22].
In this method, each component of the z-spectrum – the water component and all other resonances from exchangeable protons in different functional groups of e.g. amide, amine, creatine, and NOE – is represented by a Lorentzian line, added up to the complete z-spectrum. Each Lorentzian line exhibits three free parameters: amplitude, frequency, and line width. Consequently, modelling the measured z-spectra with multiple Lorentzian’s leads to a relatively high number of fitting parameters compared to the low number of data points acquired in frequency direction. The simplest method of fitting complex model functions to measured data is the nonlinear least squared (NLLS) technique, such as the Levenberg-Marquard algorithm. However, more adapted least squared methods were developed and established to analyze sparse data with low SNR. For example, methods such as VARPRO or AMARES have been proposed for the in-vivo MR-spectroscopy (MRS), where -similar to CEST- low SNR signals with strongly overlapping resonances occur [23, 24]. However, while the MRS dataset typically consists of 1000 or more data points, the CEST z-spectrum contains relatively few data points in the frequency direction (e.g., about 40 points). Further, due to the indirect nature of the method, the individual resonances of the molecules or functional groups often strongly overlap. Therefore, high-quality technology is required to analyze such complicated signals.
Here we present a sophisticated method based on an adaptive nonlinear least squares algorithm, which allows a robust quantification of the z-spectra and includes prior knowledge in the fitting process. The software developed as a part of this study runs on the Windows 10 operating system and is made freely available to the community. Special attention has been paid to establish a low entrance threshold and high usability, so that even less experienced users can successfully analyze CEST data.
In our study, we first show the theoretical background of the developed software. Simulated data were then created and analyzed to validate the algorithms, taking advantage of the great benefit of known ground truth. Finally, to demonstrate the suitability of the new software, CEST data from a real phantom and the lumbar spine of a healthy subject were analyzed.
Methods
Fitting of Lorentzians
Any z-spectrum can be modeled by the sum of several Lorentzian functions described by the following function:
1 |
where is the image intensity, is the image intensity without pre-saturation, is the number of Lorentzian components, is the frequency and , and are the amplitude, frequency offset and width of the th CEST proton pool.
According to probability theory, to obtain maximum likelihood estimates, the following functional must be minimized:
2 |
where is the signal vector, is the number of frequency offsets measured, is the amplitude vector, is the frequency vector and is the width vector of the Lorentzian components. is the following matrix of full rank:
3 |
The superscript T denotes the transpose and the Euclidian norm.
The functional consists of the sum of squared residuals and leads to a typical nonlinear least squared problem. To solve such problems, Dennis et al. developed an adaptive NLLS algorithm that can handle large residuals or very nonlinear problems better than a Levenberg–Marquardt algorithm [25–27]. In our implementation, we used the subroutine dn2gb from the port library of netlib [28], an established collection of mathematical software commonly used in science and engineering. By applying upper and lower bounds in dn2gb, prior knowledge such as large linewidths for magnetization transfer components or known frequencies of CEST metabolites can be included in the fitting process. Adding such physical requirements as additional bounds leads to maximum accuracy and robustness [29]. As a secant method, the NLLS algorithm applied here uses the evaluation of the residuals and the Jacobi matrix , which consists of the first derivatives of the residuals according to the unknown parameters:
4 |
Software development
To create an easy to use tool for CEST analysis, the proposed software was developed under Windows 10 operating system in Microsoft Visual C++ 2022 using the MFC library as graphical user interface. The usual design elements of a typical Windows software have been used so that users can easily and quickly find their way around. Since the netlib library was developed in the Fortran programming language, dn2gb was compiled with the Intel® Fortran compiler ifort v.2021.6.0. Then the corresponding lib-file was created using Microsoft Library Manager, which is part of Visual Studio. Fortran passes all arguments of subroutines by reference. Therefore, pointers must be used when calling Fortran subroutines from C++. Data structures like vectors, matrices and arrays are represented in different ways in Fortran and C++. Consequently, when calling the external Fortran subroutines from C++, special care must be taken with the construction and order of the variables.
Filtering and pyramidal approach
The SNR of CEST data is a relevant aspect to be considered. For this reason, two approaches were proposed to improve the stability of the results. The first one uses image filtering prior to z-spectra generation and analysis, whereas the second one is based on a pyramidal approach similar to the Image Dowsampling Expedited Adaptive Least-squares (IDEAL) method presented by Zhou et al. [12]. For noise filtering in image space, a non local means (NLM) filter [30] was implemented using the OpenCV 4.5.1 library [31]. Compared to simple Gaussian filters, which cause significant image smoothing, NLM filters preserve image details. In the pyramidal method, image downsampling is used to increase SNR. First, the image size of the original image data is strongly reduced by a factor of 2N, where N is a small integer number. Next, the averaged signal of the down-sampled images is analyzed by Lorentzian fitting and the obtained results are then extrapolated by a factor of two and serve as initial values for analyzing the up-sampled images. The up-sampling steps are repeated until the original image resolution is reached. Zhou et al. demonstrated that this approach leads to more robust results both in phantom and rat brain data [12].
CEST analysis
Due to the inhomogeneity of the static magnetic field B0, the center frequency of the water peak, which is normally at 0 ppm, is often shifted. Depending on the inhomogeneity of B0, the shift can exceed 1 ppm [32]. When analyzing the z-spectra by Lorentzian fitting, B0 shift is less relevant as long as the fitted Lorentzian components can be assigned to the individual proton pools. This means that corrections of the B0 inhomogeneity by pixel-wise shifting of the z-spectrum, e.g. with the water-shift referencing (WASSR) method [14], are not necessary for the Lorentzian fitting because no asymmetry analysis is performed. Nevertheless, our CEST analysis performed frequency correction by pre-fitting to obtain reliable frequency offsets for the individual components. It should be noted that this water shift step only serves to facilitate the localization of the various CEST components, but does not affect the results of the fitted lines as long as the fitting is successful. In this initial step, a sum of six Lorentzian’s is fitted to each z-spectrum to determine the center of the water resonance. The fitting is loosely constrained and starts with a large peak for water at 0 ppm, two peaks above and below the water peak at ± 1.0 ppm and ± 2.0 ppm and a broad peak at -2.0 ppm representing possible semisolid magnetization transfer (MT) contrast in the spectrum. The resulting frequency of the fitted water peak is then used to shift the original z-spectra, and the actual fitting analysis starts. This allows easy assignment of the individual components to the known frequencies.
In the actual analysis of the z-spectra, a set of starting values is introduced to the fitting process. This set contains the number of Lorentzian components, the frequency range swept by RF saturation pulses, and three parameters for each component, namely the amplitude, frequency offset, and line width. For the latter three parameters, constraints are given by lower and upper bounds, restricting the possible solutions for each individual Lorentzian line. In this way, prior physical knowledge is incorporated into the fitting process. When analyzing CEST images with the pyramid method, it is possible to select the number of pyramid levels and a tolerance value in percent that specifies a range within which the parameters are allowed to change from one pyramid level to the next.
The fitting process of the z-spectra yields the optimal amplitude, frequency and width for each individual Lorentzian line, the integral of each component, and the sum of squares between the fitting result and the original z-spectra as a quality measure.
Creation of digital phantoms
To evaluate the newly developed algorithms and software, two digital phantoms with different compositions of proton pools were created. The advantage of a digital phantom is the known Lorentzian composition as a ground truth. The phantoms were overlaid pixel by pixel with Rice-distributed noise of varying amplitude. The noise amplitude ranged from 0–20% in the image without pre-saturation, resulting in ideal z-spectra without noise and “more realistic” z-spectra of different quality.
A cylindrical structure with two inner circles was chosen as the first phantom, as shown in Fig. 1a. The outer region of the phantom consisted entirely of a water pool, and the left and right inner regions contained a composition of water (0 ppm), creatine (1.9 ppm), amide (3.5 ppm), OH (1.0 ppm) and MT (–2.0 ppm) pools. The amide and creatine amplitudes varied between the left and right inner regions, while all other components remained constant. The complete composition is shown in Table 1.
Table 1.
Proton pool | Amplitude (I/I0) left | Amplitude (I/I0) right | Amplitude (I/I0) outside | Frequency [ppm] | Width [ppm] |
---|---|---|---|---|---|
H2O | 0.95 | 0.95 | 0.95 | 0.0 | 0.5 |
Amide | 0.30 | 0.10 | 0.00 | 3.5 | 0.5 |
Creatine | 0.10 | 0.30 | 0.00 | 1.9 | 0.5 |
OH | 0.03 | 0.03 | 0.00 | 1.0 | 0.5 |
MT | 0.03 | 0.03 | 0.00 | –2.0 | 15.0 |
In addition, a second digital phantom was created with a structure similar to that of a sagittal spine image in which only the intervertebral discs (IVDs) were preserved (see Fig. 1b). Since this model is typical for CEST studies of glycosaminoglycans (GAG), two regions were defined in each disc, representing the inner nucleus pulposus (NP) and the outer annulus fibrosus (AF). The composition of the two regions was water (0 ppm), GAG (OH) (1.0 ppm), NH (3.2 ppm), MT (–2.43 ppm), NOE (–2.6 ppm) and NOE (–1.0 ppm). The amplitude of the GAG component varied between NP and AF and was greater in NP. The complete composition is shown in Table 2.
Table 2.
Proton pool | Amplitude (I/I0) AF | Amplitude (I/I0) NP | Frequency [ppm] | Width [ppm] |
---|---|---|---|---|
H2O | 0.75 | 0.75 | 0.0 | 2.0 |
GAG (OH) | 0.03 | 0.06 | 1.0 | 1.0 |
NOE-2.6 | 0.05 | 0.05 | –2.6 | 1.0 |
NOE-1.0 | 0.001 | 0.001 | –1.0 | 2.0 |
NH | 0.03 | 0.03 | 3.2 | 0.5 |
MT | 0.15 | 0.15 | –2.4 | 10.0 |
Validation of the software
To validate our software, the digital phantoms were overlaid with simulated noise and systematically analyzed. Noise with amplitudes from 0 to 20% for Phantom 1 with large geometric structures and from 0 to 10% for Phantom 2 with small geometric structures was superimposed in steps of 1%. Since the image noise severely reduces the visibility of small structures, a smaller amount of noise was added in Phantom 2. The resulting CEST images were analyzed in three ways: without any pre-processing (normal), after applying the NLM filter, and using the pyramidal approach (pyramid). In Phantom 2, a combined method of NLM and pyramidal approach was also used to further improve the CEST analysis. The pixel-by-pixel Lorentzian fitting resulted in parametric images of amplitudes, frequency offsets and widths. Further, integral images for each individual proton pool as well as the sum of squares maps were created. All the calculated parameter maps were analyzed within the predefined regions with different proton pool compositions. The mean and standard deviation of the regions were analyzed as a function of the added image noise. In addition, the standard deviations of the predefined regions were compared between the three approaches: normal, NLM and pyramid. Besides, the regional sum of squares for the three different methods were compared as a quality measure for the fit analysis.
Phantom
To validate the algorithms and software for analyzing measured MRI data, a phantom containing different amounts of creatine (Cr) and nicotinamide (NAD) was created. This water-based phantom consisted of four inner tubes filled with NAD and Cr dissolved in phosphate-buffered saline (ROTI®Cell PBS, Carl ROTH) at concentrations ranging from 50 to 100 mM (Table 3), and physiological pH of 7.3.
Table 3.
Tube | #1 | #2 | #3 | #4 |
---|---|---|---|---|
NAD | 100 mM | 100 mM | 50 mM | 50 mM |
Cr | 50 mM | 100 mM | 100 mM | 50 mM |
The acquired CEST data from the phantom were preprocessed by NLM filter to increase the SNR before analysis by Lorentzian fitting.
In-vivo study
To test the utility of the developed software, an in-vivo study was performed on a healthy volunteer. CEST data were acquired from the lumbar spine. Based on the results of the digital phantom #2, the CEST data of the spine were processed using the NLM and pyramidal approach. The study was approved by the local ethics committee (Ethics Committee of the Medical Faculty of Heinrich Heine University, Düsseldorf, Germany). Written informed consent was obtained from healthy volunteers who participated this study.
MRI measurements
All acquisitions were performed on a Siemens Magnetom Prisma MRI (Siemens Healthineers, Erlangen, Germany) at a magnetic field strength of 3 T. The phantom experiment was performed with an eight channel knee coil. A 24-channel spine coil was used for the lumbar spine acquisition. CEST was acquired with an in-house developed spoiled gradient echo sequence using the following parameters: repetition time TR = 7.2 ms, echo time TE = 3.5 ms, excitation flip angle = 15°, image matrix = 128 × 128, slice thickness = 10 mm (phantom), 6 mm (in-vivo), field of view = 80 × 80 mm2 (phantom), 200 × 200 mm2 (in-vivo), 1 pre-saturation pulse (phantom), 40 pre-saturation pulses (in-vivo), B1 = 1.5 μT (phantom), 0.9 μT (in-vivo), pulse duration of PD = 900 ms (phantom), 100 ms (in-vivo), frequency offsets = 63, frequency range = –7.0– 7.0 ppm (phantom), –5.0–5.0 ppm (spine).
Results
Software development
With “calf”, a user friendly software has been developed that enables the analysis of CEST data with an arbitrary number of proton pools, each represented by a Lorentzian line. The software runs on Microsoft Windows operating system, has a graphical user interface, and is easy to use (see Fig. 2). The software reads DICOM and Nifti as input image formats. “calf” allows navigation through 4D image data and display of z-spectra of manually selected regions of interest. Users can define arbitrary CEST proton pools at defined offset frequencies as prior knowledge for the analysis process. Constraints can be inserted for each component to stabilize the mathematical fitting process. As shown in Fig. 2, a table of initial values and constraints for each proton pool can be passed to the software. This gives the user the freedom to adapt the fitting to his needs. In particular, different numbers of proton pools and different compositions of metabolites or molecular groups can be considered. Tables created for specific applications, such as APT-CEST or gagCEST, can be saved and shared between users. The software analyzes single z-spectra or whole CEST image data and provides parameter images of amplitude, width and frequency of each predefined proton pool. To reduce image noise within the CEST data, a simple Gaussian filter and NLM filter have been implemented for the calculation of parameter images. Furthermore, a pyramidal approach is available to improve results for CEST parameter images. "calf" is available to the CEST community and can be downloaded from https://github.com/MPR-UKD/calf.
Digital phantoms
To illustrate the software evaluation process the results of phantom 1 and 2 are presented below. After presenting z-spectra and CEST parameter maps of phantom 1 at single noise values as an example, the effects of NLM noise filter and pyramidal approach are shown. Finally, the quantitative fitting results of phantom 1 as a function of image noise are presented and compared to the ground truth of the simulated CEST data. Since the digital phantom 2 has a different CEST composition and geometric shape, the CEST results are then presented again as a function of image noise. Finally, the quantitative results of the GAG component of phantom 2 are presented as a function of image noise.
Figure 3 shows the digital phantom 1 with corresponding exemplary z-spectra of the right and left inner circles at three noise levels. In the spectra without noise, the resonances of amide and creatine are clearly visible, while at low SNR the peaks at 3.5 ppm and 2.0 ppm are difficult to distinguish from the signal noise. The parametric maps of amide and creatine show exactly the amplitude of the ground truth shown in Table 1 for the case without noise. The more noise is added to the phantom, i.e. the z-spectra, the noisier are the resulting parametric images.
Figure 4 shows three exemplary z-spectra of phantom 1 at different noise levels including the fitted CEST components (see Table 1). Notably, even at high noise levels, the spectrum is accurately modeled.
Figure 5 displays the parametric images of amide and creatine at three different noise levels obtained from the three approaches: without filter, with the NLM filter, and with the pyramidal method. As expected, the parameter maps generated without filtering are very noisy at low SNR. NLM and pyramid approach substantially reduce noise in amplitude maps. While NLM preserves the appearance of the phantom, the pyramid method results in a noticeable smoothing of the edges. The results of a 3 × 3 Gaussian filter are shown in Fig. 5 on the right, just to show the difference from the NLM filter. The Gaussian filter produces less noise than no filtering and preserves edges better than the pyramid approach. However, the NLM produces more homogeneous CEST results with less smoothing than the Gaussian filter.
Figure 6 shows the mean amide amplitude versus noise levels. The dashed lines represent the ground truth amplitude that is 0.3 in the left inner circle, 0.1 in the right inner circle, and 0.0 in the outer region. When no filter was applied, the amplitudes were fitted accurately only up to a noise level of about 5%. At higher noise levels, the fitted amide amplitudes deviate from the ground truth and exhibit increased standard deviations. Interestingly, even in the outer region where no amide pool is present, the fit yielded a distinct amide peak. The erroneous amide peak at low SNR occurs even when the pyramidal approach was used for fitting. Nevertheless, the deviation from the ground truth and the standard deviation within the regions are considerably lower. Lastly, the NLM filtered approach leads to the most stable results with overall lowest standard deviations.
Figure 7 shows the mean of the sum of squares of the three regions within the parametric amide images as a quality measure of the fitting process. For the approach without filtering and the pyramidal approach, the quality of the fit is roughly comparable. As the noise level increases, the sum of squares increases. In addition, the standard deviation increases within the three regions, indicating a greater dispersion of results. When using the NLM filter, the fitting process appears to be most stable since only a slight increase in the sum of squares and standard deviations can be observed even at low SNR.
In phantom 2, which shows the structure of the IVDs of the lumbar spine, a different composition of CEST metabolites was chosen (see Table 2). Figure 8 shows the structure of phantom 2 and exemplary z-spectra for the NP (red) and AF (blue) regions. The right side shows the z-spectra with their individual components. Of note is the small change in GAG (OH) amplitude, resulting in a negligible difference in the overall AF and NP z-spectra (see Fig. 8). Of course, analyzing such small differences requires an effective fitting algorithm especially in the presence of increased image noise.
Figure 9 shows the GAG-OH amplitude images at three different noise levels obtained from the four methods: without filtering, with NLM filter, with pyramidal approach, and with a combined approach with NLM and pyramidal method. In addition, an example of a z-spectrum with a noise level of 5% of the NP and the results of the fit are shown on the right. Since the GAG amplitude is low, 0.03 for AF and 0.06 for NP (see Table 2), and the regions are very small, the image noise has a strong influence on the GAG results. While at low noise levels of 2% the NP and AF regions are still visible in the GAG amplitude images, the methods fail at higher noise levels. It is worth noting that the combination of NLM and pyramid approach leads to the best results for the GAG amplitude images at a noise level of 2% and to overall lower standard deviations within the AF and NP regions. In general, the results obtained in phantom 2 show that stable detection of CEST components with very low amplitudes and amplitude differences associated with small spatial regions requires CEST data with high signal-to-noise ratio.
The visual results of the GAG amplitude images are reflected in the analysis of the mean amplitudes of AF and NP in Fig. 10, where the regional mean and standard deviations are shown. Only at low noise levels, the amplitudes of GAG are close to the ground truth marked by the dotted and dashed lines. As noise increases, the AF and NP results strongly deviate from the ground truth and are, therefore, indistinguishable from each other.
Phantom measurement
As the next step in the software evaluation process, the results of the real phantom measurement are presented. Figure 11 shows the results of the in-vitro CEST experiments. The Lorentzian model function fits the measured z-spectrum very well as proven by the residual. The different concentrations are reflected in the parametric images of NAD and Cr. The variation seen in tubes with the same concentrations may be due to B1 inhomogeneity effects. In addition, the mixing of the phantom with not fully dissolved substances was imperfect because the concentrations were close to the maximum dissolvable. The variations for the same concentrations were 17% for NAD and 8% for creatine.
In-vivo study
The last step of the software evaluation was an in vivo study. Figure 12 shows results of the in-vivo CEST examination of the lumbar spine of a healthy subject. On the left, the GAG amplitude image is superimposed on the unsaturated I0 image. The z-spectrum and fitted Lorentzian peaks generated for a single pixel are shown on the right. The position of the pixel is displayed as an X-mark on the anatomical image. The black line indicates the fitted curve of the measured data. Based on the results of the digital phantom 2, the analysis was performed by the combined method with NLM filter and pyramid approach. As expected, the central NP regions of the IVDs show higher GAG amplitudes than the outer AF regions.
Discussion
In this study, we introduce the new CEST analysis software "calf", which evaluates z-spectra by fitting Lorentzian lines and features various denoising algorithms. The software has a convenient user interface and is easy to use for the analysis of CEST data. For this purpose, we have defined a general functional consisting of the sum of the squared differences between measured data and model function. A special nonlinear least squares algorithm is used to minimize the functional, allowing robust determination of the Lorentzian line shape parameter estimates even for sparsely sampled data with low SNR. The advantage of this novel approach is that the analysis can be performed on the original low-sampling CEST data without the need for potentially defective upsampling. From the signal theory, it is known that interpolation of data can lead to deflections or oscillations [33]. These may negatively impact the CEST analysis by introducing errors in the parameter estimates. This problem can be circumvented by processing the unmodified original measurement data directly, as it is the case with our proposed algorithm. In addition, automatic frequency shift correction by pre-fitting eliminates the need for B0 map acquisition to correct for B0 field inhomogeneity. Further, pyramidal approach similar to the IDEAL method described in [12] and a non local means noise filter were implemented and tested for CEST processing. Both approaches serve to improve data quality through noise reduction, which is a relevant factor in the analysis of z-spectra. Taken together, the proposed analysis methods address the typical challenges of CEST imaging: a low sampling rate in the frequency direction, limited SNR, overlapping peaks from different CEST pools that require integration of prior knowledge into fitting process, and frequency shifts caused by B0 field inhomogeneity.
Validation of the proposed processing pipeline was performed in-silico, in-vitro and in-vivo. First, to test the accuracy of the developed methods, various digital phantoms were created. Different amounts of noise were added to the images in order to better mimic a series of in-vivo conditions. Subsequently the proposed analysis methods were tested using a phantom consisting of nicotinamide and creatine solutions. Furthermore, an in-vivo study was performed on the lumbar spine of a healthy subject to demonstrate the performance of the developed methods for analysis of in-vivo data.
The digital phantom 1 consisted of large compartments containing large amounts of amide and creatine. Although this configuration promises a simple CEST analysis, when the signal noise is high, the fitting appears complicated due to the occurrence of large pseudo noise peaks. The application of NLM noise filter or the pyramidal approach delivers stable results anyway, even the pyramidal approach leads to a relevant smoothing of the spatial structures.
Phantom 2 was modeled on the structure of a lumbar spine, with small areas defined by the annulus fibrosus and nucleus pulposus. As in in-vivo conditions, the amount of GAG was only slightly different, resulting in very similar z-spectra. Therefore, the analysis process in the presence of image noise is a challenge that requires a high signal-to-noise ratio to obtain stable results. A combination of NLM filter and pyramidal approach showed the best results in this regime.
As a next step to validate the developed algorithms, data from a phantom with different amounts of creatine and nicotinamide were examined and analyzed. The CEST data of the phantom could be reliably analyzed with respect to the pools of amide and creatine. The fit of the z-spectra was good with very small distance squares.
To validate our multi-pool fitting algorithm with real in vivo CEST data, the examination of the lumbar spine of a healthy subject was recorded and analyzed. Although ground truth is understandably not available, the quality of the analysis with our algorithms can be described as good. The geometric shape with higher GAG amplitudes within NP areas is realistic and comparable to previous studies [34]. It is noteworthy here that the proposed analysis does not require external corrections of B0-induced frequency shifts and time-consuming measurement methods such as WASSR. Upsampling of the z-spectra was also not necessary.
Although quantitative CEST may be used in the future to determine labile proton concentration and the corresponding exchange rate, it is not currently used for in-vivo measurements because of high complexity of biological tissues, which contain a large variety of metabolites, proteins and macromolecules. The contributions from all these potential CEST pools cannot be separated by the conventional MTRasym analysis. Moreover, the in-vivo measured MTRasym values are often significantly affected by the semisolid MT asymmetry, NOE effects and B0 shifts. As demonstrated in this and previous studies, the application of Lorentzian fitting improves the interpretation of the individual CEST effects. This might be particularly advantageous when analyzing CEST data acquired at high pre-saturation power levels that create a stronger overlap between different CEST peaks and enhance the confounding direct spillover effect.
The pyramidal method, which is similar to the IDEAL approach [12], can lead to regionally varying inaccuracies, especially in highly heterogenous tissues that are present within the same image. Moreover, the downsampling and upsampling process may introduce further image artifacts such as aliasing and staircase artifacts. Therefore, we implemented the edge-preserving spatial filtering method NLM to reduce the image noise. As shown in our study, a combination of the NLM and the pyramidal approach can further improve CEST analysis.
There are already other software tools for processing CEST data. Most of them are suitable for advanced users. QuantiCEST is part of the large Quantiphyse toolbox and uses sophisticated Bayesian analysis methods for quantitative CEST analysis [35, 36]. QuantiCEST has been developed in Python and therefore requires an initial installation of the Python environment. Although QuantiCEST is easy to use, its detailed and sophisticated features make it more suitable for advanced CEST experts. Cest_eval from the cest-sources project is a very sophisticated CEST tool that uses Lorentzian fitting, but also implements quantitative methods such as MTRRex or AREX [37, 38]. As it is developed in Matlab, it is aimed at CEST professionals with Matlab skills. BayCEST uses the Bayesian approach and has been developed as part of the extended FSL suite for advanced analysis of functional brain imaging data [34, 39]. FSL runs under the Linux operating system and is a very comprehensive brain suite tool. Therefore, BayCEST is intended for specialists only. MITK is a large and sophisticated medical imaging platform and medical imaging toolkit for the development of interactive medical imaging software. MITK CEST is a module implemented on top of MITK [40]. It enables MTRasym, Lorentzian fitting, and WASABI [41]. Due to the complex nature of MITK, it is also intended for advanced users. There are other tools available for the analysis of CEST data, but most of them are written in Matlab or Python and are intended for use only by medical imaging scientists.
In contrast, calf has been developed with the intention of being easy to use, not only for experts in CEST MRI. Much effort has been put into usability and the graphical user interface (GUI). The GUI is that of a standard Microsoft Windows application, where even less experienced users can get along. Additional calf can be started by simply double-clicking on the application, even without software installation.
Recent studies by Cohen et al. and Perlman et al. have demonstrated the potential of deep learning for CEST imaging, but may not be accessible or transparent to a broader, non-technical audience [42, 43]. However, we see the potential to incorporate AI-based methods into our system in the future to improve the performance and efficiency of the analysis.
The main purpose of our study was to introduce a free software for an easy and reliable analysis of CEST data. In the future, further studies need to be conducted comparing the implemented algorithms with other existing methods, e.g., in terms of noise reduction of z-spectra and other techniques to improve the stability of the CEST results such as image registration or B0 and B1 corrections [44–46].
In summary, we have developed a novel tool for Lorentzian analysis of CEST data, which uses the edge-preserving non local mean noise filter and pyramidal approach to provide robust quantification of the CEST MRI effects in a multipool system. The proposed methods were validated using in-silico, in-vitro and in-vivo CEST data. The algorithms were implemented in easy-to-use software that runs on the Microsoft Windows operating system and will be made available to the CEST research community.
Author contribution
Conceptualization: Hans-Jörg Wittsack; Methodology: Hans-Jörg Wittsack, Karl Ludger Radke, Julia Stabinska, Anja Müller-Lutz; Formal analysis and investigation: Hans-Jörg Wittsack, Karl Ludger Radke, Alexandra Ljimani, Anja Müller-Lutz; Writing–original draft preparation: Hans-Jörg Wittsack; Writing–review and editing: Hans-Jörg Wittsack, Karl Ludger Radke, Julia Stabinska, Alexandra Ljimani, Anja Müller-Lutz; Supervision: Hans-Jörg Wittsack.
Funding
Open Access funding enabled and organized by Projekt DEAL.
Data Availability
The data that support the findings of this study are available on request from the corresponding author.
Declarations
Ethical approval
Approval was obtained from the ethics committee of University Heinrich Heine University, Düsseldorf, Germany. The procedures used in this study adhere to the tenets of the Declaration of Helsinki.
Competing interests
The authors did not receive support from any organization for the submitted work. The authors have no relevant financial or non-financial interests to disclose.
Footnotes
Publisher's Note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
References
- 1.Sherry AD, Woods M. Chemical exchange saturation transfer contrast agents for magnetic resonance imaging. Annual review of biomedical engineering. 2008;10:391–411. doi: 10.1146/annurev.bioeng.9.060906.151929. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 2.van Zijl PC, Yadav NN. Chemical exchange saturation transfer (CEST): what is in a name and what isn’t? Magnetic resonance in medicine. 2011;65:927–948. doi: 10.1002/mrm.22761. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 3.Ward KM, Aletras AH, Balaban RS. A new class of contrast agents for MRI based on proton chemical exchange dependent saturation transfer (CEST) Journal of magnetic resonance. 2000;143:79–87. doi: 10.1006/jmre.1999.1956. [DOI] [PubMed] [Google Scholar]
- 4.Jones KM, Pollard AC, Pagel MD. Clinical applications of chemical exchange saturation transfer (CEST) MRI. J Magn Reson Imaging. 2018;47(1):11–27. doi: 10.1002/jmri.25838. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 5.Cai K, et al. CEST signal at 2 ppm (CEST@2 ppm) from Z-spectral fitting correlates with creatine distribution in brain tumor. NMR in biomedicine. 2015;28:1–8. doi: 10.1002/nbm.3216. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 6.Walker-Samuel S, et al. In vivo imaging of glucose uptake and metabolism in tumors. Nature medicine. 2013;19:1067–1072. doi: 10.1038/nm.3252. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 7.Sun PZ, Zhou J, Sun W, Huang J, van Zijl PC. Detection of the ischemic penumbra using pH-weighted MRI. Journal of cerebral blood flow and metabolism: official journal of the International Society of Cerebral Blood Flow and Metabolism. 2007;27:1129–1136. doi: 10.1038/sj.jcbfm.9600424. [DOI] [PubMed] [Google Scholar]
- 8.Jia G, et al. Amide proton transfer MR imaging of prostate cancer: A preliminary study. J Magn Reson Imaging. 2011;33:647–654. doi: 10.1002/jmri.22480. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 9.Chen LQ, et al. Evaluations of extracellular pH within in vivo tumors using acidoCEST MRI. Magnetic resonance in medicine. 2014;72:1408–1417. doi: 10.1002/mrm.25053. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 10.Sagiyama K, et al. In vivo chemical exchange saturation transfer imaging allows early detection of a therapeutic response in glioblastoma. Proc Natl Acad Sci USA. 2014;111:4542–4547. doi: 10.1073/pnas.1323855111. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 11.Zaiss M, Schmitt B, Bachert P. Quantitative separation of CEST effect from magnetization transfer and spillover effects by Lorentzian-line-fit analysis of z-spectra. Journal of magnetic resonance. 2011;211:149–155. doi: 10.1016/j.jmr.2011.05.001. [DOI] [PubMed] [Google Scholar]
- 12.Zhou IY, Wang E, Cheung JS, Zhang X, Fulci G, Sun PZ. Quantitative chemical exchange saturation transfer (CEST) MRI of glioma using Image Downsampling Expedited Adaptive Least-squares (IDEAL) fitting. Sci Rep. 2017;7(1):84. doi: 10.1038/s41598-017-00167-y. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 13.Breitling J, Deshmane A, Goerke S, Korzowski A, Herz K, Ladd ME, Scheffler K, Bachert P, Zaiss M. Adaptive denoising for chemical exchange saturation transfer MR imaging. NMR Biomed. 2019;32(11):e4133. doi: 10.1002/nbm.4133. [DOI] [PubMed] [Google Scholar]
- 14.Kim M, Gillen J, Landman BA, Zhou J, van Zijl PC. Water saturation shift referencing (WASSR) for chemical exchange saturation transfer (CEST) experiments. Magn Reson Med. 2009;61(6):1441–1450. doi: 10.1002/mrm.21873. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 15.Müller-Lutz A, Ljimani A, Stabinska J, Zaiss M, Boos J, Wittsack HJ, Schleich C. Comparison of B0 versus B0 and B1 field inhomogeneity correction for glycosaminoglycan chemical exchange saturation transfer imaging. MAGMA. 2018;31(5):645–651. doi: 10.1007/s10334-018-0689-5. [DOI] [PubMed] [Google Scholar]
- 16.Wei W, Jia G, Flanigan D, Zhou J, Knopp MV. Chemical exchange saturation transfer MR imaging of articular cartilage glycosaminoglycans at 3 T: Accuracy of B0 Field Inhomogeneity corrections with gradient echo method. Magn Reson Imaging. 2014;32(1):41–47. doi: 10.1016/j.mri.2013.07.009. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 17.Schreiner MM, Zbýň Š, Schmitt B, Weber M, Domayer S, Windhager R, Trattnig S, Mlynárik V. Reproducibility and regional variations of an improved gagCEST protocol for the in vivo evaluation of knee cartilage at 7 T. MAGMA. 2016;29(3):513–521. doi: 10.1007/s10334-016-0544-5. [DOI] [PubMed] [Google Scholar]
- 18.Heo HY, Zhang Y, Lee DH, Hong X, Zhou J. (2016) Quantitative assessment of amide proton transfer (APT) and nuclear overhauser enhancement (NOE) imaging with extrapolated semi-solid magnetization transfer reference (EMR) signals: Application to a rat glioma model at 4.7 Tesla. Magn Reson Med 75(1):137–49 [DOI] [PMC free article] [PubMed]
- 19.Geades N, Hunt BAE, Shah SM, Peters A, Mougin OE, Gowland PA. Quantitative analysis of the z-spectrum using a numerically simulated look-up table: Application to the healthy human brain at 7T. Magn Reson Med. 2017;78(2):645–655. doi: 10.1002/mrm.26459. [DOI] [PubMed] [Google Scholar]
- 20.Zhang XY, Wang F, Afzal A, Xu J, Gore JC, Gochberg DF, Zu Z. (2016) A new NOE-mediated MT signal at around -1.6ppm for detecting ischemic stroke in rat brain. Magn Reson Imaging 34(8):1100–1106 [DOI] [PMC free article] [PubMed]
- 21.Zhang J, Zhu W, Tain R, Zhou XJ, Cai K. Improved Differentiation of Low-Grade and High-Grade Gliomas and Detection of Tumor Proliferation Using APT Contrast Fitted from Z-Spectrum. Mol Imaging Biol. 2018;20(4):623–631. doi: 10.1007/s11307-017-1154-y. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 22.Krikken E, Khlebnikov V, Zaiss M, Jibodh RA, van Diest PJ, Luijten PR, Klomp DWJ, van Laarhoven HWM, Wijnen JP. (2018) Amide chemical exchange saturation transfer at 7 T: a possible biomarker for detecting early response to neoadjuvant chemotherapy in breast cancer patients. Breast Cancer Res. Jun 14;20(1):51 [DOI] [PMC free article] [PubMed]
- 23.van der Veen JW, de Beer R, Luyten PR, van Ormondt D. (1988) Accurate quantification of in vivo 31P NMR signals using the variable projection method and prior knowledge. Magn Reson Med Jan;6(1):92–98 [DOI] [PubMed]
- 24.Vanhamme L, van den Boogaart A, Van Huffel S. (1997) Improved method for accurate and efficient quantification of MRS data with use of prior knowledge. J Magn Reson Nov;129(1):35–43 [DOI] [PubMed]
- 25.Dennis John, Gay David, Welsch Roy. Algorithm 573: An Adaptive Nonlinear Least-Squares Algorithm. ACM Transactions on Mathematical Software. 1981;7(3):367–383. [Google Scholar]
- 26.Dennis JE, Schnabel RB. Numerical Methods for Unconstrained Optimisation and Nonlinear Equations. Englewood Cliffs, NJ: Prentice-Hall; 1983. [Google Scholar]
- 27.Butcher JC, Jackiewicz Z, Mittelmann HD. A nonlinear optimization approach to the construction of general linear methods of high order. Journal of Computional and Applied Mathematics. 1997;81(2):181–196. doi: 10.1016/S0377-0427(97)00039-3. [DOI] [Google Scholar]
- 28.https://www.netlib.org/ (01/26/2023)
- 29.Gill PE, Murray W, Wright MH. Practical Optimization. San Diego: Academic Press; 1988. [Google Scholar]
- 30.Buades A. A non-local algorithm for image denoising. Computer Vision and Pattern Recognition. 2005;2:60–65. [Google Scholar]
- 31.https://opencv.org/ (01/26/2023)
- 32.Kim M, Gillen J, Landman BA, Zhou J, van Zijl PC. Water saturation shift referencing (WASSR) for chemical exchange saturation transfer (CEST) experiments. Magn Reson Med. 2009;61(6):1441–1450. doi: 10.1002/mrm.21873. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 33.Meijering EA. Chronology of Interpolation: From Ancient Astronomy to Modern Signal and Image Processing. Proc. IEEE. 2002;90:319–342. doi: 10.1109/5.993400. [DOI] [Google Scholar]
- 34.Müller-Lutz A, Schleich C, Schmitt B, Antoch G, Matuschke F, Quentin M, Wittsack HJ, Miese F. Gender, BMI and T2 dependencies of glycosaminoglycan chemical exchange saturation transfer in intervertebral discs. Magn Reson Imaging. 2016;34(3):271–275. doi: 10.1016/j.mri.2015.10.024. [DOI] [PubMed] [Google Scholar]
- 35.Chappell MA, Donahue MJ, Tee YK, Khrapitchev AA, Sibson NR, Jezzard P, Payne SJ. Quantitative Bayesian model-based analysis of amide proton transfer MRI. Magn Reson Med. 2013;70(2):556–567. doi: 10.1002/mrm.24474. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 36.Croal PL, Msayib Y, Ray KJ, Craig M, Chappell M. QuantiCEST: Bayesian Model-based Analysis of CEST MRI. June 2018 Conference: ESMRMB-ISMRM Joint Annual Meeting 2018, Paris, France
- 37.Zaiss M, Xu J, Goerke S, Khan IS, Singer RJ, Gore JC, Gochberg DF, Bachert P. Inverse Z-spectrum analysis for spillover-, MT-, and T1 -corrected steady-state pulsed CEST-MRI–application to pH-weighted MRI of acute stroke. NMR Biomed. 2014;27(3):240–252. doi: 10.1002/nbm.3054. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 38.Windschuh J, Zaiss M, Meissner JE, Paech D, Radbruch A, Ladd ME, Bachert P. Correction of B1-inhomogeneities for relaxation-compensated CEST imaging at 7 T. NMR Biomed. 2015;28(5):529–537. doi: 10.1002/nbm.3283. [DOI] [PubMed] [Google Scholar]
- 39.Chappell M, Groves A, Whitcher B, Woolrich M. Variational Bayesian Inference for a Nonlinear Forward Model. IEEE Transactions on Signal Processing. 2009;57(1):223–236. doi: 10.1109/TSP.2008.2005752. [DOI] [Google Scholar]
- 40.Debus C, Floca R, Ingrisch M, Kompan I, Maier-Hein K, Abdollahi A, Nolden M. MITK-ModelFit: A generic open-source framework for model fits and their exploration in medical imaging - design, implementation and application on the example of DCE-MRI. BMC Bioinformatics. 2019;20(1):31. doi: 10.1186/s12859-018-2588-1. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 41.Schuenke P, Windschuh J, Roeloffs V, Ladd ME, Bachert P, Zaiss M. Simultaneous mapping of water shift and B1 (WASABI)-Application to field-Inhomogeneity correction of CEST MRI data. Magn Reson Med. 2017;77(2):571–580. doi: 10.1002/mrm.26133. [DOI] [PubMed] [Google Scholar]
- 42.Cohen O, Yu VY, Tringale KR, Young RJ, Perlman O, Farrar CT, Otazo R. CEST MR fingerprinting (CEST-MRF) for brain tumor quantification using EPI readout and deep learning reconstruction. Magn Reson Med. 2023;89(1):233–249. doi: 10.1002/mrm.29448. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 43.Perlman O, Zhu B, Zaiss M, Rosen MS, Farrar CT. An end-to-end AI-based framework for automated discovery of rapid CEST/MT MRI acquisition protocols and molecular parameter quantification (AutoCEST) Magn Reson Med. 2022;87(6):2792–2810. doi: 10.1002/mrm.29173. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 44.Breitling J, Deshmane A, Goerke S, Korzowski A, Herz K, Ladd ME, Scheffler K, Bachert P, Zaiss M. Adaptive denoising for chemical exchange saturation transfer MR imaging. NMR Biomed. 2019;32(11):e4133. doi: 10.1002/nbm.4133. [DOI] [PubMed] [Google Scholar]
- 45.Müller-Lutz A, Schleich C, Pentang G, Schmitt B, Lanzman RS, Matuschke F, Wittsack HJ, Miese F. Age-dependency of glycosaminoglycan content in lumbar discs: A 3t gagcEST study. J Magn Reson Imaging. 2015;42(6):1517–1523. doi: 10.1002/jmri.24945. [DOI] [PubMed] [Google Scholar]
- 46.Glang F, Deshmane A, Prokudin S, Martin F, Herz K, Lindig T, Bender B, Scheffler K, Zaiss M. DeepCEST 3T: Robust MRI parameter determination and uncertainty quantification with neural networks-application to CEST imaging of the human brain at 3T. Magn Reson Med. 2020;84(1):450–466. doi: 10.1002/mrm.28117. [DOI] [PubMed] [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Data Availability Statement
The data that support the findings of this study are available on request from the corresponding author.