You are on page 1of 9

Hindawi

Contrast Media & Molecular Imaging


Volume 2022, Article ID 6361098, 9 pages
https://doi.org/10.1155/2022/6361098

Research Article
Maintenance and Management Technology of Medical Imaging
Equipment Based on Deep Learning

Bin Liu , Lingli Tong, Yanmei Liu, and Zhizhang Guo


Shandong Provincial Hospital Affiliated to Shandong First Medical University, Shandong, Jinan 250021, China

Correspondence should be addressed to Bin Liu; sddyykdx2022@163.com

Received 5 May 2022; Accepted 31 May 2022; Published 1 July 2022

Academic Editor: Mohammad Farukh Hashmi

Copyright © 2022 Bin Liu et al. This is an open access article distributed under the Creative Commons Attribution License, which
permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Medical equipment maintenance in modern hospital management is an emerging marginal discipline which is one of the
important branches of hospital management with the dual function of management and technology. The good or bad man-
agement of medical equipment directly affects the quality of hospital work. With the development of science and technology, the
scale of hospitals continues to expand and develop; hospitals are equipped with more and more medical equipment and its
technical content is getting higher and higher, which makes the medical equipment management and maintenance practitioners
more demanding. However, the situation of existing medical equipment management and maintenance personnel is not op-
timistic. For this reason, this paper designs a good database structure, which can effectively reduce data redundancy and better
avoid the problems that may occur during the database operation. As a reference guideline for database design, the three database
paradigms can be studied and understood in depth to help software designers design more “robust” databases, enabling effective
maintenance and management of medical imaging equipment.

1. Introduction large number of job-hopping; many people have switched to


become agents of major foreign medical equipment com-
As the trend of engineering, intelligence, and networking of panies [3].
medical diagnosis and treatment technology becomes more As the degree of integration increases, the complexity of
and more obvious, the proportion of medical equipment in the equipment also increases, while the localization rate of
medical and health care expenditure is also increasing [1]. medical equipment is not high, so we are limited in the field
The personnel engaged in medical equipment management of medical equipment [4, 5]. Technology is monopolized
and maintenance should also be improved year by year and coupled with large equipment by the manufacturer’s war-
the quality requirements of these personnel are getting ranty, does not provide drawings, sets the password,
higher and higher, but the actual situation is that their status maintenance technology blockade, and so on, and causes the
in the hospital is not clear, they are mostly under the rate of self-repair of equipment to decline. Especially for
auxiliary departments or logistics departments, and the some high-grade precision equipment to buy a warranty has
trend of being weakened and marginalized weakened the become a trend. Medical equipment maintenance surface is
role of medical equipment management and maintenance in increasingly narrow plus a variety of different types of
the overall medical activities [2]. Some hospitals even cancel equipment whose professional division is too fine; existing
the medical equipment management department to engage technical personnel can only solve some basic maintenance
in the marketization and socialization of medical equipment of equipment [6]. Due to the obvious lack of technical
maintenance, which makes medical equipment management personnel, many people are working in several jobs; it is
and maintenance can not meet the clinical needs in terms of difficult to do fine and is specialized also in making medical
timeliness or economy, resulting in a shortage of medical equipment management and maintenance personnel work
equipment management and maintenance personnel and a under increased pressure; in addition, relatively low
2 Contrast Media & Molecular Imaging

treatment promotion is hopeless; career prospects are


generally not favored [7–9]. Data migration Data storage

Interface layer
module module

2. Related Work Data statistics Data annotation


