Open Implementation of DICOM for Whole-Slide Microscopic Imaging

Total Page:16

File Type:pdf, Size:1020Kb

Open Implementation of DICOM for Whole-Slide Microscopic Imaging Open Implementation of DICOM for Whole-Slide Microscopic Imaging Sebastien´ Jodogne1, Eric´ Lenaerts1, Lara Marquet1, Charlotte Erpicum2, Roland Greimers2, Pierre Gillet, Roland Hustinx1 and Philippe Delvenne2 1Department of Medical Physics, 2Department of Pathology, University Hospital of Liege,` Avenue de l’Hopital,ˆ 4000 Liege,` Belgium http://www.chuliege.be/ Keywords: Whole-slide imaging, telepathology, DICOM. Abstract: This paper introduces an open implementation of DICOM for whole-slide microscopic imaging, following Supplement 145 of the DICOM standard. The software is divided into two parts: (a) a command-line tool to convert an whole-slide image to the DICOM format, and (b) a zero-footprint Web interface to display such DICOM images. The software architecture leverages the DICOM server Orthanc. The entire framework is available as free and open-source software. The existence of this software supports the development of digital pathology and telepathology in clinical environments, featuring a smooth integration with existing EHR and PACS solutions. 1 INTRODUCTION tanowitz, 2016). • Education and research: Telepathology is highly Anatomopathology plays important medical roles promising in medical education and clinical re- by detecting preneoplastic lesions and by giving a di- search. Currently, digital imaging starts to replace agnosis, prognosis and evaluation of therapeutic re- traditional glass slides and high quality micro- sponse based on visual observations of cellular or scopes to discuss interesting cases during lessons, tissue samples. Telepathology is an application of symposia and conferences. Telepathology facili- telemedicine that allows the practice of the anato- tates interactions between multiple users and al- mopathology over a long distance with the use of im- lows the consistency and longevity of imaged ma- ages in an electronic format rather than viewing glass terials (Maree´ et al., 2016). slides (Ling and Krishnappa, 2012). Telepathology is • Pathology archiving: The storage of histolog- potentially useful for several applications: ical slides is mandatory for a long period of • Intraoperative consultation: Intraoperative con- time. Since the virtual slide perfectly reproduces sultations are emergencies in anatomopathology the glass slide without any loss of information, since the purpose of this examination is to guide telepathology could enable the storage of images immediate surgical management. For such con- in an entirely electronic way. As a consequence, sultations, the results should be given within 30 the currently-used, costly physical archives could minutes (Ribback et al., 2014). Telepathology can become legacy systems in the future (Webster and be used in this context for obtaining consultation Dunstan, 2014). by a pathologist present in a remote physical lo- Telepathology requires microscopic images to be cation. put quickly and easily online, from a slide scanner • Secondary consultation from experts: Secondary onto a secured Web server. To this end, at least three consultation refers to situations where a primary technical difficulties must be overcome. diagnosis has been performed on the primary ma- Firstly, any pathology laboratory requires high terial and further opinion is needed. Telepathol- electronic storage capacities to store their whole-slide ogy is beneficial by accelerating the process and images, as the size of the latter may range from hun- by reducing the risks of material loss or break dreds of megabytes to hundreds of gigabytes, de- compared to postal services (Farahani and Pan- pending on the scanning objective and the tissue sec- tion. A typical, uncompressed whole-slide image of rity reasons: A telepathology viewer should there- 80,000×60,000 pixels acquired in 24-bit color (RGB) fore be able to run entirely inside a standard Web weights over 10GB (DICOM Standards Committee, browser, as such a browser is almost always installed Working Group 26, Pathology, 2010). Image com- by default on any computer. A Web application also pression (JPEG or JPEG 2000) can divide this size by has the advantage of being compatible with mobile a factor 10, but this still roughly corresponds to the devices. The OpenSlide software can already serve size of 3D medical images (e.g. computed tomogra- whole-slide images generated by commonplace scan- phy or magnetic resonance imaging). Storing and in- ners onto the Web (Goode et al., 2013). Similarly, dexing such a large amount of data on the long run is the Cytomine software builds upon the OpenSlide ex- obviously not compatible with the manual administra- perience to provide an advanced collaborative anal- tion of a filesystem: It implies the use of automated, ysis framework for research and education in digital scalable, enterprise-ready database systems similar to pathology (Maree´ et al., 2016). Unfortunately, nei- the PACS of the hospital (Picture Archiving and Com- ther of those platforms currently supports the DICOM munication System). standard that is mandatory for clinical workflow. The second technical difficulty is the lack of inter- The previous discussion calls for the engineer- operability between the proprietary ecosystems that ing of a framework built upon the DICOM standard are implemented by the manufacturers of slide scan- that would support the development of workflow for ners. A single hospital might host several scanners digital pathology and telepathology in clinical envi- from different manufacturers, making it hard to con- ronments, featuring a smooth integration with exist- solidate all the whole-slide images inside a central- ing hospital information systems (EHR and PACS). ized tool because of a large variety of file formats. For The needed software would be able to convert whole- the same reason, it is hard to link the EHR (Electronic slide images encoded using proprietary formats, to Health Record) of a patient to her anatomopathology a standard DICOM file in accordance with the “VL images. This lack of interoperability in the clinical Whole Slide Microscopy Image Information Object workflow is also an obstacle to the exchange of im- Definition (IOD)”, as specified in the “PS3.3: Infor- ages between hospitals, as well as to the use of stan- mation Object Definitions” part of the DICOM stan- dalone post-processing tools that are necessary for dard (NEMA — National Electrical Manufacturers big-data analysis, medical research or education. Association, 2016). It would then be able to for- A possible solution to this problem consists in ward the converted images to a generic PACS sys- taking advantage of the DICOM standard for medi- tem, while serving them directly over Internet, using cal imaging (NEMA — National Electrical Manufac- a zero-footprint Web client. turers Association, 2016). Indeed, in 2010, the DI- This paper introduces such an innovative frame- COM Committee defined a standard way of exchang- work and makes it available as free and open-source ing whole-slide microscopic imaging that is vendor- software to support the development of digital pathol- independent and that is fully compatible with exist- ogy and telepathology in hospitals. ing PACS systems (DICOM Standards Committee, Working Group 26, Pathology, 2010). Unfortunately, there is currently no open implementation of this re- cent standard, most probably because of the existence 2 SYSTEM AND METHODS of many patents (Cucoranu et al., 2014): As a con- sequence, even if any modern PACS can ingest such DICOM images, few will render them. There is also a According to the Introduction section, our soft- lack of sample files, which strongly calls for an open ware framework for digital pathology and telepathol- infrastructure to share knowledge about this complex ogy is divided into two separate components: standard, to the benefit of hospitals, manufacturers • A standalone command-line tool that takes as in- and researchers. put a non-DICOM whole-slide microscopic im- The third technical challenge for telepathology age, and that generates a compliant DICOM file. consists in serving the images over Internet. Be- cause of the size of whole-slide images, a raw transfer • A DICOM server that can easily publish such im- of the files would not be compatible with real-time ages on the Web. constraints or mobile applications. It is also highly desirable to avoid the installation of some heavy- This section will fully describe our technical solu- weight client software on the computers of an hos- tion, after an introduction to the DICOM file format pital, as this operation is often prevented for secu- for whole-slide microscopic imaging. Figure 1: Mapping a multi-resolution pyramid according to the DICOM standard (DICOM Standards Committee, Working Group 26, Pathology, 2010). Each level of the pyramid is a downscaled version of the whole-slide image, and is decomposed as a set of tiles. The tiles are encoded as separate frames of multi-frame DICOM instances (files). 2.1 DICOM FOR VISIBLE LIGHT The DICOM standard models the real world as WHOLE-SLIDE MICROSCOPIC follows: A given patient benefits during her life from a set of medical imaging studies. Each study is made IMAGES of a set of series. Each series is in turn a set of in- stances, the latter being a synonym for a DICOM file. Because images for digital pathology are very large A single DICOM instance can be multi-frame, mean- (possibly dozens of gigabytes), they most often can- ing it can store several independent images (provided not entirely fit inside the memory of a standard com- all of its individual frames
Recommended publications
  • Investigating the Practical Use of Computational Fluid Dynamics Simulation of Airflow in the Nasal Cavity and Paranasal Sinuses NOSE Version 1.0 2018-08-30
    NOSE Pilot Study Investigating the Practical Use of Computational Fluid Dynamics Simulation of Airflow in the NNOSEasal Cavity and Paranasal Sinuses NOSE Pilot Study Investigating the Practical Use of Computational Fluid Dynamics Simulation of Airflow in the Nasal Cavity and Paranasal Sinuses NOSE Version 1.0 2018-08-30 NOSE Pilot Study Investigating the Practical Use of Computational Fluid Dynamics Simulation Version 1.0 of Airflow in the Nasal Cavity and Paranasal Sinuses NOSE Pilot Study Investigating the Practical Use of Computational Fluid Dynamics Simulation of Airflow in the Nasal Cavity and Paranasal Sinuses Project Number 1000043433 Project Title NOSE Pilot Study Document Reference Investigating the Practical Use of Computational Date 2018-08-30 Title Fluid Dynamics Simulation of Airflow in the Nasal Cavity and Paranasal Sinuses Document Name NOSE_PS_FINAL_v1 Version Draft draft final Restrictions public internal restricted : Distribution Steirische Forschungsförderung Authors Koch Walter, Koch Gerda, Vitiello Massimo, Ortiz Ramiro, Stockklauser Jutta, Benda Odo Abstract The NOSE Pilot study evaluated the technical and scientific environment required for establishing a service portfolio that includes CFD simulation and 3D visualization services for ENT specialists. For this purpose the state-of-the-art of these technologies and their use for upper airways diagnostics were analysed. Keywords Rhinology, Computational Fluid Dynamics, 3D Visualization, Clinical Pathways, Service Center, Knowledge Base Document Revisions Version Date Author(s) Description of Change 1.0 2018-08-30 Koch Walter, Koch Final Version Gerda, Vitiello Massimo, Ortiz NOSERamiro, Stockklauser Jutta, Benda Odo 2018-08-30 Seite 3 / 82 Copyright © AIT ForschungsgesmbH NOSE_PS_FINAL_v1 NOSE Pilot Study Investigating the Practical Use of Computational Fluid Dynamics Simulation Version 1.0 of Airflow in the Nasal Cavity and Paranasal Sinuses Table of Contents Acknowledgments ..................................................................................
    [Show full text]
  • Evaluation of DICOM Viewer Software for Workflow Integration in Clinical Trials
    Evaluation of DICOM Viewer Software for Workflow Integration in Clinical Trials Daniel Haak1*, Charles-E. Page, Klaus Kabino, Thomas M. Deserno Department of Medical Informatics, Uniklinik RWTH Aachen, 52057 Aachen, Germany ABSTRACT The digital imaging and communications in medicine (DICOM) protocol is nowadays the leading standard for capture, exchange and storage of image data in medical applications. A broad range of commercial, free, and open source software tools supporting a variety of DICOM functionality exists. However, different from patient’s care in hospital, DICOM has not yet arrived in electronic data capture systems (EDCS) for clinical trials. Due to missing integration, even just the visualization of patient’s image data in electronic case report forms (eCRFs) is impossible. Four increasing levels for integration of DICOM components into EDCS are conceivable, raising functionality but also demands on interfaces with each level. Hence, in this paper, a comprehensive evaluation of 27 DICOM viewer software projects is performed, investigating viewing functionality as well as interfaces for integration. Concerning general, integration, and viewing requirements the survey involves the criteria (i) license, (ii) support, (iii) platform, (iv) interfaces, (v) two- dimensional (2D) and (vi) three-dimensional (3D) image viewing functionality. Optimal viewers are suggested for applications in clinical trials for 3D imaging, hospital communication, and workflow. Focusing on open source solutions, the viewers ImageJ and MicroView are superior for 3D visualization, whereas GingkoCADx is advantageous for hospital integration. Concerning workflow optimization in multi-centered clinical trials, we suggest the open source viewer Weasis. Covering most use cases, an EDCS and PACS interconnection with Weasis is suggested.
    [Show full text]
  • Impacting the Bioscience Progress by Backporting Software for Bio-Linux
    Impacting the bioscience progress by backporting software for Bio-Linux Sasa Paporovic [email protected] v0.9 What is Bio-Linux and what is it good for - also its drawbacks: If someone says to use or to have a Linux this is correct as like it is imprecise. It does not exist a Linux as full functional operating system by itself. What was originally meant by the term Linux was the operating system core[1]. The so called kernel, or in a case of a Linux operating system the Linux kernel. It is originally designed and programmed by Linus Torvalds, who is also today the developer in chef or to say it with his words, he is the “alpha-male” of all developers[2]. Anyway, what we have today are Distributions[3]. It has become common to call them simply “a Linux”. This means that there are organizations out there, mostly private, some funded and some other commercial, which gather all what is needed to design around the Linux kernel a full functional operating system. This targets mostly Software, but also web and service infrastructure. Some of them have a history that is nearly as long as the Linux kernel is alive, like Debian. Some others are younger like Ubuntu and some more others are very young, like Bio-Linux[4]. The last Linux, the Bio-Linux, especially its latest version Bio-Linux 7 we are focusing here[5]. In year 2006 Bio-Linux with the work of Tim Booth[42] and team gives its rising[6] and provide an operating system that was and still specialized in providing a bioinformatic specific software environment for the working needs in this corner of bioscience.
    [Show full text]
  • A Case Study from the Openmrs Open-Source Radiology Information System
    Journal of Digital Imaging (2018) 31:361–370 https://doi.org/10.1007/s10278-018-0088-5 A Platform for Innovation and Standards Evaluation: a Case Study from the OpenMRS Open-Source Radiology Information System Judy W. Gichoya1 & Marc Kohli2 & Larry Ivange3 & Teri S. Schmidt4 & Saptarshi Purkayastha5 Published online: 10 May 2018 # The Author(s) 2018 Abstract Open-source development can provide a platform for innovation by seeking feedback from community members as well as providing tools and infrastructure to test new standards. Vendors of proprietary systems may delay adoption of new standards until there are sufficient incentives such as legal mandates or financial incentives to encourage/mandate adoption. Moreover, open-source systems in healthcare have been widely adopted in low- and middle-income countries and can be used to bridge gaps that exist in global health radiology. Since 2011, the authors, along with a community of open-source contributors, have worked on developing an open-source radiology information system (RIS) across two communities—OpenMRS and LibreHealth. The main purpose of the RIS is to implement core radiology workflows, on which others can build and test new radiology standards. This work has resulted in three major releases of the system, with current architectural changes driven by changing technology, development of new standards in health and imaging informatics, and changing user needs. At their core, both these communities are focused on building general-purpose EHR systems, but based on user contributions from the fringes, we have been able to create an innovative system that has been used by hospitals and clinics in four different countries.
    [Show full text]
  • FOSDEM 2013 Schedule
    FOSDEM 2013 - Saturday 2013-02-02 (1/9) Janson K.1.105 Ferrer Chavanne Lameere H.1301 H.1302 H.1308 10:30 Welcome to FOSDEM 2013 10:45 11:00 How we made the Jenkins QEMU USB status report 2012 Rockbuild The neat guide to Fedora RPM LinuxonAndroid and SlapOS on Wayland for Application Developers community Packaging Android 11:15 11:30 CRIU: Checkpoint and Restore (mostly) In Userspace 11:45 Ubuntu Online Accounts for application developers 12:00 The Devil is in the Details Vtrill: Rbridges for Virtual PTXdist Building RPM packages from Git Emdedded distro shootout: buildroot Networking repositories with git-buildpackage vs. Debian Better software through user 12:15 research 12:30 Bringing Xen to CentOS-6 Sketching interactions 12:45 13:00 The Open Observatory of Network Porting Fedora to 64-bit ARM Coding Goûter A brief tutorial on Xen's advanced Guacamayo -- Building Multimedia Package management and creation ARM v7 State of the Body ↴ Interference systems security features Appliance with Yocto ↴ in Gentoo Linux ↴ 13:15 Spoiling and Counter-spoiling 13:30 oVirt Live Storage Migration - Under Modern CMake ↴ the Hood ↴ ZONE: towards a better news feed ↴ 13:45 FOSDEM 2013 - Saturday 2013-02-02 (2/9) H.1309 H.2213 H.2214 AW1.120 AW1.121 AW1.125 AW1.126 Guillissen 10:30 10:45 11:00 Metaphor and BDD XMPP 101 Storytelling FLOSS Welcome and Introduction The room open() process Scripting Apache OpenOffice: Welcome to the Perl d… Introductory Nutshell Programs Inheritance versus Roles (Writer, Calc, Impress) 11:15 Signal/Collect: Processing Large
    [Show full text]
  • And Contribute to Debian Med
    Stay home . and contribute to Debian Med Andreas Tille Debian Online, 29. August 2020 Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 1 / 50 1 What is Debian Med? 2 COVID-19 hackathons 3 Single contributions to the first hackathon 4 Summary Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 2 / 50 Back in 2001 at DebConf 1 Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 3 / 50 the first talk about the concept was prepared Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 4 / 50 Debian Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 5 / 50 Role of Blends to attract specific users Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 6 / 50 Role of Blends to attract specific users Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 6 / 50 Role of Blends to attract specific users Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 6 / 50 Role of Blends to attract specific users Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 6 / 50 Med-bio task of Debian Med Andreas Tille (Debian) Stay home . and contribute to Debian Med Online, 29. August 2020 7 / 50 Packages in selected tasks of Debian Med 800 700 600 500 400 300 200 100 0 imaging-dev imaging his 2002 2004 2006 2008 epi 2010 2012 2014 2016 2018 2020 bio-dev Andreas Tille (Debian) Stay home .
    [Show full text]
  • Orthanc: Free Ecosystem for Medical Imaging
    Free ecosystem for medical imaging 1 2 Worldwide explosion of medical images Belgium (2013): 33 millions of imaging studies for 11 millions of people CT + MRI + PET-CT Reason: Multimodal and longitudinal imaging (oncology, cardiovascular diseases, surgery, neurology...) 3 The hype: AI for medical imaging 4 The reality: It’s still Jurassic Park! 5 Sharing images (basic need) is painful inside hospitals hospitals to patients between hospitals among skilled workers 6 Some terminology: Imaging flows for radiology Everything is driven by software through the DICOM standard! 7 The real-world difficulties 8 Pain 1: Interoperability and lock-in Good news: A single worldwide standard in open-access! • The DICOM standard is very complex, both for users and developers. • Many specialized vendors, with costly, proprietary and monolithic ecosystems ⇒ highriskof high risk of lock-in, few agility. • Interoperability is checked in “Connectathons” where vendors meet (N² complexity) ⇒ highriskof no reference implementation. • Not every PACS comes with teleradiology (remote expertise) ⇒ highriskof need to combine vendors. • Few IT expertise in hospitals about imaging⇒ highriskof need to share knowledge. Heterogeneous modalities ▶ very problematic in emerging economies! 9 Pain 2: The PACS is focused on radiology • Hard to retrieve and access the raw DICOM files. • The PACS must be interfaced with specialized software (nuclear medicine, radiotherapy, dentistry, neurosurgery…). • Multitude of files, as images are split slice-by-slice (one typical 3D image =
    [Show full text]
  • PDF Download
    53 © 2017 IMIA and Schattauer GmbH The Role of Free/Libre and Open Source Software in Learning Health Systems C. Paton1, T. Karopka2 1 Group Head for Global Health Informatics, Centre for Tropical Medicine and Global Health, University of Oxford, UK 2 Chair of IMIA OS WG, Chair of EFMI LIFOSS WG, Project Manager, BioCon Valley GmbH, Greifswald, Germany LHSs, examining the academic literature, Summary Introduction the MedFLOSS database that catalogues Objective: To give an overview of the role of Free/Libre and As more patient data are collected electron- FLOSS in use in healthcare [6], and the Open Source Software (FLOSS) in the context of secondary use of ically through Electronic Health Records grey literature from websites, reports, and patient data to enable Learning Health Systems (LHSs). (EHRs) and other information systems used personal communications with experts in Methods: We conducted an environmental scan of the academic in healthcare organisations, the opportunity the area of FLOSS adoption in healthcare. and grey literature utilising the MedFLOSS database of open to reuse the data these systems collect for Although some EHRs and research source systems in healthcare to inform a discussion of the role research and quality improvement becomes systems are fully open source, such as the of open source in developing LHSs that reuse patient data for more apparent. There is now a wide range of Veterans Information Systems and Technology research and quality improvement. large-scale research projects [1, 2] that are Architecture (VistA) [7], modern healthcare Results: A wide range of FLOSS is identified that contributes to reusing routinely collected data for analysis infrastructure is often a combination of the information technology (IT) infrastructure of LHSs including and the concept of a Learning Health Sys- open source and proprietary systems.
    [Show full text]
  • MASTER THESIS a Gnu Health Monitoring Module
    MASTER THESIS Thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in Engineering at the Univer- sity of Applied Sciences Technikum Wien - Degree Program Biomedical Engineering Sciences A Gnu Health Monitoring Module By: Barbora Veselá, BSc Student Number: 51867978 Supervisors: FH-Prof. Dipl-Ing. Dr. Stefan Sauermann Dipl-Ing. Dr. Johannes Kropf Vienna, May 20, 2019 Abstract This thesis focuses on the development of a GNU Health Module for electrocardiogram monitor- ing and the development of an application providing a fundamental electrocardiogram analysis. The theoretical part contains a brief introduction to hospital information systems including elec- tronic patient record and healthcare data standards information, followed by a description of the GNU Health application and the implementation of the electrocardiogram analysis, written in the Python programming language. The practical part deals with the development of the GNU Health Monitoring module and the external application for signal analysis. The results, disscussion and the conclusion follow. Keywords: Hospital Information System, Gnu Health, Tryton, Monitoring Module, Python ECG Analysis Kurzfassung Diese Arbeit befasst sich mit der Entwicklung eines GNU-Gesundheitsmoduls zur Elek- trokardiogrammberwachung und der Entwicklung einer Anwendung, die eine grundlegende Elektrokardiogrammanalyse bereitstellt. Der theoretische Teil enth eine kurze Einfhrung in Krankenhausinformationssysteme, einschlieich Informationen zu Patientenakten und
    [Show full text]
  • Orthanc – a Lightweight, Restful Dicom Server for Healthcare and Medical Research
    ORTHANC – A LIGHTWEIGHT, RESTFUL DICOM SERVER FOR HEALTHCARE AND MEDICAL RESEARCH S. Jodogne, C. Bernard, M. Devillers, E. Lenaerts and P. Coucke Department of Medical Physics, University Hospital of Liege,` 4000 Liege,` Belgium ABSTRACT The DICOM protocol was initially developed with a point-to-point approach in mind. In practice, this means that In this paper, the Orthanc open-source software is introduced. any change to the DICOM topology of the hospital (such Orthanc is a lightweight, yet powerful standalone DICOM as the adding, the removal or the renaming of one DICOM store for healthcare and medical research. Multiple instances modality) impacts all the DICOM modalities that are con- of Orthanc can easily be deployed in the hospital network or nected to the updated modality. This makes the computer even in the same computer, which simplifies the interconnec- network of the hospital tedious to manage, since the various tion between the DICOM modalities and the data manage- DICOM modalities are typically supported by separate pri- ment of medical images. Orthanc is unique with respect to vate companies: It is difficult to synchronize even a single the fact that it provides a modern RESTful API: Orthanc can intervention. For this reason, the DICOM topology is often be driven from any computer language to automate clinical implemented as a star-shaped network: The PACS (Picture processes. Finally, Orthanc comes bundled with an embed- Archiving and Communication System) of the hospital serves ded Web interface that allows the end-users to browse and as a central hub that dispatches the images between the vari- interact with the content of the DICOM store.
    [Show full text]
  • List of Open-Source Health Software
    10/05/2017 List of open-source health software - Wikipedia List of open-source health software From Wikipedia, the free encyclopedia This is an old revision of this page, as edited by G-eight (talk | contribs) at 13:04, 22 December 2015 (Added Bahmni as one of the available Open Source hospital systems with links to its website, and to referenced pages from OpenMRS.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision (https://en.wikipedia.org/wiki/List_of_open- source_health_software). (diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff) The following is a list of software packages and applications licensed under an open-source license or in the public domain for use in the health care industry. Contents 1 Public health and biosurveillance 2 Dental management and patient record 3 Electronic health or medical record 4 Medical practice management software 5 Health system management 6 Logistics & Supply Chain 7 Imaging/visualization 8 Medical information systems 9 Research 10 Mobile devices 11 Out-of-the-box distributions 12 Interoperability testing 13 See also 14 References Public health and biosurveillance Epi Info is public domain statistical software for epidemiology developed by Centers for Disease Control and Prevention. Spatiotemporal Epidemiological Modeler is a tool, originally developed at IBM Research, for modeling and visualizing the spread of infectious diseases. Dental management and patient record Open Dental is the first open-source dental management package with very broad capabilities on record management, patient scheduling and dental office management. Electronic health or medical record Bahmni (http://www.bahmni.org) is an open source hospital system designed for low resource settings.
    [Show full text]
  • Bioinformatik Und Medizinische Bildverarbeitung
    Bioinformatik und medizinische Bildverarbei- tung Andreas Tille Bioinformatik und medizinische Historisches Debian Pure Bildverarbeitung Blends Mit Debian Med Aufgaben in Bioinformatik und der Testen für wis- senschaftliche medizinischen Bildverarbeitung lösen Anwendung Support Bioinformatik Andreas Tille Medizinische Bildverarbei- tung Debian Ausblick Chemnitz, 12. März 2017 Bioinformatik und medizinische Bildverarbei- 1 tung Historisches Andreas Tille 2 Debian Pure Blends Historisches Debian Pure Blends 3 Testen für wissenschaftliche Anwendung Testen für wis- senschaftliche Anwendung 4 Support Support Bioinformatik 5 Medizinische Bioinformatik Bildverarbei- tung Ausblick 6 Medizinische Bildverarbeitung 7 Ausblick Bordeaux 2001 DebConf 1 Bioinformatik und medizinische Bildverarbei- tung Andreas Tille Historisches Debian Pure Blends Testen für wis- senschaftliche Anwendung Support Bioinformatik Medizinische Bildverarbei- tung Ausblick Vorbereitung erster Vortrag über Debian Med Bioinformatik und medizinische Bildverarbei- tung Andreas Tille Historisches Debian Pure Blends Testen für wis- senschaftliche Anwendung Support Bioinformatik Medizinische Bildverarbei- tung Ausblick Lektion von DebConf 15 Heidelberg Bioinformatik und medizinische Bildverarbei- tung Andreas Tille Historisches Debian Pure Blends Testen für wis- senschaftliche Anwendung Support I After 15 years people are starting to use what Bioinformatik I’m working on. Medizinische Bildverarbei- John Only 15 years? You young guys should be tung more patient. I should hurry up since after 15 Ausblick years I might be dead but you have so much time. Image by Olaf Kosinsky CC BY-SA 3.0 Lektion von DebConf 15 Heidelberg Bioinformatik und medizinische Bildverarbei- tung Andreas Tille Historisches Debian Pure Blends Testen für wis- senschaftliche Anwendung Support I After 15 years people are starting to use what Bioinformatik I’m working on. Medizinische Bildverarbei- John Only 15 years? You young guys should be tung more patient.
    [Show full text]