Abstract
Purpose
To build a novel, open-source, purely web-based platform system to address problems in the development and clinical use of computer-assisted detection/diagnosis (CAD) software. The new platform system will replace the existing system for the development and validation of CAD software, Clinical Infrastructure for Radiologic Computation of United Solutions (CIRCUS).
Methods
In our new system, the two top-level applications visible to users are the web-based image database (CIRCUS DB; database) and the Docker plug-in-based CAD execution platform (CIRCUS CS; clinical server). These applications are built on top of a shared application programming interface server, a three-dimensional image viewer component, and an image repository.
Results
We successfully installed our new system into a Linux server at two clinical sites. A total of 1954 cases were registered in CIRCUS DB. We have been utilizing CIRCUS CS with four Docker-based CAD plug-ins.
Conclusions
We have successfully built a new version of the CIRCUS system. Our platform was successfully implemented at two clinical sites, and we plan to publish it as an open-source software project.
Similar content being viewed by others
Avoid common mistakes on your manuscript.
Introduction
Computer-assisted detection/diagnosis (CAD) software has been developed by many research groups [1,2,3,4,5], and machine learning is one of the key technologies in CAD software. The development of CAD software based on machine learning consists of several steps: (1) collection of clinical data for machine learning, (2) algorithm development and initial training using the collected data, (3) evaluation of the performance and clinical usefulness of the software, and (4) iterative algorithm refinement and retraining using the data collected in the evaluation step [6, 7].
Among these steps, the collection of clinical data with sufficient quality and quantity is often the most time-consuming. Many clinically important diseases have low prevalence rates, and labeling clinical images requires expert knowledge. Evaluation of the clinical usefulness of CAD software is also challenging. Although it is easy to evaluate the standalone performance of CAD software using a known dataset, the actual usefulness of CAD software can only be evaluated in a real clinical environment, where radiologists use CAD software and record how it affects their diagnoses on a daily basis. To use CAD software in a clinical environment, it is necessary to establish a way to continuously access an in-hospital digital imaging and communications in medicine (DICOM) network and execute CAD software before interpretation by radiologists.
To address these problems, we constructed a platform for the development and validation of CAD software. This platform was named Clinical Infrastructure for Radiologic Computation of United Solutions (CIRCUS) [6, 8], which consists of two applications that worked only on the Windows operating system. One is a Windows-based image database (CIRCUS DB; database), which stores anonymized DICOM images and allows users to define pixel-based label data via a two-dimensional (2D)-based pixel-by-pixel painting user interface. The other application is a web-based CAD processing and evaluation server (CIRCUS CS; clinical server), which continuously processes DICOM images via CAD plug-ins based on Windows executable files, shows the results on a browser, and evaluates the results based on diagnosis by radiologists (clinical feedback).
Recent advances in web technology have made it possible to process a large amount of medical data directly on browsers and display images using advanced techniques such as multiplanar reconstruction (MPR) and volume rendering (VR). These techniques are helpful in grasping the shape of a lesion and define high-quality voxel-based label data [9]. In addition, an increasing number of recent CAD algorithms based on deep learning are implemented in scripting (i.e., noncompiling) languages, including Python, and they tend to depend on different runtimes, external libraries, and graphics processing units (GPUs) [3, 4]. Thus, it is necessary to prepare and maintain various CAD algorithms in a secure and isolated manner.
On the bases of these backgrounds, we have decided to build a novel, open-source, purely web-based version of CIRCUS DB/CS, as well as a DICOM viewer component with advanced viewing techniques. To the best of our knowledge, there was no open-source software solution that met all of our requirements. The objective of this study was to build a novel platform for the development and validation of CAD software. The main improvements of the new CIRCUS system are as follows:
The new CIRCUS system works on Linux.
The interface is accessible via common web browsers without installing a special application.
The volume-based viewing and painting component makes it easy to define 3D shapes of labels.
Docker-based plug-ins can drastically reduce the cost of setting up the environment to process CAD software.
Materials and methods
Figure 1 shows an overview of the new CIRCUS system. The two top-level applications visible to users are the new versions of CIRCUS DB and CIRCUS CS. These applications are built on top of a shared application programming interface (API) server, a three-dimensional (3D) DICOM viewer component (CIRCUS RS; rendering server), and a DICOM image repository, each of which will be described in the following sections.
We chose JavaScript as the primary programming language. JavaScript runs both on the front end (browsers) and the back end (servers, via Node.js [10]), which was an important characteristic for achieving efficient image viewing, as discussed later. Other technologies we adopted included Nginx [11] (a lightweight web server used as a reverse proxy), MongoDB [12] (a NoSQL database management system that enables a flexible data structure [13, 14]), and Docker [15] (operating system virtualization software, discussed in detail later).
CIRCUS RS: DICOM image viewer
CIRCUS RS is a web-based DICOM viewer with support for MPR (Fig. 2a) and VR (Fig. 2b). It consists of a viewer component running on browsers and an image server library running on the server side. A key feature is a voxel-based annotation interface with which a user can define labels or view lesion candidates in a 3D space. The annotation interface also supports 2D geometrical annotation (ellipse or rectangle) (Fig. 2c). The VR code was written in OpenGL Shading Language (GLSL). The GLSL enables us to accelerate the rendering process on a dedicated GPU or central processing unit (CPU)-integrated GPU.
Since CAD software developers typically need to handle large thin-slice volume data, CIRCUS RS is optimized for this scenario. To achieve this, we implemented it so that MPR calculation can be performed both on the server side (“dynamic mode”) and the browser side (“client mode”). In the dynamic mode, the server reconstructs an MPR image for each frame, encodes it into portable network graphics (PNG), and transfers it to the browser. In the client mode, the whole volume is first transferred to the browser, and the browser performs the MPR calculation. The dynamic mode has a low frame rate because a network transfer occurs for each frame. The client mode yields a high frame rate, but it requires a large amount of memory on the browser side, and it also suffers a slow initial response. We also implemented a “hybrid mode,” where the rendering mode is seamlessly switched from the dynamic mode to the client mode after the whole voxel data have been transferred to the browser. This enables both a good initial response time and a high frame rate. The same reconstruction code written in JavaScript runs in all modes.
API server
The API server handles all text and binary data used in CIRCUS DB and CIRCUS CS. Communication is based on JavaScript Object Notation (JSON), and a client (e.g., a browser) is authorized via an OAuth 2.0 [16] token. In the new CIRCUS system, the API layer and the user interface are clearly separated. This makes it easy for developers to integrate the CIRCUS system with various types of software, including desktop applications such as commercial DICOM viewers and reporting systems, or to write a script to analyze data managed by the CIRCUS system. Most data are stored in a MongoDB database.
CIRCUS DB: image database
CIRCUS DB is a clinical image database application for collecting datasets used to develop and evaluate CAD software. It stores DICOM series, optionally after anonymization, and users can define labels on the stored images. The labeling part is powered by CIRCUS RS, and thus supports both 2D- and 3D-based labels.
In CIRCUS DB, clinical data are organized on the basis of a unit called a case, which has a globally unique identifier. Each case belongs to a group called a project. Each case can have one or more DICOM series, on which a user can define one or more labels. A case and a label can also have structured metadata called attributes, whose format is defined at the project level using a subset of JSON Schema [17]. Each case data have history information called revisions, which keep track of a list of attributes and labels data for a certain time point. It is thus possible to create a new revision based on attributes or labels registered in the past.
Figure 3 shows the web interface used to define labels and their attributes in CIRCUS DB. There is a grid of DICOM viewer components (CIRCUS RS) on the right, on which users can define labels. Users can also observe MPR images (sagittal, coronal, oblique) and define 3D voxel labels directly on them. The left panel has a series selector and an attribute editor. In this example, the case belongs to a lung nodule database project, and users assign label-based metadata (e.g., size, diameter) to each label (i.e., nodule). We took advantage of MongoDB’s flexible data structure [13, 14] to efficiently store and search these custom attributes.
As management functions, firstly, each case has history information for attributes and labels. That is, it is possible to update attributes or labels registered in the past. Second, the DICOM series belonging to each case cannot be deleted. In addition, if images of the DICOM series are added or updated after registering attributes or labels, a warning is displayed.
All the data that constitute a case can be exported and imported directly via either the API server or the web interface. Volume data can be exported as raw volume file with an Insight Toolkit (ITK) metaheader file after an anonymization process. This functionality enables us to share anonymized case data and build a larger database among multiple facilities.
CIRCUS CS: CAD processing and evaluation server
Our new version of CIRCUS CS is a CAD execution platform based on Docker plug-ins. Figure 4 shows its basic configuration. Users can request to execute a plug-in as a job on selected DICOM series, and then each job is sequentially processed by CIRCUS CS Job Manager. The results are either displayed as a web page or fetched via the API server.
Docker is a lightweight virtualization technology that handles an application contained in a secure and isolated package called an image. Plug-ins of the new CIRCUS CS are implemented and installed as a Docker image. The image can have the main application and its associated runtimes and libraries contained in one package, which makes it easy to manage various applications written in different programming environments. With nvidia-docker (nvidia-container-toolkit or nvidia-docker2) [18], it is also possible to execute plug-ins using a GPU.
For security reasons, we decided not to provide raw DICOM series to CAD plug-ins. Instead, in the preprocessing phase of each job, Job Manager converts DICOM series into a raw volume file with an ITK metaheader file, and extracts selected DICOM metadata into plain-text files. With this approach, plug-in developers do not need to parse DICOM files, and patient information will not be accessible to plug-ins. In addition, a running Docker-based CAD plug-in has no network connection, and has access to only a temporary directory created and mounted for each job.
Figure 5a shows an example of the result page of a CAD job. Each lesion candidate is displayed using CIRCUS RS. For each lesion candidate, the system can collect feedback data from users, which is stored in the database and can be used for various purposes including evaluation and retraining of the CAD software. In this example, four toggle buttons are displayed (“known TP,” “missed TP,” “FP,” and “pending”; TP, true positive; FP, false positive) so that the system can record whether each lesion candidate was a correct lesion as well as whether it was useful to the user of the system. The four toggle buttons are defined as follows:
Known TP: a true lesion detected in a radiologist’s interpretation without CAD software
Missed TP: a true lesion overlooked in a radiologist’s interpretation without CAD software
FP: a lesion candidate that is clearly not a true lesion
Pending: a lesion candidate that is difficult to classify into TP or FP
The feedback collection mechanism can be configured to use other user interface elements, such as textboxes and sliders. Additionally, it is possible to collect feedback that is not tied to individual lesion candidates. In this example, an interface to tell the locations of false-negative lesions is shown (Fig. 5b).
Image transfer and DICOM storage
We implemented three methods to import DICOM images from external sources: (1) a browser-based image uploader, (2) a command-line interface written in JavaScript, and (3) A Docker-based DICOM storage server that supports DICOM Storage Service Class Provider (SCP) protocol. Images are stored via DICOM repository, a filesystem abstraction layer that supports various storage systems. To manage access privilege, a string value called domain is assigned to each DICOM series.
Building the Docker images
We created Docker-based versions of three existing CIRCUS CS plug-ins:
Cerebral aneurysm detection in magnetic resonance (MR) angiograms based on 3D local intensity structure analysis [7] (hereafter, MRA-local)
Lung nodule detection in chest computed tomography (CT) images [19, 20] (hereafter, Lung-CAD)
Volumetry of visceral fat tissue (VAT) and subcutaneous fat tissue (SAT) in whole-body CT images [21] (hereafter, Fat-volumetry)
These plug-ins were initially implemented as Windows executables and have been utilized in annual whole-body general medical examinations at our hospital and other institutions with the first version of CIRCUS.
In addition, we also created a GPU-powered plug-in:
Cerebral aneurysm detection in magnetic resonance (MR) angiograms based on convolutional neural network (CNN) [22] (hereafter, MRA-CNN)
This plug-in was implemented using Python 3.6.5 and Chainer 6.4.0 [23]. We built two Docker images of the MRA-CNN plug-in for CUDA 9.0 and CUDA 10.0.
To install our new system more easily, we also built a Docker image of the CIRCUS system that includes Node.js, Nginx, and MongoDB. In the Docker-based CIRCUS system, Docker-based CAD plug-ins are executed using the Docker outside of Docker technique [24].
Implementation of our system
We installed our new system at two clinical sites that have been using the first version of CIRCUS. These implementations were approved by the ethical review boards of our institutions.
Site 1: The University of Tokyo Hospital.
We installed our new system into a Linux server at The University of Tokyo Hospital from scratch. The hardware and software specifications of the server are as follows: Intel Xeon Silver 2.1 GHz eight-core processor with 64 GByte RAM; NVIDIA Tesla V100 GPU; Ubuntu 16.04.4 LTS; NVIDIA Driver 390.87-0, CUDA 9.0.176; cuDNN 7.0.5; Docker 18.06.0-ce3; nvidia-docker 2.0.3 + docker18.06.0-1. For CIRCUS DB, we migrated the cases registered in the first version of the image database and registered new cases using our new web-based interface. For CIRCUS CS, we retrospectively processed the four plug-ins (MRA-local, MRA-CNN, Lung-CAD, and Fat-volumetry) for all cases of annual whole-body general medical examinations, which include chest CT, whole-body CT, and MR angiography, underwent between October 1, 2019, and October 31, 2019.
Site 2: Private cloud-based teleradiology environment.
We also installed our Docker-based system into a Linux server in a private cloud-based teleradiology environment [25]. The hardware and software specifications of the server are as follows: Intel i7-9750H 2.60 GHz six-core processor with 16 GByte RAM; NVIDIA GeForce RTX 2070 MAX-Q GPU; Ubuntu 19.10; NVIDIA Driver 440.36, CUDA 10.0.130; cuDNN 7.5.1; Docker 19.03.3; and nvidia-container-toolkit 1.0.5-1. We retrospectively processed the two plug-ins (MRA-local, MRA-CNN) for all cases of MR angiography underwent at two institutions (hospital A and clinic B) between October 1, 2019, and October 31, 2019. We also retrospectively processed the Lung-CAD plug-in for all cases of chest CT underwent at the two institutions between October 1, 2019, and October 31, 2019.
Results
Table 1 shows the number of cases registered on our new image database at The University of Tokyo Hospital. A total of 1478 cases registered in the first version of the image database were migrated to the new image database. We registered a total of 476 cases using our new web-based interface.
Figure 5a shows a result of Lung-CAD. Figure 6 shows a result of MRA-local. In this CAD, not only the axial section of the lesion candidate but also partial VR images were displayed for each lesion candidate. The result display interface of MRA-CNN is the same as that of MRA-local. Figure 7 shows a result of Fat-volumetry. Tables 2 and 3 show the numbers of cases processed and the times required for the processing of the CAD plug-ins at the two clinical sites. There were no cases of processing failure of the CAD plug-ins.
Discussion
We have built a novel platform for the development and validation of CAD software. The platform is readily accessible via common web browsers without installing a special application. The platform was successfully implemented at the two clinical sites, and the four CAD plug-ins were successfully processed. We plan to publish our platform as an open-source project.
The API-based system architecture enables developers to integrate CIRCUS with other medical systems. For example, in the radiology reporting system at our hospital, a button to open a web page of CAD processing result was implemented, and the result of Fat-volumetry can be exported to the reporting system.
CIRCUS RS has the image display and annotating functions required for the entire CIRCUS system. Table 4 shows a function list of various open-source and web-based DICOM viewers including CIRCUS RS. To the best of our knowledge, there was no other web-based open-source project that satisfied all the requirements for our system. Notably, 3D voxel painting is one of the key features. Although this feature is available on several open-source desktop applications such as ITK-SNAP [9] and 3D Slicer [26], our system works without installing dedicated software on the client side. The MPR feature and the 3D voxel painting are expected to enable users to define complex 3D shapes of labels with improved precision. Although it is technically possible to construct similar data by “stacking” 2D freehand annotations, this approach is error-prone and produces unnatural jagged edges when observed in a 3D space [9] (Fig. 8).
We previously measured the workload of radiologists required to define 3D voxel labels by pixel-based painting using the new version of CIRCUS DB [32]. The average time required for 3D voxel labeling was 210.5 ± 119.6 s for cerebral aneurysms and 403.3 ± 277.9 s for lung nodules. The time depended on the number, size, and shape of lesions. To reduce the time required for 3D voxel labeling, we plan to develop a generalized semiautomatic segmentation function based on deep learning.
There are two web-based image database systems similar to CIRCUS DB. MD.ai Annotator [33] is a web-based tool to curate and annotate labeled datasets for machine learning training and validation. The system provides several 2D annotation methods including bounding box, freeform, polygon, and location, and allows users to collaboratively label and annotate in real time. Although there are several public projects including RSNA 2018 Machine Learning Challenge [34], at the time of writing, personal projects cannot be created. OHIF LesionTracker [30] is a web-based platform designed to facilitate quantitative assessments of tumor burden over time. The platform supports 2D annotation (bounding boxes or ellipses).
The Docker-based approach of CIRCUS CS enables researchers to manage various CAD applications more easily in clinical environments. Today, an increasing number of CAD applications are written in scripting languages, and they tend to depend on many runtimes and libraries involving thousands of files. Docker-based plug-ins can drastically reduce the cost to set up the environment to run each plug-in. We implemented the MRA-CNN as a GPU-powered plug-in. We are also developing other CAD applications using deep learning [35, 36] and plan to implement these applications.
There are two systems similar to CIRCUS CS. M5L on-demand Lung-CAD [37, 38] is a web- and cloud-based CAD system dedicated to the automatic detection of pulmonary nodules. The detection algorithm is a combination of two independent algorithms: the Channeler Ant Model (lungCAM) and the voxel-based neural approach (VBNA). Its result page has radio buttons to classify the CAD findings. EnvoyAI [39] is a cloud intelligence platform that offers multiple algorithms developed by various organizations. However, EnvoyAI is a commercialized service, and the platform is not open source. By contrast, our system is open source and can be installed in any environment, including public cloud environments such as Amazon Web Services. If clinical data are to be stored in a cloud environment, it is necessary to comply with privacy laws and guidelines in each state and country. In particular, the physical location of the cloud infrastructure is critical [40, 41]. We believe our open-source approach can help researchers, and clinicians use CAD software more easily inside their institution.
Our study has several limitations. First, the DICOM storage server does not support Query/Retrieve Service Class User (SCU), which means a user cannot search and retrieve images from external PACS sources using CIRCUS. Second, the results from CIRCUS CS plug-ins cannot be output as a DICOM structured report (SR) or a grayscale softcopy presentation state (GSPS). These are sometimes useful for integrating our system with existing reading environments, although the integration results in the loss of feedback collection mechanisms. Third, the job manager of CIRCUS CS does not support the concurrent execution of multiple jobs. To address this issue and achieve scalability, we are considering the use of a container orchestration system such as Kubernetes [42].
Conclusion
We have successfully built a novel platform for the development and validation of CAD software, named CIRCUS. Our platform was successfully implemented at our hospital, and we plan to publish it as an open-source software project.
References
Giger ML, Chan HP, Boone J (2008) Anniversary paper: history and status of CAD and quantitative image analysis: the role of Medical Physics and AAPM. Med Phys 35(12):5799–5820
van Ginneken B, Schaefer-Prokop CM, Prokop M (2011) Computer-aided diagnosis: how to move from the laboratory to the clinic. Radiology 261(3):719–732
Litjens G, Kooi T, Bejnordi BE, Setio AAA, Ciompi F, Ghafoorian M, van der Laak JAWM, van Ginneken B, Sánchez CI (2017) A survey on deep learning in medical image analysis. Med Image Anal 42:60–88
Yasaka K, Akai H, Kunimatsu A, Kiryu S, Abe O (2018) Deep learning with convolutional neural network in radiology. Jpn J Radiol 36(4):257–272
Hu Z, Tang J, Wang Z, Zhang K, Zhang L, Sun Q (2018) Deep learning for image-based cancer detection and diagnosis—a survey. Pattern Recognit 83:134–149
Masutani Y, Nemoto M, Nomura Y, Hayashi N (2012) Clinical machine learning in action: CAD system design, development, tuning, and long-term experience. In: Suzuki K (ed) Machine learning in computer-aided diagnosis: medical imaging intelligence and analysis. IGI Global, Hershey, PA, pp 159–176
Nomura Y, Masutani Y, Miki S, Nemoto M, Hanaoka S, Yoshikawa T, Hayashi N, Ohtomo K (2014) Performance improvement in computerized detection of cerebral aneurysms by retraining classifier using feedback data collected in routine reading environment. J Biomed Graph Comput 4(4):12–21
Nomura Y, Hayashi N, Masutani Y, Yoshikawa T, Nemoto M, Hanaoka S, Miki S, Maeda E, Ohtomo K (2010) CIRCUS: an MDA platform for clinical image analysis in hospitals. Trans Mass-Data Anal Images Signals 2(1):112–127
Yushkevich PA, Piven J, Hazlett HC, Smith ZRG, Ho S, Gee JC, Gerig G (2006) User-guided 3D active contour segmentation of anatomical structures: significantly improved efficiency and reliability. Neuroimage 31(3):1116–1128
Node.js. https://nodejs.org/. Accessed 14 Jan 2020
Nginx. https://www.nginx.com/. Accessed 14 Jan 2020
MongoDB. https://www.mongodb.com/. Accessed 14 Jan 2020
Jeong S, Byun J, Kim D, Sohn H, Bae IH, Law KH (2015) A data management infrastructure for bridge monitoring. In: SPIE Smart structures and materials + nondestructive evaluation and health monitoring, vol 9435, p 94350P
Sahatqija K, Ajdari J, Zenuni X, Raufi B, Ismaili F (2018) Comparison between relational and NOSQL databases. In: 41st international convention on information and communication technology, electronics and microelectronics (MIPRO), 21–25 May 2018, pp. 216–221
Docker. https://www.docker.com/. Accessed 14 Jan 2020
OAuth 2.0. https://oauth.net/2/. Accessed 14 Jan 2020
JSON Schema. https://json-schema.org/. Accessed 14 Jan 2020
NVIDIA Container Toolkit. https://github.com/NVIDIA/nvidia-docker/. Accessed 14 Jan 2020
Nomura Y, Nemoto M, Masutani Y, Hanaoka S, Yoshikawa T, Miki S, Maeda E, Hayashi N, Yoshioka N, Ohtomo K (2014) Reduction of false positives at vessel bifurcations in computerized detection of lung nodules. J Biomed Graph Comput 4(3):36–46
Nomura Y, Higaki T, Fujita M, Miki S, Awaya Y, Nakanishi T, Yoshikawa T, Hayashi N, Awai K (2017) Effects of iterative reconstruction algorithms on computer-assisted detection (CAD) software for lung nodules in ultra-low-dose CT for lung cancer screening. Acad Radiol 24(2):124–130
Nemoto M, Yeernuer T, Masutani Y, Nomura Y, Hanaoka S, Miki S, Yoshikawa T, Hayashi N, Ohtomo K (2014) Development of automatic visceral fat volume calculation software for CT volume data. J Obes 2014:495084
Nakao T, Hanaoka S, Nomura Y, Sato I, Nemoto M, Miki S, Maeda E, Yoshikawa T, Hayashi N, Abe O (2018) Deep neural network-based computer-assisted detection of cerebral aneurysms in MR angiography. J Magn Reson Imaging 47(4):948–953
Tokui S, Oono K, Hido S, Clayton J (2015) Chainer: a next-generation open source framework for deep learning. In: Proceedings of workshop on machine learning systems (LearningSys) in the 29th annual conference on neural information processing systems (NIPS), vol 5, pp 1–6
Running Docker in Jenkins (in Docker). https://blog.container-solutions.com/running-docker-in-jenkins-in-docker. Accessed 14 Jan 2020
Nomura Y, Masutani Y, Miki S, Hanaoka S, Nemoto M, Yoshikawa T, Hayashi N, Ohtomo K (2013) Training strategy for performance improvement in computer-assisted detection of lesions: based on multi-institutional study in teleradiology environment. In: First international symposium on computing and networking (CANDAR 2013), 4–6 Dec 2013, pp 320–323
3D Slicer. https://www.slicer.org/. Accessed 14 Jan 2020
Cornerstone. https://github.com/cornerstonejs/cornerstone/. Accessed 14 Jan 2020
DWV (DICOM Web Viewer). https://github.com/ivmartel/dwv/. Accessed 14 Jan 2020
Slice:Drop. https://slicedrop.com/. Accessed 14 Jan 2020
Open Health Imaging Foundation. https://ohif.org/. Accessed 14 Jan 2020
Papaya. https://rii-mango.github.io/Papaya/. Accessed 14 Jan 2020
Nomura Y, Hayashi N, Hanaoka S, Takenaga T, Nemoto M, Miki S, Yoshikawa T, Abe O (2019) Can the spherical gold standards be used as an alternative to painted gold standards for the computerized detection of lesions using voxel-based classification? Jpn J Radiol 37(3):264–273
MD.ai Annotator. https://www.md.ai/. Accessed 14 Jan 2020
Shih G, Wu CC, Halabi SS, Kohli MD, Prevedello LM, Cook TS, Sharma A, Amorosa JK, Arteaga V, Galperin-Aizenberg M, Gill RR, Godoy MCB, Hobbs S, Jeudy J, Laroia A, Shah PN, Vummidi D, Yaddanapudi K, Stein A (2019) Augmenting the national institutes of health chest radiograph dataset with expert annotations of possible pneumonia. Radiol Artif Intell 1(1):e180041
Sato D, Hanaoka S, Nomura Y, Takenaga T, Miki S, Yoshikawa T, Hyashi N, Abe O (2018) A primitive study on unsupervised anomaly detection with an autoencoder in emergency head CT volumes. Proc SPIE Med Imaging 10575:105751P
Takenaga T, Hanaoka S, Nomura Y, Nakao T, Nemoto M, Murata M, Miki S, Yoshikawa T, Hayashi N, Abe O (2018) A preliminary study of the computerized detection of nodular liver lesion in Gd-EOB-DTPA-enhanced magnetic resonance images with 4D CNN. Int J Comput Assist Radio Surg 13(suppl.1):S98–S99
Traverso A, Torres EL, Fantacci ME, Cerello P (2017) Computer-aided detection systems to improve lung cancer early diagnosis: state-of-the-art and challenges. J Phys: Conf Ser 841(1):012013
Vassallo L, Traverso A, Agnello M, Bracco C, Campanella D, Chiara G, Fantacci ME, Lopez Torres E, Manca A, Saletta M, Giannini V, Mazzetti S, Stasi M, Cerello P, Regge D (2019) A cloud-based computer-aided detection system improves identification of lung nodules on computed tomography scans of patients with extra-thoracic malignancies. Eur Radiol 29(1):144–152
EnvoyAI. https://www.terarecon.com/envoyai. Accessed 14 Jan 2020
Kagadis GC, Kloukinas C, Moore K, Philbin J, Papadimitroulas P, Alexakos C, Nagy PG, Visvikis D, Hendee WR (2013) Cloud computing in medical imaging. Med Phys 40(7):070901
Gerard P, Kapadia N, Chang PT, Acharya J, Seiler M, Lefkovitz Z (2013) Extended outlook: description, utilization, and daily applications of cloud technology in radiology. AJR Am J Roentgenol 201(6):W809–811
Kubernetes. https://kubernetes.io/. Accessed 14 Jan 2020
Acknowledgements
The Department of Computational Radiology and Preventive Medicine, The University of Tokyo Hospital, is sponsored by HIMEDIC Inc. and Siemens Healthcare K.K.
Funding
This work was supported by Japan Society for the Promotion of Science (JSPS) KAKENHI Grant Nos. 17K17661 and 18K12096. It was also supported by JST PRESTO Grant No. JPMJPR1302, Japan.
Author information
Authors and Affiliations
Corresponding author
Ethics declarations
Conflict of interest
The authors declare no conflicts of interest with regard to the present study.
Ethical approval
All procedures performed in studies involving human participants were in accordance with the ethical standards of the institutional and/or national research committee and with the 1975 Helsinki declaration, as revised in 2008(5). For this type of study, formal consent is not required.
Additional information
Publisher's Note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Rights and permissions
Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/.
About this article
Cite this article
Nomura, Y., Miki, S., Hayashi, N. et al. Novel platform for development, training, and validation of computer-assisted detection/diagnosis software. Int J CARS 15, 661–672 (2020). https://doi.org/10.1007/s11548-020-02132-z
Received:
Accepted:
Published:
Issue Date:
DOI: https://doi.org/10.1007/s11548-020-02132-z