module module
In order to achieve more and better research results in the
field of imaging using deep learning techniques and put Functional layer
them into clinical applications as early as possible, based on
the model and characteristics of deep learning, researchers
are first required to have a large amount of medical image Data exchange layer
annotation data, while a traditional manual annotation is too
Figure 1: Schematic diagram of the entire system architecture.
time-consuming and laborious, the accuracy of automatic
annotation [10] is not yet up to the requirement of deep and to minimize the overall. The data exchange layer is
learning techniques for high accuracy of datasets, and the mainly used to complete the data connection and exchange
results are annotated by traditional methods. The traditional between the database and the client, which is responsible for
medical image annotation methods and results are therefore the data exchange between the whole system and the da-
not suitable for use in deep learning research methods [11]. tabase, and the design of the data exchange layer needs to
In terms of medical image annotation tools, although there comply with the following principles: to ensure that the
are many software systems for medical image processing system can connect to the requested database when needed
from well-known large companies in the medical field, such and perform common database operations such as adding,
as Neusoft Medical, Heiner Medizin, and Siemens at home deleting, changing, and checking the corresponding data-
and abroad, no company or enterprise has yet developed a base table data, and to require that the system can be
perfect annotation system for deep learning technology in connected to the database when needed. It is also required
medical image annotation as a new research hotspot com- that the operation process should not affect other database
bined with the field of imaging. Although some image an- table data and be accurate [20].
notation widgets exist, they all have a single function and do
not have the functions of acquiring medical big data, data
storage, data statistics, annotation of many types and for- 3.2. Database Design. A well-designed database structure
mats of medical images, and their visualization [12]. can effectively reduce data redundancy and better avoid
Therefore, how to extract a large number of different kinds of possible problems during database operations. As a refer-
medical image data from different hospital PACS system ence guideline for database design, an in-depth study and
databases, store, manage, report, browse, and annotate the understanding of the three paradigms can help software
images and annotation file formats that can be directly used designers to design a more “robust” database.
for deep learning, and then provide a large number of da- Based on this, the database table design in this project
tabases for the research progress of deep learning technology strictly follows the basic principles of the three paradigms.
in the medical field is the primary problem that is commonly
faced and urgently needed to be solved by experts and The First Paradigm (1NF). Atomicity, as a typical feature of
scholars who apply deep learning technology to the medical the first paradigm, determines that each field in a database
field [13–18]. table is a single attribute and cannot be subdivided; i.e., no
more than one value can appear in the same column, as
3. Overall System Design shown in Table 1, which satisfies this paradigm, and Table 2,
which does not satisfy this paradigm.
3.1. Overall Architecture Design. Based on the research at the
hospital site and the analysis of the current needs in the field The Second Paradigm (2NF). The second paradigm is based
of medical image research, the design of this project divides on the first paradigm, which means that the second para-
the overall system architecture into the following three digm is satisfied only if the first paradigm is satisfied first.
levels: interface layer, functional layer, and data exchange The column used as the unique identifier for each instance in
layer, as shown in Figure 1. As the name implies, the in- this paradigm table is called the primary key or primary
terface layer is the common system operation interface, keyword. This column with a unique identifier ensures the
which can be seen directly by the user when starting the uniqueness of the data rows in the table and avoids the
software system [19]. The design of the interface layer situation where some field values will depend on some of the
generally follows the following principles: to ensure the fields to exist, thus doing away with partial dependencies. If,
perfection of the functions while making full use of the because there are multiple primary keys in the table, some of
interface space, consistent background color, neat typog- the fields are completely dependent on the primary key,
raphy, different font sizes, and prominent functional while the rest of the fields are partially dependent on one of
modules, so that the interface looks beautiful and generous the primary keys, the situation of partial dependency will
as a whole, comfortable for the user to use, and easy to arise. At this time, in order to make the table structure
operate; the functional layer is mainly used to receive and conform to the second paradigm, we split the table and use
implement requests for various functions on the interface, the split primary key as the unique primary key of each new
Contrast Media & Molecular Imaging 3

