|
Algorithm 2: The pseudo-code used to create search strings. |
-
1:
Databases ← [Google Scholar, Springer Link, PubMed, MDPI, Science Direct, IEEE Xplore]
-
2:
Initialize Keywords
-
3:
Disease_Keywords ← [Pulmonary, Tuberculosis, TB]
-
4:
Aim_Keywords ← [Localization, Segmentation, Explainable, Interpretable, Identification, Detection, Diagnosis, Screening]
-
5:
Method_Keywords ← [Deep Learning, Weakly Supervised, CNN, Neural Network]
-
6:
Data_Keywords ← [Chest X-ray, Chest Radiography]
-
7:
Search_String ← “”
-
8:
for
disease ∈ Disease_Keywords
do
-
9:
for aim ∈ Aim_Keywords do
-
10:
for data ∈ Data_Keywords do
-
11:
Search_String = disease AND aim AND data
-
12:
for database ∈ Databases do
-
13:
papers ← databases.search(Search_String)
-
14:
end for
-
15:
end for
-
16:
end for
-
17:
end for
|