An Automated Pipeline for the Identification of Liver Tissue in Ultrasound Video ================================================================================ * Eloise Ockenden * Simon Mpooya * J. Alison Noble * Goylette F. Chami ## Abstract Liver diseases are a leading cause of death worldwide, with an estimated 2 million deaths each year. Causes of liver disease are difficult to ascertain, especially in sub-Saharan Africa where there is a high prevalence of infectious diseases such as hepatitis B and schistosomiasis, along with alcohol use. Point-of-care ultrasound often is used in low-resource settings for diagnosis of liver disease due to its portability and low cost. For classification models that can automatically stage liver disease from ultrasound video, the region of interest is liver tissue. A fully-automated pipeline for liver tissue identification in ultrasound video is presented. Ultrasound video data was collected using a low-cost, portable ultrasound machine in rural areas of Uganda. The pipeline first detects the diaphragm in each ultrasound video frame, then segments the diaphragm to ultimately use this segmentation to infer the position of liver tissue in each frame. This pipeline outperforms directly segmenting liver tissue with an intersection over union of 0.83 compared to 0.62. This pipeline also shows improved results with respect to the ease of clinical interpretation and anticipated clinical utility. Keywords * Ultrasound * Video * Liver * Diaphragm * Segmentation * Infectious Disease * Africa * Schistosomiasis ## 1 Introduction Liver diseases are a leading cause of death in sub-Saharan Africa, with commonly recorded causes of hepatitis B and alcohol use [18, 7]. A less recorded, but widely prevalent cause of chronic, severe liver disease in areas of sub-Saharan Africa without access to safe water and adequate sanitation is schistosomiasis. Chronic schistosomiasis infection can cause liver fibrosis, due to immune responses to eggs from intestinal species of this parasitic blood fluke that are trapped in vessels in the portal system [15, 1]. This type of liver fibrosis is called schistosomal periportal fibrosis (PPF). In its early stages, schistosomal PPF is visible at the early segmental branches of the portal system then advances towards the main portal vein, and finally extends across the whole liver [3, 17]. Ultrasound imaging is the most-used, and only recommended method by the World Health Organisation (WHO) for the diagnosis of schistosomal PPF, used due to the high echogenicity of the fibrosis [12]. To reach rural populations affected by schistosomiasis and provide point-of-care services where health systems lack diagnostic capacity, low-cost, portable ultrasound machines are used [5]. It has been shown that the quality of images attained by low-cost, portable ultrasound machines may be lower than the quality obtained from cart-based ultrasound machines [9, 20]. To enable liver tissue identification in this context, deep learning approaches might need to exploit features or anatomy that are known to appear with clearer boundaries. Automated liver tissue identification from ultrasound video has not been widely explored, especially considering challenges posed in low-resource settings. Segmentation for liver ultrasound has focused on cancer, in particular segmenting focal lesions as a pre-processing step before classification [16]. There has been work on the segmentation of liver tissue in ultrasound images, using data collected in hospital settings. A proposed method has been to locate the liver capsule and use this as a boundary for liver tissue, before cirrhosis staging [14]. However, this approach was used only for ultrasound images that did not image deep into the body, which do not capture enough liver tissue for staging complex diseases that present in both diffuse and focal forms, such as schistosomal PPF. Recently, another method has been proposed, achieving very good quantitative results by using multi-head self attention to segment liver tissue and related structures in ultrasound images [21]. Despite this, there remains no literature on the identification of liver tissue in ultrasound video. Ultrasound video may be a more appropriate data form in low-resource settings. The acquisition of specific views of the liver to produce curated images requires expert knowledge that may not be available. Alternatively, predefined sweep procedures for video acquisition requires less expertise and training. Thus, there remains a need to investigate liver tissue identification using ultrasound video collected in low-resource settings. In this paper, a pipeline is presented to automatically identify when and where liver tissue appears in ultrasound video, using ultrasound examinations of individuals in a rural, sub-Saharan African context. ## 2 Methods ### 2.1 Context and data This study was conducted within SchistoTrack, which is a community-based cohort in rural Uganda [2]. Data from an annual follow-up of 3219 participants in 2023 were used. Ultrasound videos were collected from each participant following a predefined protocol conducted by local sonographers who were highly experienced in assessing liver disease. The procedure for acquiring the video used for the development of this pipeline was to start with a good view of the gall bladder with the probe transverse, and then to move the probe to the cephalic position. Each video clip was 5 seconds long, at 20 frames per second (fps). Phillips C5-2 curvilinear transducers were used with the Lumify Application connected to tablets with Android 9 Pie. Adults who had fasted before the scan and had no ultrasound findings including liver fibrosis, cirrhosis, fatty liver, hepatitis B and other abnormalities, were used for the development of the pipeline. Of the 728 adults who fit these criteria, a random sample of 110 adults were selected, each with one ultrasound video. The participants’ age range was 18-84 years, with a mean (s. d.) of 42.0 (15.6) and 77% (85) were female. Every other frame of each video was labelled with whether or not the diaphragm was visible. Additionally, masks of the diaphragm were created for every other frame of ultrasound video for a randomly selected 25 videos. For diaphragm detection, 90 videos were used for training, 10 for validation, and 10 for testing. For automated diaphragm segmentation, 18 videos were used for training, two for validation, and five for testing. ### 2.2 Diaphragm Detection As the first step of the pipeline, diaphragm detection was conducted. In B-mode liver ultrasound imaging, the diaphragm is viewed as a echogenic line between the lung and the liver [10]. The diaphragm appears echogenic and clear even in cases where liver tissue as a whole may have an ill-defined boundary. The model used for diaphragm detection was a fine-tuned PulseNet encoder with support vector machines (SVM) as the classification head. The PulseNet encoder used the SonoNet model [4], fine-tuned on training data from the PULSE study [8]. The encoder was trained originally for classification of 13 fetal anatomy views [11], and fine-tuned for diaphragm detection. Predictions were considered in the context of temporal dependence between frames of video. If one isolated frame was predicted to have no diaphragm while neighbouring frames were predicted otherwise, the isolated frame was reclassified as containing the diaphragm. Similarly, if three or fewer consecutive frames were predicted to have a diaphragm, while their surrounding frames were predicted to have no diaphragm, these frames were reclassified to have no diaphragm. This temporal smoothing was based on the appearance of the diaphragm in the training set. The diaphragm never appeared in less than three frames consecutively nor disappeared ever for one isolated frame. #### Hyperparameters and training Bayesian hyperparameter tuning was used for the PulseNet encoder. The temperature parameter, used for estimating uncertainty in the dataset, was tuned to a value of 1.25. The learning rate was tuned to a value of 0.022. The model was trained for 100 epochs with early stopping implemented if the validation accuracy stayed within a window of 0.02 for 10 consecutive epochs. The batch size was 32. ### 2.3 Diaphragm Segmentation for Liver Tissue Identification In order to use the diaphragm as an anchor for inferring where liver tissue appears, it must be segmented. Segmentation masks were propagated across video frames using adaptive memory to exploit the temporal dependence between frames as described elsewhere [22]. The original model was trained on fetal ultrasound video for segmentation of the maternal bladder and placenta, and was fine-tuned here using 20 annotated videos of the diaphragm. During inference, to initialise the model for a video, a segmentation mask of the target object (in this case, the diaphragm) for the first frame of ultrasound video was required. To fully automate the use of this model, a bank of ultrasound images was created from the training set. The bank contained liver views with diverse representations of the diaphragm that had been labelled with masks of the diaphragm. An ultrasound image was selected from this bank that best matched the first frame of ultrasound video, which was identified using the structural similarity index measure (SSIM) [19]. The labelled ultrasound image from the bank of ultrasound images and masks that had the highest SSIM value with the first frame of ultrasound video was used to initialise the model. Using the diaphragm as an anatomical anchor, the position of liver tissue was identified by finding the end-points of the mask of the diaphragm, and linking these up to the closest points on the left and right edges of the field of view. There were some cases where the diaphragm stretched less than halfway across the field of view. When finding the closest point in Euclidean space, it was often the case that this point was towards the top of the field of view. Therefore, using this point for partitioning created a crude under-estimate of liver tissue by cutting out the lower right side of the field of view. Accounting for the fan shape of the ultrasound field of view, the closest point in Euclidean space was corrected in cases with partial diaphragm observation by moving the point used to create the partition towards the bottom of the field of view, by a factor of ![Graphic][1], where *p* is the original closest point, and *c* is the midpoint of the right-hand edge of the field of view. ### 2.4 Full Pipeline The methods described above fit into a fully-automated liver tissue identification pipeline, presented in Figure 1. ![Fig. 1.](http://medrxiv.org/https://www.medrxiv.org/content/medrxiv/early/2024/08/02/2024.08.01.24311342/F1.medium.gif) [Fig. 1.](http://medrxiv.org/content/early/2024/08/02/2024.08.01.24311342/F1) Fig. 1. Automated pipeline for liver tissue identification from ultrasound video. #### Performance metrics and benchmarks Performance was evaluated using sensitivity, specificity, and F1 score for diaphragm detection. For the final liver tissue identification, intersection over union (IoU) was used as a quantitative evaluation metric, in addition to the investigation of failure cases and clinical utility. For benchmarking diaphragm detection, ResNet-50 with cross entropy (CE) loss and a ResNet-50 using focal loss to account for the class imbalance [13] were used. The ResNet models were pre-trained on the ImageNet dataset [6]. As a benchmark for the full pipeline, the annotation propagation model detailed in [22] was applied without the full pipeline to directly segment liver tissue. ## 3 Experiments and Results ### 3.1 Diaphragm Detection For diaphragm detection, 90 videos were used for training, 10 for validation, and 10 for testing. The number of frames in which the diaphragm appears and does not appear in each of these sets is detailed in Table 1. For the training set, the frames without diaphragm appeared in 45/90 videos. For the validation and test sets, the frames without the diaphragm appeared in 6/10 and 4/10 videos respectively. View this table: [Table 1.](http://medrxiv.org/content/early/2024/08/02/2024.08.01.24311342/T1) Table 1. Number of frames in each class for diaphragm detection. Table 2 shows the sensitivities and specificities and Figure 2 shows the confusion matrices for the PulseNet + SVM model as compared to the benchmark ResNet-50 models. The PulseNet encoder + SVM classifier were both more specific and sensitive in both sets, despite seeing an expected dip in performance on the test set. These results include temporal corrections as previously described. In particular, PulseNet + SVM was much more sensitive than the ResNet models, thereby conserving data. Figure 3 shows a set of predictions, before and after post-processing, as compared to the ground truth, taken from the test set. Common errors in prediction for the PulseNet model were in the transition between the diaphragm disappearing or appearing from view, or when the diaphragm was particularly blurry or unclear. View this table: [Table 2.](http://medrxiv.org/content/early/2024/08/02/2024.08.01.24311342/T2) Table 2. Results for diaphragm detection. Sensitivity and specificity are reported with respect to detecting frames with no diaphragm. ![Fig. 2.](http://medrxiv.org/https://www.medrxiv.org/content/medrxiv/early/2024/08/02/2024.08.01.24311342/F2.medium.gif) [Fig. 2.](http://medrxiv.org/content/early/2024/08/02/2024.08.01.24311342/F2) Fig. 2. Diaphragm detection confusion matrices. ![Fig. 3.](http://medrxiv.org/https://www.medrxiv.org/content/medrxiv/early/2024/08/02/2024.08.01.24311342/F3.medium.gif) [Fig. 3.](http://medrxiv.org/content/early/2024/08/02/2024.08.01.24311342/F3) Fig. 3. Diaphragm detection for an example video. Frame-by-frame diaphragm detection predictions, both before and after post-processing, compared to the ground truth for an example video with a total number of 66 frames. ### 3.2 Identification of Liver Tissue There was an improvement (Table 3) in the intersection over union (IoU) when identifying liver tissue using the full pipeline using the diaphragm as an anchor, as compared to directly segmenting liver tissue. The results presented in this table use the SSIM selected ultrasound image to initialise the segmentation model. For comparison, the model was rerun using the first frame of ultrasound video for initialisation; the SSIM method was nearly equivalent to using the first frame with a difference in the mean IoU of <1%. Figure 4 shows examples of failure cases for each model. Figures 4 (a) and (b) show that the direct liver segmentation model incorrectly used vessel walls as the liver tissue boundary. Figure 4 (c) shows an example where both lobes of the liver are in view, and the poor prediction of this tissue by both models. View this table: [Table 3.](http://medrxiv.org/content/early/2024/08/02/2024.08.01.24311342/T3) Table 3. Liver tissue identification results. Comparison in intersection over union (IoU) of directly segmenting liver tissue and inferring liver tissue from diaphragm position. The mean IoU is weighted by the number of frames in each video. ![Fig. 4.](http://medrxiv.org/https://www.medrxiv.org/content/medrxiv/early/2024/08/02/2024.08.01.24311342/F4.medium.gif) [Fig. 4.](http://medrxiv.org/content/early/2024/08/02/2024.08.01.24311342/F4) Fig. 4. Failure cases. Examples of where the diaphragm segmentation and inference improves liver partitioning. ## 4 Conclusion A fully automated pipeline for identification of liver tissue in ultrasound video has been presented. This pipeline enables automatic annotation of the diaphragm and liver tissue in large volumes of ultrasound video data, as a processing step before liver disease diagnosis and staging. The liver identification pipeline presented here is more fit-for-purpose than direct liver segmentation. Errors encountered using direct liver segmentation include the detection of other echogenic structures, in particular vessel walls, as the boundary for liver tissue. Not only is this anatomically incorrect, but the results from direct segmentation are not useful as a pre-processing step for schistosomal PPF diagnosis or similarly complex liver diseases requiring whole views of the liver for accurate staging. In particular, schistosomal PPF develops along vessel walls, so using these as a boundary will discard important information for staging. Importantly, the proposed pipeline is suitable for processing data from low-cost, portable ultrasound in rural, resource-limited areas and generalisable to sub-Saharan African populations. ### Limitations There were several underlying assumptions that underpin this work. Firstly, there could be cases, if free-hand probe sweeps are instead used, where the diaphragm does not appear in an ultrasound video frame but there is liver tissue in that frame. However, this can be avoided by following the same acquisition protocol used in this study. Further to this, the method to infer the position of liver tissue from the diaphragm might provide a crude estimate of liver tissue area in a given frame of ultrasound video, especially when the diaphragm does not stretch fully across the field of view. This issue would be an important consideration if the pipeline were to be used for liver tissue area measurement or volume estimation but does not undermine the purpose of this pipeline; which is to identify the region of interest for liver disease classification models. ### Future work The generalisability of this pipeline to diseased populations, to children, and to videos with known quality issues should be investigated in future studies. Subsequently, the key next steps for this pipeline include an evaluation as a pre-processing step before the use of a classification model for liver disease staging, including for schistosomal PPF. Importantly, a full pipeline for liver tissue identification and morbidity prediction for diseases like schistosomal PPF could serve as a capacity building tool for trainee sonographers, a risk prediction tool for clinical decision support, and a triage system for screening patients where staff are limited in areas of sub-Saharan Africa. ## Data Availability Data is not publicly available due to data protection and ethics restrictions related to the ongoing nature of the SchistoTrack Cohort and easily identifiable nature of the participants. Code is available from the authors upon request. ## Ethics Approvals Data collection and use were reviewed and approved by Oxford Tropical Research Ethics Committee (OxTREC 509-21), Vector Control Division Research Ethics Committee of the Uganda Ministry of Health (VCDREC146), and Uganda National Council of Science and Technology (UNCST HS 1664ES). ## Disclosure of Interests The authors have no competing interests to declare that are relevant to the content of this article. ## Acknowledgments We would like to acknowledge Betty Nabatte as the Ugandan project manager; Victor Anguajibi, Timothy Mugume and Benjamin Ntegeka as sonographers for the SchistoTrack study; and the study teams and participants. We would like to acknowledge He Zhao for providing code for the annotation propagation model and advice, and Christopher Ho for assisting with the preparation and storage of ultrasound videos. ESO receives a DPhil studentship (2593890) associated with the EPSRC CDT in Health Data Science (EP/S02428X/1). GFC receives funding from the Wellcome Trust Institutional Strategic Support Fund (204826/Z/16/Z) and John Fell Fund as part of the SchistoTrack Project, Robertson Foundation Fellowship, and UKRI EPSRC Award (EP/X021793/1). AN acknowledges EPSRC grants EP/X040186/1, ERC grant PULSE (ERC-2015-AdG-694581) and the NIHR Oxford Biomedical Research Centre Imaging Theme. For the purpose of Open Access, the author has applied a CC BY public copyright licence to any Author Accepted Manuscript version arising from this submission. * Received August 1, 2024. * Revision received August 1, 2024. * Accepted August 2, 2024. * © 2024, Posted by Cold Spring Harbor Laboratory This pre-print is available under a Creative Commons License (Attribution 4.0 International), CC BY 4.0, as described at [http://creativecommons.org/licenses/by/4.0/](http://creativecommons.org/licenses/by/4.0/) ## References 1. 1.Schistosomiasis. Accessed 16/05/2024. [https://www.who.int/news-room/fact-sheets/detail/schistosomiasis](https://www.who.int/news-room/fact-sheets/detail/schistosomiasis) 2. 2.SchistoTrack. Accessed 07/06/2024. [https://www.bdi.ox.ac.uk/research/schistotrack](https://www.bdi.ox.ac.uk/research/schistotrack) 3. 3.Andrade, Z.A.: Schistosomiasis and liver fibrosis. Parasite Immunology 31(11), 656–663 (2009). doi:10.1111/j.1365-3024.2009.01157.x [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1111/j.1365-3024.2009.01157.x&link_type=DOI) [PubMed](http://medrxiv.org/lookup/external-ref?access_num=19825105&link_type=MED&atom=%2Fmedrxiv%2Fearly%2F2024%2F08%2F02%2F2024.08.01.24311342.atom) [Web of Science](http://medrxiv.org/lookup/external-ref?access_num=000270663300002&link_type=ISI) 4. 4.Baumgartner, C.F., Kamnitsas, K., Matthew, J., Fletcher, T.P., Smith, S., Koch, L.M., Kainz, B., Rueckert, D.: SonoNet: Real-Time Detection and Localisation of Fetal Standard Scan Planes in Freehand Ultrasound. IEEE Transactions on Medical Imaging 36(11), 2204–2215 (Nov 2017). doi:10.1109/TMI.2017.2712367 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1109/TMI.2017.2712367&link_type=DOI) [PubMed](http://medrxiv.org/lookup/external-ref?access_num=28708546&link_type=MED&atom=%2Fmedrxiv%2Fearly%2F2024%2F08%2F02%2F2024.08.01.24311342.atom) 5. 5.Becker, D.M., Tafoya, C.A., Becker, S.L., Kruger, G.H., Tafoya, M.J., Becker, T.K.: The use of portable ultrasound devices in low- and middle-income countries: a systematic review of the literature. Tropical Medicine & International Health 21(3), 294–311 (2016). doi:10.1111/tmi.12657 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1111/tmi.12657&link_type=DOI) 6. 6.Deng, J., Dong, W., Socher, R., Li, L.J., Li, K., Fei-Fei, L.: ImageNet: A large-scale hierarchical image database. In: 2009 IEEE Conference on Computer Vision and Pattern Recognition. pp. 248–255 (Jun 2009). doi:10.1109/CVPR.2009.5206848 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1109/CVPR.2009.5206848&link_type=DOI) 7. 7.Devarbhavi, H., Asrani, S.K., Arab, J.P., Nartey, Y.A., Pose, E., Kamath, P.S.: Global burden of liver disease: 2023 update. Journal of Hepatology 79(2), 516–537 (Aug 2023). doi:10.1016/j.jhep.2023.03.017 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1016/j.jhep.2023.03.017&link_type=DOI) [PubMed](http://medrxiv.org/lookup/external-ref?access_num=36990226&link_type=MED&atom=%2Fmedrxiv%2Fearly%2F2024%2F08%2F02%2F2024.08.01.24311342.atom) 8. 8.Drukker, L., Sharma, H., Droste, R., Alsharid, M., Chatelain, P., Noble, J.A., Papageorghiou, A.T.: Transforming obstetric ultrasound into data science using eye tracking, voice recording, transducer motion and ultrasound video. Scientific Reports 11(1), 14109 (Jul 2021). doi:10.1038/s41598-021-92829-1 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1038/s41598-021-92829-1&link_type=DOI) 9. 9.Eggleston, A.J., Farrington, E., McDonald, S., Aziz, S.: Portable ultrasound technologies for estimating gestational age in pregnant women: A scoping review and analysis of commercially available models. BMJ Open 12(11), e065181 (Nov 2022). doi:10.1136/bmjopen-2022-065181 [Abstract/FREE Full Text](http://medrxiv.org/lookup/ijlink/YTozOntzOjQ6InBhdGgiO3M6MTQ6Ii9sb29rdXAvaWpsaW5rIjtzOjU6InF1ZXJ5IjthOjQ6e3M6ODoibGlua1R5cGUiO3M6NDoiQUJTVCI7czoxMToiam91cm5hbENvZGUiO3M6NzoiYm1qb3BlbiI7czo1OiJyZXNpZCI7czoxMzoiMTIvMTEvZTA2NTE4MSI7czo0OiJhdG9tIjtzOjUwOiIvbWVkcnhpdi9lYXJseS8yMDI0LzA4LzAyLzIwMjQuMDguMDEuMjQzMTEzNDIuYXRvbSI7fXM6ODoiZnJhZ21lbnQiO3M6MDoiIjt9) 10. 10.Fayssoil, A., Behin, A., Ogna, A., Mompoint, D., Amthor, H., Clair, B., Laforet, P., Mansart, A., Prigent, H., Orlikowski, D., Stojkovic, T., Vinit, S., Carlier, R., Eymard, B., Lofaso, F., Annane, D.: Diaphragm: Pathophysiology and Ultrasound Imaging in Neuromuscular Disorders. Journal of Neuromuscular Diseases 5(1), 1–10. doi:10.3233/JND-170276 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.3233/JND-170276&link_type=DOI) [PubMed](http://medrxiv.org/lookup/external-ref?access_num=29278898&link_type=MED&atom=%2Fmedrxiv%2Fearly%2F2024%2F08%2F02%2F2024.08.01.24311342.atom) 11. 11.Fu, Z., Jiao, J., Yasrab, R., Drukker, L., Papageorghiou, A.T., Noble, J.A.: Anatomy-Aware Contrastive Representation Learning for Fetal Ultrasound (Aug 2022). doi:10.48550/arXiv.2208.10642 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.48550/arXiv.2208.10642&link_type=DOI) 12. 12.Hashim, A., Berzigotti, A.: Noninvasive Assessment of Schistosoma-Related Periportal Fibrosis. Journal of ultrasound in medicine 40(11), 2273–2287 (2021) 13. 13.Lin, T.Y., Goyal, P., Girshick, R., He, K., Dollár, P.: Focal Loss for Dense Object Detection (Feb 2018). doi:10.48550/arXiv.1708.02002 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.48550/arXiv.1708.02002&link_type=DOI) 14. 14.Liu, Y., Liu, X., Wang, S., Song, J., Zhang, J.: A novel method for accurate extraction of liver capsule and auxiliary diagnosis of liver cirrhosis based on high-frequency ultrasound images. Computers in Biology and Medicine 125, 104002 (Oct 2020). doi:10.1016/j.compbiomed.2020.104002 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1016/j.compbiomed.2020.104002&link_type=DOI) 15. 15.McManus, D.P., Dunne, D.W., Sacko, M., Utzinger, J., Vennervald, B.J., Zhou, X.N.: Schistosomiasis (primer). Nature Reviews: Disease Primers 4(1), 13 (2018) 16. 16.Meiburger, K.M., Acharya, U.R., Molinari, F.: Automated localization and segmentation techniques for B-mode ultrasound images: A review. Computers in Biology and Medicine 92, 210–235 (Jan 2018). doi:10.1016/j.compbiomed.2017.11.018 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1016/j.compbiomed.2017.11.018&link_type=DOI) 17. 17.Richter, J., Hatz, C., Campagne, G., Bergquist, N.R., Jenkins, J.M., Diseases, U.B.S.P.f.R.a.T.i.T.: Ultrasound in schistosomiasis : A practical guide to the standard use of ultrasonography for assessment of schistosomiasis-related morbidity : Second international workshop, October 22-26 1996, Niamey, Niger. Tech. Rep. TDR/STR/SCH/00.1, World Health Organization (2000) 18. 18.Spearman, C.W., Sonderup, M.W.: Health disparities in liver disease in sub-Saharan Africa. Liver International 35(9), 2063–2071 (2015). doi:10.1111/liv.12884 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1111/liv.12884&link_type=DOI) 19. 19.Wang, Z., Bovik, A., Sheikh, H., Simoncelli, E.: Image quality assessment: From error visibility to structural similarity. IEEE Transactions on Image Processing 13(4), 600–612 (Apr 2004). doi:10.1109/TIP.2003.819861 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1109/TIP.2003.819861&link_type=DOI) [PubMed](http://medrxiv.org/lookup/external-ref?access_num=15376593&link_type=MED&atom=%2Fmedrxiv%2Fearly%2F2024%2F08%2F02%2F2024.08.01.24311342.atom) [Web of Science](http://medrxiv.org/lookup/external-ref?access_num=000220784600014&link_type=ISI) 20. 20.Wilkinson, J.N., Saxhaug, L.M.: Handheld ultrasound in training – The future is getting smaller! Journal of the Intensive Care Society 22(3), 220–229 (Aug 2021). doi:10.1177/1751143720914216 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1177/1751143720914216&link_type=DOI) 21. 21.Zhang, L., Wu, X., Zhang, J., Liu, Z., Fan, Y., Zheng, L., Liu, P., Song, H., Lyu, G.: SEG-LUS: A novel ultrasound segmentation method for liver and its accessory structures based on muti-head self-attention. Computerized Medical Imaging and Graphics 113, 102338 (Apr 2024). doi:10.1016/j.compmedimag.2024.102338 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1016/j.compmedimag.2024.102338&link_type=DOI) 22. 22.1. Kainz, B., 2. Noble, A., 3. Schnabel, J., 4. Khanal, B., 5. Müller, J.P., 6. Day, T. Zhao, H., Men, Q., Gleed, A., Papageorghiou, A.T., Noble, J.A.: Ultrasound Video Segmentation with Adaptive Temporal Memory. In: Kainz, B., Noble, A., Schnabel, J., Khanal, B., Müller, J.P., Day, T. (eds.) Simplifying Medical Ultrasound. pp. 3–12. Lecture Notes in Computer Science, Springer Nature Switzerland, Cham (2023). doi:10.1007/978-3-031-44521-7_1 [CrossRef](http://medrxiv.org/lookup/external-ref?access_num=10.1007/978-3-031-44521-7_1&link_type=DOI) [1]: /embed/inline-graphic-1.gif