Table 1: Example of the first paradigm. information of each annotated patient. The fields in the
Field 2 3 4
annotation information table mainly include ImaNum,
XmlNum, AnnotationDoctor, AnnotationFlag, DicomPath,
Data 2 3 4
XmlPath, PNGPath, path (PngPath), and other basic patient
information corresponding to this data. Among them, the
image number and XML file number are the primary keys of
Table 2: Example of not satisfying the first paradigm. the table, which represent the unique numbers of the saved
Field 2 3 4 images and generated XML files after annotation, and are
Data 2 3.1 3.2 4 automatically generated during the annotation process, and
the two numbers correspond to each other; since the whole
annotation process requires the participation of at least three
expert physicians, the annotation expert field is used to
table, respectively, so that the new tables all become fully record the annotation physicians of each data. The DICOM
dependent, which can satisfy the second paradigm. file path, XML file path, and PNG file path are used to record
The Third Paradigm (3NF). Satisfying the third paradigm the location where each image data is saved on the server
presupposes that the second paradigm is satisfied first. This after annotation. [21–23]
paradigm requires that all fields in the table other than the
primary key depend directly on the primary key, and there
can be no passing dependencies. By passing dependency, we 3.3. Data Exchange Layer Design. The data exchange layer is
mean that nonprimary key column 1 depends on non- responsible for the connection between the system and the
primary key column 2, while nonprimary key column 2 database and the system’s operation on the database, which
depends on the primary key. Since the fields that generate is designed to be implemented through ADO (ActiveX Data
pass dependency are redundant fields, the design of the third Objects). As an object-oriented programming interface, it is
paradigm eliminates the pass dependency while better not only a powerful programming model for data access but
avoiding data redundancy. Similar to the second paradigm, also the simplest, most direct, and efficient way to manip-
when a pass dependency occurs, it can also be solved by ulate the databases currently supported by Microsoft. In
using relational decomposition, where the field in the addition, this method provides a lot of convenience for
original table where the pass dependency occurs is taken out programmers due to its ease of use, speed, low memory
and put into a new table, and the primary key of the new consumption, and other advantages.
table is set to the dependent field in the original table, at ADO (ActiveX Data Objects) contains the following
which time the field is treated as a foreign key of the original objects: Connection, Command, Field, Parameter, Record,
table. Recordset, Property, Error, Stream, and so on. Error, Stream
According to the design architecture of the whole sys- objects, etc. The object model is shown in Figure 6.
tem, the database relationship diagrams used for each The specific steps of using ADO to operate the database
functional module are drawn separately using the entity- are as follows:
connection diagram as shown in Figure 2.
As shown in Figures 3–5, the database tables of each (1) First, add a reference to the ADO dynamic library file
module are designed according to the relationship diagram; and initialize the library environment
the patient information table to save the migrated data, the (2) Second, connect the system to the database through
Bucket table to manage the cloud storage files, and the the Connection object
annotation table to manage and save the information related (3) Then, the corresponding SQL statement is operated
to the data to be annotated and annotated, etc., are created, by the Command object, and the data set of the
respectively. execution result is obtained by the Recordset object
The first step is to design the database tables for the data
(4) Finally, the database connection is disconnected and
migration module. The database table of this module con-
the corresponding objects are released
tains the record and storage of basic information about
patients, examination, and diagnosis report information and The DataManager class in the program design contains
examination and diagnosis image information. According to the operations related to the whole system and the database.
the field research, in order to meet the demand of each The SqlConnection object for establishing database con-
department for patient information, the basic information of nection is created in the constructor of the DataManager
patients, examination and diagnosis reports, and image class, and the configuration information in the set.ini
information are usually stored in different database tables, so configuration file is read, including the IP address of the
for the operation process of this system, if the basic infor- specified database, the name of the database, the database
mation of patients and diagnosis reports and image infor- user name, and the database login password, to connect to
mation are also stored in different database tables when the specified database. The main functions contained in the
designing. DataManager class are RunSqlCommand, GetDS, etc.
Finally, the database table of the image annotation Among them, the Run SQL Command function is mainly
module is designed to record and store the image files and responsible for executing the SQL statements passed as
XML files generated after the annotation, as well as the parameters in the database connected to the program, more
4 Contrast Media & Molecular Imaging

System user

Encrypted Decryption
Read Write in
upload Download

Patient information
Inspection Inspection
time results

date of Age type image


ID
birth
Gender position

Figure 2: Data migration module of the entity-linkage diagram.

System user

Encrypted Decryption
Read Write in
upload Download

Image data

Sequence
Image path
image

Figure 3: Entity-linkage diagram of the data storage module.

System user

Query Statistical display

Patient information

particular
year Lesion site
time
type
age keyword

Figure 4: Entity-linkage diagram of data statistics module.

commonly used to execute database update and delete the object to realize the operation of the specified database
statements, etc.; the main function of the Get DS function is information.
to obtain the information stored in the database in the form
of data sets. It is mainly used when the system performs 4. Maintenance of Medical Imaging Equipment
query operations. First, edit the corresponding SQL state-
ment; second, create a new DataManager class object; sec- Medical imaging equipment is a large and valuable piece of
ond, import the SQL statement to be executed into the precision medical equipment, especially X-ray imaging
corresponding function; finally, use the function executed by means such as CR, CT, and other imaging pieces of
Contrast Media & Molecular Imaging 5

System user

Query Access Tagging preservation

Patient Image
Label file
information information

Name/ Tag Nodule


Age Xm1 file
ID information length
Image
Nodule file
Gender Type Size
coordinates

Inspection Check what Slice Inspection


time you see thickness number

Check Diagnostic Slice serial


image results number number

Figure 5: Entity-linkage diagram of the data annotation module.

Connection

Errors Errors

Command

Parameter Parameter

Recordset

Fields Fields

Figure 6: Schematic diagram of the ADO object model.

equipment. With the development of science and technol- performance characteristics. Due to the differences in the
ogy, medical imaging equipment has developed into a set of structure of the equipment, the operating procedures are not
computers, electronics, mechanical optics, materials science the same. The operating procedures are generally as follows:
and other technologies, complex structure, a wide range of
(1) Before operating the equipment, first of all, we
functions, and high prices of large expensive precision
should first check whether the console instruments
medical equipment. In clinical applications ensuring that the
switch in the normal position [24–26].
imaging equipment is in good condition is the basis for the
accuracy of patient diagnosis; therefore, it is very important (2) Turn on the power switch, power on, and the
to strengthen the daily maintenance of imaging equipment. equipment is in the warm-up process.
The maintenance of medical imaging equipment includes (3) According to the specific needs of fluoroscopy or
proper use, daily maintenance, and a regular overhaul. camera, select the appropriate technical parameters.
In the selection of camera exposure conditions
should pay attention to the m A, kV, and exposure
4.1. Compliance with Operating Procedures. In order to time selection order; we generally should first choose
ensure the normal operation of CR and CT, a set of operating the m A value, then choose the kV value, and do not
procedures are arranged according to their structure and first choose the kV value, after the m A value.
6 Contrast Media & Molecular Imaging

(4) In the operation of the foot control switch or a 5. System Applications


manual switch, the action should be rapid, and the
force should be balanced and appropriate. 5.1. Operation Parameter Monitoring. The system provides
(5) Finish using the equipment, turn off the machine, set real-time monitoring of the operating parameters of the
the regulator to the lowest position, and finally turn important components of the equipment, including the
off the main power supply. number of exposures of the bulb, bulb temperature, cooling
oil temperature, liquid helium level and pressure, cold head
temperature, temperature, and humidity of the machine
4.2. Routine Maintenance of Medical Imaging Equipment. room. It also sets up thresholds and notifies the equipment
Daily maintenance work includes careful operation, keeping security personnel in time if the thresholds are exceeded. The
the machine room dry, good cleaning and hygiene, paying following is a description of several important monitoring
attention to safety inspection, and other aspects. parameters.
Preventing excessive force and strong vibration, espe-
cially X-ray tube, spot film frame, etc., should be more 5.1.1. CT Bulb Tube Temperature. The spherical tube is one
careful when moving to prevent damage to X-ray tube and of the core components of CT, which consists of a tube core,
other precision fragile devices due to collision. tube sleeve, and supporting oil circulation cooling system,
where the tube core includes a rotating anode, cathode, and
rotating shaft bearing. When the cathode electron beam
4.3. Doing a Good Job of Cleaning and Sanitation to Keep the bombards the focal point on the anode target surface, about
Equipment Clean. Preventing dust from entering the inte- 99% of the heat energy and 1% of the ray energy will be
rior of the equipment is an important part of daily main- generated, so the spherical tube will generate a lot of heat.
tenance. Entering dust into the interior of the equipment for Once the bulb overheats, it can lead to high voltage fires,
a long time, but not removed, will make some components filament volatilization, and other malfunction phenomena.
have poor contact, such as poor contact between the relay Therefore, real-time monitoring of the tube temperature and
contacts, etc., and also make some components have short the correct and reasonable use of the tube not only can
circuits, such as autotransformer interturn short circuit. obtain high-quality images but also can extend the life of the
Adhere to the daily work and first clean the equipment and tube (Figure 7).
indoor treatment. Dust removal is best to use a dust collector
and try not to use a wet cloth to wipe [27–29].
5.1.2. Scanning Rack Temperature. X-ray exposure will
Antivibration. X-ray tubes in transport and use should pay generate a lot of heat, due to the vacuum environment inside
special attention to antivibration and antitouch. As the the core and heat in the form of radiation to the outer wall of
anode is heavy and work anode will generate a lot of heat, so the core, through the cooling of oil to absorb heat; cooling oil is
transport and use should be flat or let the anode face down. cooled by the radiator. Scanning rack temperature can reflect
the bulb tube cooling, thermal efficiency, most CT high load
Attention to the Exposure Interval. X-ray machines in the operating hours, the scanning rack temperature of 32∼36°C,
continuous work should be necessary intervals to make and the scanning rack alarm temperature of 40°C; see Figure 2.
cooling and the surface temperature of the tube sleeve more
than 50–60°C.
5.1.3. Liquid Helium Levels and Pressures. The magnetic
field of a superconducting type magnet is established by
Observation Window. X-ray tube sleeve maintains a suffi-
passing current to the superconducting coil in a super-
cient amount of insulating oil, often through the window to
conducting environment to generate a strong magnetic field
observe whether the tube sleeve Air bubbles exist and if there
[14]. Maintaining a strong magnetic field for a long time is
should be timely replenishment of oil exhaust. Observe
required to keep the superconducting coil in an ultralow
whether the X-ray tube focuses on the center of the window;
temperature environment (superconducting coil operating
otherwise, it will affect the results of photography.
temperature of 4.2 K). Maintaining an ultralow temperature
environment requires liquid helium as a refrigerant, and the
Glow. The exposure, such as an X-ray tube, emits a very faint
superconducting coil is immersed in a container filled with
glow, due to some electron impact on the glass wall. The
liquid helium. Under normal conditions, the liquid helium
outline of the fluorescence must be distinguished from the
pressure ranges from 3.8 to 4.2 psi (1 psi � 6.89476 kPa) and
ionization discharge phenomenon that occurs due to poor
the liquid helium capacity should be greater than 60% (50%
vacuum. The former occurs in the glass wall; kV increases
is the limit). If the liquid helium pressure exceeds the normal
and weakens; the latter increases with kV and is enhanced.
value or if the liquid helium capacity is less than the limit
The weak fluorescence of the glass tube wall does not affect
value, there is a risk of loss of excess (Figure 8).
the normal use of the X-ray tube. However, a mild glow
discharge is a precursor to X-ray tube damage.
Listen to the sound: when the high voltage occurs, if 5.1.4. Machine Room Temperature and Humidity. Under
there is a discharge sound, it should immediately stop normal circumstances, the scanning room temperature
working and repair [30]. should be controlled at 20∼25°C; too high and too low
Contrast Media & Molecular Imaging 7

800 25.0

700 22.5

Scanning frame temperature


600 20.0

500 17.5
temperature

400 15.0

300 12.5

200 10.0

100 7.5

0 5.0

0 20 40 60 80 100 0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0
time time
(a) (b)

Figure 7: CT bulb tube temperature and scan frame temperature profile.

16
80
14
Liquid nitrogen pressure

70 12
Liquid nitrogen level

60 10

8
50
6
40 4

30 2

0
0.0 2.5 5.0 7.5 10.0 12.5 15.0 17.5 20.0 0 2 4 6 8 10
time time
(a) (b)

Figure 8: MR liquid helium level and pressure profile.

temperatures will affect the uniformity and stability of the experience, maintenance manuals, existing knowledge re-
magnet temperature center frequency, which will also lead to lated to imaging equipment, and knowledge mined from
the magnet temperature control system not to work prop- logs, and through log mining, association rules between
erly. Scanning room humidity is generally controlled at faults are generated and updated into the fault diagnosis
about 50% to 60%; too high humidity will cause the gradual data. Table 3 shows the 3.0 T MRI remote fault diagnosis
oxidation and corrosion of components; too low humidity table of our hospital.
will cause an electrostatic phenomenon, resulting in the fact
that a large amount of dust adsorption can not dissipate heat,
causing a crash. 5.3. Fine Management of Operation and Use. Real-time
statistics show the number of daily scans, scanning time,
5.2. Remote Troubleshooting. By establishing a fault diag- number of examinations, scanning mode and parts, etc., and
nosis database, when the system acquires fault codes, the best generate monthly reports in PDF format. The report is
confidence solution is matched from the database by a mainly divided into two parts; the first part is through a
hybrid algorithm based on constraints and division asso- comprehensive analysis of monthly scanning data and dy-
ciation rules and fed back to the engineer. The database is namic comparison with historical data, from the operational
used to store the knowledge related to the repair and efficiency of each part of the decision indicators for in-depth
maintenance of imaging equipment and its corresponding analysis, multiangle display imaging equipment monthly
set of fault phenomena, which comes from expert workload, and equipment usage. The second part is a
8 Contrast Media & Molecular Imaging

Table 3: 3.0 T MR remote troubleshooting table.


2019.9.15 08: The communication error of the sickbed drawing motor occurred twice Restart after a major shutdown and
Risk
00:03 on September 14, 2019 replace PHPs or Sri
2019.09.15 08: The resistance value of gradient coolant is low, which occurred twice on Gradient water-cooled degasser
Risk
00:03 September 14, 2019 treatment or addition of deionized water
2019.09.15 08: HEC detected that the pressure of the gradient water cooling pipeline Check gradient coolant shutdown and
Risk
00:04 was too low, which occurred twice on September 14, 201909 restart

comprehensive analysis of the operating data of the evaluation of artificial intelligence–based diagnostic imaging
equipment, including a comprehensive analysis of the algorithms: summary and recommendations,” Journal of the
monthly scanning calendar, scanning volume distribution, American College of Radiology, vol. 18, no. 3, pp. 413–424,
scanning time distribution, utilization rate and scanning 2021.
efficiency, scanning coils and scanning parts, and a multi- [3] C. Chamunyonga, C. Edwards, P. Caldwell, P. Rutledge, and
J. Burbery, “The impact of artificial intelligence and machine
faceted, multiangle comparison and display of the operating
learning in radiation therapy: considerations for future cur-
efficiency of the equipment. riculum enhancement,” Journal of Medical Imaging and
Radiation Sciences, vol. 51, no. 2, pp. 214–220, 2020.
6. Conclusions [4] D. Shen, G. Wu, and H. I. Suk, “Deep learning in medical
The best maintenance of the correct use of medical imaging image analysis,” Annual Review of Biomedical Engineering,
vol. 19, no. 1, pp. 221–248, 2017.
equipment, good routine, and regular maintenance of
[5] W. Lie, B. Jiang, and W. Zhao, “Obstetric imaging diagnostic
medical imaging equipment can avoid most of the failures,
platform based on cloud computing technology under the
greatly extending the life of the equipment; a well-designed background of smart medical big data and deep learning,”
database structure can effectively reduce data redundancy IEEE Access, vol. 8, pp. 78265–78278, 2020.
and better avoid the database operation process and [6] D. S. Kermany, M. Goldbaum, W. Cai et al., “Identifying
problems may appear. As a reference guide for database medical diagnoses and treatable diseases by image-based deep
design, three database examples can be studied and un- learning,” Cell, vol. 172, no. 5, pp. 1122–1131.e9, 2018.
derstood in depth to help software designers design a more [7] T. J. Sheng, M. S. Islam, N. Misran et al., “An internet of things
“robust” database. There should be effective maintenance based smart waste management system using LoRa and
and management of medical imaging equipment. Engineers tensorflow deep learning model,” IEEE Access, vol. 8,
engaged in overhaul work should have the appropriate pp. 148793–148811, 2020.
professional knowledge and certain work experience; [8] M. Havaei, A. Davy, D. Warde-Farley et al., “Brain tumor
segmentation with deep neural networks,” Medical Image
overhaul should be done well in advance and then in ac-
Analysis, vol. 35, pp. 18–31, 2017.
cordance with the plan to do a good job in advance of the [9] G. Dhiman, S. Juneja, W. Viriyasitavat et al., “A novel ma-
overhaul plan, and then gradually check according to the chine-learning-based hybrid CNN model for tumor identi-
plan to avoid “blind” overhaul without a plan and overhaul fication in medical image processing,” Sustainability, vol. 14,
tool specifications to complete, disassemble the wire to no. 3, p. 1447, 2022.
number, and disassemble the screws and nuts to be placed in [10] A. Esteva, A. Robicquet, B. Ramsundar et al., “A guide to deep
a safe location; pay attention to their own effective pro- learning in healthcare,” Nature Medicine, vol. 25, no. 1,
tection and maintenance and equipment, and damaged parts pp. 24–29, 2019.
should be replaced in a timely manner. [11] M. Frid-Adar, I. Diamant, E. Klang, M. Amitai, J. Goldberger,
and H. Greenspan, “GAN-based synthetic medical image
augmentation for increased CNN performance in liver lesion
Data Availability classification,” Neurocomputing, vol. 321, pp. 321–331, 2018.
[12] I. Lee and Y. J. Shin, “Machine learning for enterprises: ap-
The experimental data used to support the findings of this plications, algorithm selection, and challenges,” Business
study are available from the corresponding author upon Horizons, vol. 63, no. 2, pp. 157–170, 2020.
request. [13] Z. A. A. Alyasseri, M. A. Al-Betar, I. A. Doush et al., “Review
on COVID-19 diagnosis models based on machine learning
Conflicts of Interest and deep learning approaches,” Expert Systems, vol. 39, no. 3,
Article ID e12759, 2021.
The authors declare that they have no conflicts of interest [14] X. Mao, X. Feng, F. Cheng, and P. Chen, “Intelligent medical
regarding this work. informatics management system based on pattern recognition
and visual multimedia: a deep learning perspective,” Journal
References of Medical Imaging and Health Informatics, vol. 10, no. 5,
pp. 1113–1120, 2020.
[1] Z. Liu, “Construction of urban agricultural health informatics [15] Y. Sun and D. Zhang, “Diagnosis and analysis of diabetic
safety supervision system based on imaging and deep retinopathy based on electronic health records,” IEEE Access,
learning,” Concurrency and Computation: Practice and Ex- vol. 7, pp. 86115–86120, 2019.
perience, vol. 33, no. 12, p. e5834, 2021. [16] P. Shah, F. Kendall, S. Khozin et al., “Artificial intelligence and
[2] D. B. Larson, H. Harvey, D. L. Rubin, N. Irani, J. R. Tse, and machine learning in clinical development: a translational
C. P. Langlotz, “Regulatory frameworks for development and perspective,” NPJ digital medicine, vol. 2, no. 1, p. 69, 2019.
Contrast Media & Molecular Imaging 9

[17] A. Rajkomar, J. Dean, and I. Kohane, “Machine learning in


medicine,” New England Journal of Medicine, vol. 380, no. 14,
pp. 1347–1358, 2019.
[18] S. Sengupta, S. Basak, P. Saikia et al., “A review of deep
learning with special emphasis on architectures, applications
and recent trends,” Knowledge-Based Systems, vol. 194, Article
ID 105596, 2020.
[19] P. Lambin, R. T. Leijenaar, T. M. Deist et al., “Radiomics: the
bridge between medical imaging and personalized medicine,”
Nature Reviews Clinical Oncology, vol. 14, no. 12, pp. 749–762,
2017.
[20] J. De Fauw, J. R. Ledsam, B. Romera-Paredes et al., “Clinically
applicable deep learning for diagnosis and referral in retinal
disease,” Nature Medicine, vol. 24, no. 9, pp. 1342–1350, 2018.
[21] Q. Liu, C. Liu, and Y. Wang, “Integrating external dictionary
knowledge in conference scenarios the field of personalized
machine translation method,” Journal of Chinese Informatics,
vol. 33, no. 10, pp. 31–37, 2019.
[22] P. An, Z. Wang, and C. Zhang, “Ensemble unsupervised
autoencoders and Gaussian mixture model for cyberattack
detection,” Information Processing & Management, vol. 59,
no. 2, Article ID 102844, 2022.
[23] R. Ali, M. H. Siddiqi, and S. Lee, “Rough set-based approaches
for discretization: a compact review,” Artificial Intelligence
Review, vol. 44, no. 2, pp. 235–263, 2015.
[24] R. Ali, S. Lee, and T. C. Chung, “Accurate multi-criteria
decision making methodology for recommending machine
learning algorithm,” Expert Systems with Applications, vol. 71,
pp. 257–278, 2017.
[25] G. Cai, Y. Fang, J. Wen, S. Mumtaz, Y. Song, and V. Frascolla,
“Multi-carrier $M$-ary DCSK system with code index
modulation: an efficient solution for chaotic communica-
tions,” IEEE Journal of Selected Topics in Signal Processing,
vol. 13, no. 6, pp. 1375–1386, 2019.
[26] K. Chandra, A. S. Marcano, S. Mumtaz, R. V. Prasad, and
H. L. Christiansen, “Unveiling capacity gains in ultradense
networks: using mm-wave NOMA,” IEEE Vehicular Tech-
nology Magazine, vol. 13, no. 2, pp. 75–83, June 2018.
[27] S. Palanisamy, B. Thangaraju, O. I. Khalaf, Y. Alotaibi,
S. Alghamdi, and F. Alassery, “A novel approach of design and
analysis of a hexagonal fractal antenna array (HFAA) for next-
generation wireless communication,” Energies, vol. 14, no. 19,
p. 6204, 2021.
[28] S. Nagi Alsubari, S. N. Deshmukh, A. Abdullah Alqarni et al.,
“Data analytics for the identification of fake reviews using
supervised learning,” Computers, Materials & Continua,
vol. 70, no. 2, pp. 3189–3204, 2022.
[29] A. Radwan, M. F. Domingues, and J. Rodriguez, “Mobile
caching-enabled small-cells for delay-tolerant e-Health apps,”
in Proceedings of the 2017 IEEE International Conference on
Communications Workshops (ICC Workshops), pp. 103–108,
IEEE, Paris, France, May 2017.
[30] F. B. Saghezchi, A. Radwan, J. Rodriguez, and T. Dagiuklas,
“Coalition formation game toward green mobile terminals in
heterogeneous wireless networks,” IEEE Wireless Commu-
nications, vol. 20, no. 5, pp. 85–91, 2013.

You might also like