|
|
TECHNICAL NOTE |
|
|
|
J Pathol Inform 2013,
4:27 |
OpenSlide: A vendor-neutral software foundation for digital pathology
Adam Goode1, Benjamin Gilbert2, Jan Harkes2, Drazen Jukic3, Mahadev Satyanarayanan2
1 School of Computer Science, Carnegie Mellon University; Google, Pittsburgh, PA, USA 2 School of Computer Science, Carnegie Mellon University, Pittsburgh, Pennsylvania, USA 3 Department of Pathology and Dermatology, University of Pittsburgh, Pittsburgh, Pennsylvania; James A. Haley Veterans Hospital and University of South Florida, Tampa, FL, USA
Date of Submission | 17-Jul-2013 |
Date of Acceptance | 19-Aug-2013 |
Date of Web Publication | 27-Sep-2013 |
Correspondence Address: Mahadev Satyanarayanan School of Computer Science, Carnegie Mellon University, Pittsburgh, Pennsylvania USA
 Source of Support: None, Conflict of Interest: None  | Check |
DOI: 10.4103/2153-3539.119005
Abstract | | |
Although widely touted as a replacement for glass slides and microscopes in pathology, digital slides present major challenges in data storage, transmission, processing and interoperability. Since no universal data format is in widespread use for these images today, each vendor defines its own proprietary data formats, analysis tools, viewers and software libraries. This creates issues not only for pathologists, but also for interoperability. In this paper, we present the design and implementation of OpenSlide, a vendor-neutral C library for reading and manipulating digital slides of diverse vendor formats. The library is extensible and easily interfaced to various programming languages. An application written to the OpenSlide interface can transparently handle multiple vendor formats. OpenSlide is in use today by many academic and industrial organizations world-wide, including many research sites in the United States that are funded by the National Institutes of Health. Keywords: Diamond, digital imaging and communications in medicine, digital slide, OpenDiamond, PathFind, scanner, whole-slide image
How to cite this article: Goode A, Gilbert B, Harkes J, Jukic D, Satyanarayanan M. OpenSlide: A vendor-neutral software foundation for digital pathology. J Pathol Inform 2013;4:27 |
Introduction | |  |
Anatomic pathology stands at the threshold of a major transformation. Starting in the late 20 th century and continuing into the 21 st century, digital slide technology has evolved from early attempts to manually digitize the entire glass slide to sophisticated slide formats and robotic scanning devices. The online storage, Internet-based access and archival preservation of digital slides (also known as "whole-slide images") overcome numerous areas of inefficiency in the conventional workflow of anatomic pathology. For example, they eliminate the need for physical transport and archival storage of glass slides. They also enable within-hospital-network and Internet-based sharing of digital slides for a variety of purposes ranging from diagnoses and quality control to medical research. In addition, there are numerous advances in computer vision and machine learning that enable automated or semi-automated analysis and comparison of digital slides.
For example, an area ripe for the taking is what pathologists affectionately refer to as "wallpaper matching" − namely, comparison of an unknown diagnostic entity encountered under the microscope to entities described and/or photographed in textbooks. This is a long and arduous process with conventional textbooks, hampered by the fact that color imagery is minimal in printed literature because it increases printing costs. Further, only small regions of entire glass slides can be shown in textbooks because their format is too small. If an entire glass slide were to be photographed at ×40 objective (×400 magnification equivalent), the size of the image would roughly be the size of a football field! Using digital slides in conjunction with deep-zoom visualization software and a content-based image search tool called Diamond, [1],[2] we hope to circumvent this problem. This would enable pathologists to leverage Internet-based software to greatly improve the speed and accuracy of analysis and to rapidly identify archival material that is comparable to current material.
An important non-technical challenge when transitioning to digital slides will be the ability and willingness of experienced pathologists who are comfortable with glass slides to embrace new technology. Digital pathology will need to offer some benefits (such as improved accuracy, speed or convenience) to practicing pathologists to encourage them to become more proficient with the new workflows. These changes will take time to percolate through the system, possibly a decade or even longer. Newly-trained pathologists who are comfortable with digital slides from the beginning of their careers will accelerate this process of transformation.
One technical challenge is the difficulty of processing digital slides using standard image processing tools and libraries. These are typically designed for images that can be comfortably uncompressed into memory. Unfortunately, digital slides are enormous relative to image data such as personal photographs. Even after aggressive compression, file sizes of hundreds of megabytes to many gigabytes are common in this domain. At full resolution, images routinely exceed memory sizes and often occupy tens of gigabytes when uncompressed. These images are typically multi-resolution, with only a small amount of image data being relevant at any particular resolution and viewpoint.
A second technical challenge is that each vendor implements its own digital slide formats, libraries and viewers. Vendors typically do not document their formats. Even when there is documentation, important details are omitted or inaccurate. Because a vendor's library or viewer is the only way to view a particular digital slide, doctors and researchers suffer from long-term vendor lock-in − they are unable to take advantage of improvements offered by other vendors. In 2010, a Digital Imaging and Communications in Medicine (DICOM) standard for digital slides was released (supplement 145). [3],[4] This standard was based on experience with the DICOM standard for visible light images (supplement 15, released in 1999) [5] and the efforts of DICOM Working Group 26. [6] Although the DICOM standard may eventually alleviate the problem of format proliferation, there is no evidence of this yet. Realistically, it may be many years before this standard is widely supported by all vendors. Even after widespread adoption, each vendor may continue to preferentially advocate its own proprietary format and merely provide slow export/import functionality for conversion to/from the DICOM standard. Further, unless an extensive effort of format conversion is undertaken, access to archived digital slides in pre-DICOM formats will remain an important obstacle.
A third technical challenge is that few vendors provide libraries and viewers for non-Windows platforms. While Windows dominates clinical settings, there is significant use of Linux in medical research and some use of Apple Mac OS X. In addition, the explosive growth of mobile platforms such as Android and iOS tablets and smartphones suggests that these platforms may play important roles in future clinical settings. Some vendors offer multi-platform support through a server-based approach, but this hurts performance by adding a network round-trip delay on every digital slide operation. This makes it suboptimal for high-latency settings such as 3G and 4G cellular networks and unusable in non-networked environments. There are also some open-source projects to read and convert digital slides, such as the LOCI Bio-Formats library [7] and the NYU Virtual Microscope project, [8] but these are limited to a particular programming environment such as Java or to a small number of slide formats.
To address these technical challenges, we have created OpenSlide. This is a C library for reading and manipulating digital slides of diverse vendor formats. This library can be linked to applications written in C or C++, as well as to applications written in other programming languages such as Java and Python that support C bindings. The use of OpenSlide enables clean separation of concerns for an application developer. Rather than dealing with proliferation of vendor-specific formats, the developer need only develop his application using the OpenSlide application programming interface (API). It is OpenSlide's responsibility to deal with the idiosyncrasies of different vendor formats and to translate back and forth at runtime between the OpenSlide API and a specific vendor's data format. In this context, the DICOM standard can be viewed as yet another vendor format. OpenSlide currently handles the following vendor formats:
- Aperio SVS
- Hamamatsu VMS
- Hamamatsu VMU
- Leica SCN
- 3DHISTECH MRXS ("MIRAX")
- Trestle TIFF
- Generic tiled TIFF.
Since OpenSlide is released as open-source software under the LGPL v2.1 license, the digital pathology community can collaboratively extend it to support new vendor formats. Today, OpenSlide is supported on many Linux distributions, on Windows and on Mac OS X. Although it is not available yet on Android and iOS, we do not foresee any fundamental obstacles to supporting OpenSlide on these platforms.
Design and Implementation | |  |
OpenSlide aims for a good user experience on desktop-class hardware. Its design leverages the fact that although digital slide formats vary widely across vendors, they all address a common set of problems. As a result, vendor formats typically share some broad high-level features:
- They pre-compute and store downsampled versions of the full-resolution image for quicker access to lower resolutions
- They use various kinds of lossy compression
- They are, to varying degrees, optimized for random access
- They are effectively unbounded in width and height
- They can store slide metadata and additional small images such as thumbnails that serve as annotations
- They may not store pixel data for all regions of the image.
OpenSlide is designed to support these features while shielding applications from the details of the various vendor formats. Its vendor-neutral API provides read-only access to digital slides stored in a file system. [Table 1] shows the API calls that relate to file access. For brevity and clarity, the prefix "openslide_" is omitted from the calls shown in [Table 1] through 5 and in their discussion throughout this section.
The OpenSlide API provides efficient random access to multiresolution image data using the concept of pyramid levels. [Table 2] shows the relevant calls. A digital slide is represented as an ordered list of pyramid levels; level 0 is the highest-resolution level and each subsequent level is a downsampled version of the previous level. In general, no image scaling is performed by the library; the only levels available through the API are those actually stored in the slide file. The centerpiece is the read_region() function, which extracts a rectangular region of a whole-slide image at a particular pyramid level. Image data is returned in uncompressed, premultiplied ARGB (Alpha, Red, Green and Blue) format. Additional calls exist to determine the downsampling factor for each level (relative to level 0) and to determine the next largest level for an arbitrary downsample factor. All image coordinates are specified with respect to the coordinate system of level 0. Pixel data for missing image regions is rendered as transparency.
The API provides functions for accessing slide metadata and auxiliary images. All other vendor-specific information, such as tile placement and compression formats, is hidden from the application; access to pixel data is only provided in uncompressed, premultiplied ARGB format. This allows OpenSlide to be extended to support new slide formats without changing the external API or the design of applications using the library. As shown in [Table 3], OpenSlide exposes slide metadata as a set of properties, each of which is identified by a string and has a string-typed value. OpenSlide exposes generic properties for common slide metadata. Individual vendor drivers also expose properties containing format-specific metadata. In addition, small additional images embedded in the slide file, such as thumbnail or barcode images, are exposed as associated images. Unlike the main slide image, associated images are single-resolution and can only be read in their entirety. [Table 4] shows the calls relating to associated images.
Calls for error handling and version control are shown in [Table 5]. If an unrecoverable error such as an I/O error occurs while a slide is being read, the slide handle transitions terminally into an error state. Subsequent invocations of OpenSlide functions on the handle (other than close()) will have no effect; functions that are expected to return values will instead return an error value; read_region() will clear its destination buffer instead of filling it. The get_error() function can be used to check for errors and obtain a string describing the error. This style of error handling allows programs written in C to check for errors only when convenient, without the need to check after every call.
OpenSlide is implemented in C99 and uses GLib [9] extensively for memory allocation, data structure manipulation and text file parsing. OpenSlide relies upon LibTIFF, [10] IJG's JPEG library, [11] OpenJPEG, [12] and LibXML2 [13] for image reading and processing of the various formats and upon the Cairo graphics library [14] for positioning and rendering slide tiles.
OpenSlide's internal architecture is structured in a manner similar to the device driver model found in operating systems. Application-facing code is linked to vendor-specific code by way of internal constructors and function pointers. When a slide file is first opened, vendor-specific driver code is responsible for parsing the slide's metadata and locating the compressed image data for each region of the slide. Thereafter, read requests are forwarded to the vendor-specific driver, which reads the appropriate compressed data from the slide file and renders it to an ARGB image. To do this, the driver can handle the request itself or - in simple cases - forward it to generic handlers provided by the OpenSlide core.
Digital Slide Formats | |  |
As previously discussed, many vendors provide limited or no public documentation for their slide formats. In some cases documentation is available, but only under disclosure restrictions incompatible with open-source software. As a result, OpenSlide's support for many formats has been implemented via empirical analysis of the raw slide data and a significant amount of trial and error. This is an inherently imperfect and iterative process that relies critically on feedback from the user community. As an OpenSlide driver gets more widely and extensively used, we discover more subtle cases where our understanding of the file format is in error. This leads to modifications that result in a more accurate version of the driver. Over time, the implementation of the driver converges to a stable and accurate version.
This approach is dependent upon the availability of sample slide files for analysis. Because it is often difficult to create these samples without access to a corresponding scanner, we are often dependent on the OpenSlide user community to contribute digital slides in interesting formats. The remainder of this section summarizes the slide formats currently supported by OpenSlide. More detailed documentation, as well as a variety of freely-redistributable slide files, is available on the OpenSlide website. [15]
Aperio SVS
Aperio SVS is a single-file, TIFF-based [16] format with non-standard metadata and a specific internal organization. [17] This format reuses a TIFF field, originally intended for free-form text data, to store structured metadata. Some SVS slides store tiles in JPEG 2000 format, which is not contemplated by the TIFF specification and not supported by LibTiff. For these slides, OpenSlide uses low-level LibTiff routines to extract the tile data and decodes it using OpenJPEG.
Hamamatsu VMS and VMU
Hamamatsu VMS is a multi-file, JPEG-based [18] format with primarily text-based metadata. Unlike other formats, which split a slide into a two-dimensional array of small tiles encoded with JPEG or JPEG 2000, VMS delivers slide data in a small number of large JPEG images. Support for random access is retrofitted into the JPEG format via a JPEG feature called "restart markers," originally designed for error recovery. These markers allow the decoder to resynchronize at intervals throughout the image, thus creating "virtual tiles" with a very large aspect ratio (512:1 is not unusual). This aspect ratio forces superfluous decoding of image data well beyond the borders of a region of interest.
IJG's JPEG library does not natively support decoding of individual "virtual tiles," but can be made to do so via careful restructuring of the image data. The slide metadata records the file offsets corresponding to the first tile in each row; to locate the remainder, OpenSlide scans the slide file in the background. Hamamatsu VMS files contain only two pyramid levels. However, the JPEG algorithm permits efficient downsampling of image data during decode; OpenSlide takes advantage of this feature to generate intermediate slide levels for the convenience of the application.
Hamamatsu VMU is a variant of Hamamatsu VMS, which stores uncompressed 16-bit RGB pixel data. Unlike in VMS, there is no efficient way to synthesize additional downsampled levels, so OpenSlide does not do so.
Leica SCN
Leica SCN is a single-file format based on BigTIFF. Slide metadata is stored in XML format in a TIFF text field. Unlike the other supported formats, SCN provides a pyramidal thumbnail image, though OpenSlide currently provides access to only the highest-resolution level. An SCN file can contain image pyramids for multiple regions of a slide; OpenSlide currently does not support such slides due to API limitations.
3DHISTECH MRXS ("MIRAX")
MRXS is a multi-file format with very complicated metadata in a mixture of text and binary formats. MRXS supports storing image tiles in JPEG, PNG and BMP formats; OpenSlide currently only supports JPEG. Though image tiles are approximately arranged into a grid, each group of (typically) 16 tiles has an individual offset from its "natural" grid position, which is recorded in the metadata.
Unique among the formats supported by OpenSlide, MRXS does not align overlapping tiles before concatenating and downsampling them to produce the lower-resolution levels of the image pyramid. As a result, a single 338 × 254 JPEG image might contain as many as 16,384 subimages, which must be separately extracted and positioned for display at subpixel granularity. This greatly complicates the rendering task.
The MRXS format continues to surprise us. Different versions of the vendor's software produce slightly different variants of the format and we regularly have to modify OpenSlide to support new variants discovered by the user community.
Trestle TIFF
Trestle TIFF is a multi-file format. It consists of a TIFF file containing the image pyramid and a text field with structured metadata, plus additional files containing metadata and thumbnail images. In contrast to standard TIFF, Trestle tiles are individually positioned (as in MRXS) and can overlap. The metadata records the nominal overlaps for a given pyramid level as well as the individual overlaps that apply to particular tiles. OpenSlide currently respects the nominal, but not the individual overlaps. Deviations from the nominal overlaps are typically small so this has not been a major problem in practice.
Generic Tiled TIFF
The standard TIFF format is adequate to support a digital slide containing minimal slide metadata. Such TIFF files can be produced by some scanners and can also be generated using existing open-source tools such as VIPS [19] and ImageMagick. [20] OpenSlide supports tiled TIFF images containing one or more pyramid levels.
Example Applications | |  |
Web-Based Viewer
To enable remote viewing of digital slides across the Internet, we have created a web application using the OpenSeadragon AJAX image viewer [21] as shown in [Figure 1]. The client component of our application is JavaScript that is dynamically loaded into a standard web browser from the web page being browsed. The server component is a web server that returns tiles of specified coordinates and zoom levels on demand. These tiles can be pre-generated using an OpenSlide-based tool and served from the file system or can be produced on demand by a web application that invokes OpenSlide at runtime to generate the tiles. Our experience is that there is no user-perceptible performance difference between dynamically-tiled and statically-tiled viewing sessions. Using dynamic tiling avoids a preprocessing step in the workflow and eliminates the storage overhead of storing tiles. A demo of our viewer is available at http://openslide.org/demo/ .
PathFind
As mentioned earlier, enabling knowledge from previously encountered entities to be brought to bear on an unknown, but similar-looking diagnostic entity is a valuable capability in pathology. Of course, "similar-looking" is expressed in terms of visual attributes that have specific significance to the pathology of the tissue sample being examined. PathFind is an OpenSlide-based tool that accepts a wide range of similarity-detection software called searchlets. Each searchlet is a plugin for the OpenDiamond® platform, which enables interactive, semi-automated, hypothesis-driven searches of complex images. (The OpenDiamond platform was created by the same research group that created OpenSlide.) For example, we have created searchlets for similarity detection of cytologic atypia and pagetoid spread in skin lesions, using a machine-learning technique called Semantic Texton Forests. [22] We have also created searchlets for attributes such as nuclear density using ImageJ, [23] an open-source tool supported by the National Institutes of Health. [Figure 2] shows the user interface presented to a pathologist by PathFind. The pathologist can zoom and navigate case data just as he does with a microscope and glass slides today. At any point, he can request a search for archival digital slides that have areas similar to the area currently in view. The results that are returned include entire digital slides as well as specific matching regions within each of those digital slides. [Figure 3] shows the end-to-end architecture of the whole system with the roles of OpenSlide and the OpenDiamond platform highlighted. For each result, associated metadata such as anonymized patient information and diagnosis are returned.
SlideTutor
OpenSlide has also been used in SlideTutor, an intelligent tutoring system for dermatopathology. [24] Digital slides of the cases to be solved by a student are stored on a server and accessed through OpenSlide by the server-side SlideTutor software. Students access these digital slides over the Internet through a standard web browser. A correct response by a student advances him to the next case. An incorrect response triggers remediation that includes helpful visual and textual information. The results of studies using SlideTutor suggest significant learning gains after just one tutoring session. [25]
Other Use Cases
Several pathology education projects use OpenSlide to decode digital slides. One example is the Cardiac Transplant Endomyocardial Biopsy Acute Cellular Rejection Tutorial [26] from the Society for Cardiovascular Pathology and the Association for the European Cardiovascular Pathology. Another example is the Smart Histology app [27] from Smart In Media. OpenSlide is also used in the backends of online slide management systems such as Simagis Live [28] and Emory's Pathology Image Database System. [29] The VIPS image processing system, [19] a toolkit for analysis and manipulation of very large images, supports reading slide files using OpenSlide.
Future Work | |  |
OpenSlide is an evolving tool and we see many areas for improvement and enhancement:
- Supporting new digital slide formats and new variants of existing formats is an ongoing challenge. We would like OpenSlide to ultimately support all major formats, including Hamamatsu NDPI, Olympus VSI, Ventana BIF and DICOM
- Language bindings currently exist for Java and Python. We would like to create open-source bindings to additional programming languages such as C# and image-processing toolkits such as MATLAB. GObject bindings would allow OpenSlide to be transparently used by any programming environment that supports GObject Introspection
- OpenSlide is designed primarily to support high-resolution brightfield images. As a result, the API supports only three 8-bit color channels per image. Multiple focal planes, z-slices, or time points are not supported. In the future, we would like to extend OpenSlide to support arbitrary numbers of fluorescence channels and physical axes
- OpenSlide is designed as infrastructure for third-party applications that wish to support digital slides. While we provide simple viewer programs and tools to exercise the library, including the web-based viewer described earlier, there is no high-quality, open-source viewer application that can easily be installed by end users. Such an application would greatly assist pathologists and researchers wishing to view slide files from Mac OS X or Linux, especially in a multi-vendor environment
- The web-based viewer could be extended to support additional features such as annotations, image rotation and synchronized panning/zooming of multiple images. Some of these features already exist in third-party applications built with OpenSlide. In addition, the creation of an embeddable viewer widget for desktop applications, similar to what OpenSeadragon provides in a web browser, would ease third-party development of such applications.
Conclusion | |  |
Pathology is one of the last medical specialties to be digitized, largely because of the technical problems posed by the capture, storage, transmission, archiving, viewing and annotation of high-resolution, multi-gigabyte, zoomable images. While future improvements in network bandwidth and storage capacity can alleviate these difficulties, their benefit will be limited by the increasing size and complexity of digital slides due to improvements in the resolution, multi-spectral capabilities and other aspects of digital scanner technology. The growth of mobile computing in health-care delivery will exacerbate these challenges because of the need to access digital slides over bandwidth-limited wireless networks from mobile devices with limited screen size. Today's vendor-specific and fragmented approach to digital pathology software offers few opportunities for the latest computer science innovations to be brought to bear on these difficult technical challenges. OpenSlide enables such innovations to be contributed by the best software talent. The merits of specific innovations and their implementations can be evaluated, critiqued and evolved by the entire digital pathology community. We look to a future where this process leads to a vibrant hardware-software ecosystem for digital pathology that fosters interoperability and sharing while preserving ample opportunity for proprietary innovations in hardware and application software.
Acknowledgments | |  |
This research was supported by the Clinical and Translational Science Institute of the University of Pittsburgh (CTSI), under National Institutes of Health (NIH) Clinical and Translational Science Award (CTSA) program grants UL1RR024153 and UL1TR000005. We would like to thank Steve Reis and Michelle Broido for their sustained support of this work and Laura Drogowski for her help in the early phases of this project. We gratefully acknowledge and thank the entire OpenSlide community for its continuing contribution of bug reports, patches and slide data. Support for the SCN and MRXS 2.2 formats was contributed by Agelos Pappas. Stephan Lamont contributed initial support for VMU. Hauke Heibel and Marco Feuerstein implemented initial support for Windows and provided valuable feedback. Yves Sucaet contributed sample data in several formats. OpenDiamond is a registered trademark of Carnegie Mellon University.
References | |  |
1. | Huston L, Sukthankar R, Wickremesinghe R, Satyanarayanan M, Ganger GR, Riedel E, et al. Diamond: A Storage Architecture for Early Discard in Interactive Search, in 3 rd USENIX Conference on File and Storage Technologies. San Francisco, CA; 2004.  |
2. | Satyanarayanan M, Sukthankar R, Goode A, Bila N, Mummert L, Harkes J, et al. Searching complex data without an index. Int J Next-Gener Comput 2010;1:146-67.  |
3. | Singh R, Chubb L, Pantanowitz L, Parwani A. Standardization in digital pathology: Supplement 145 of the DICOM standards. J Pathol Inform 2011;2:23.  [PUBMED] |
4. | DICOM Standards Committee Working Group 26. Supplement 145: Whole slide microscopic image IOD and SOP classes. Rosslyn, VA; 2010.  |
5. | DICOM Standards Committee Working Group 13. Supplement 15: Visible light image for endoscopy, microscopy, and photography. Rosslyn, VA; 1999.  |
6. | DICOM Standards Committee Working Group 26. Pathology analytical imaging standards, 2013. Available from: http://confluence.cci.emory.edu:8090/display/PAIS/DICOM+WG26 [Last accessed on 2013 Aug 26].  |
7. | Laboratory for Optical and Computational Instrumentation, Bio-Formats, 2013. Available from: http://loci.wisc.edu/software/bio-formats [Last accessed on 2013 Aug 26].  |
8. | Holloway W, Triola M. NYU Virtual Microscope, 2013. Available from: http://cloud.med.nyu.edu/virtualmicroscope/ [Last accessed on 2013 Aug 26].  |
9. | The Gtk + project, GLib, 2013. Available from: http://www.gtk.org/ [Last accessed on 2013 Aug 26].  |
10. | Leffler S. LibTIFF, 2013. Available from: http://www.remotesensing.org/libtiff/ [Last accessed on 2013 Aug 26].  |
11. | Independent JPEG Group. The Independent JPEG Group′s JPEG software, 2013. Available from: http://www.ijg.org/ [Last accessed on 2013 Aug 26].  |
12. | OpenJPEG project, OpenJPEG, 2013. Available from: http://www.openjpeg.org/. [Last accessed on 2013 Aug 26].  |
13. | Veillard D. libxml2, 2013. Available from: http://www.xmlsoft.org/ [Last accessed on 2013 Aug 26].  |
14. | Cairo project, Cairo, 2013. Available from: http://www.cairographics.org/ [Last accessed on 2013 Aug 26].  |
15. | OpenSlide project, OpenSlide, 2013. Available from: http://openslide.org/ [Last accessed on 2013 Aug 26].  |
16. | Adobe Systems Incorporated, TIFF 6.0 specification, 1992. Available from: http://partners.adobe.com/public/developer/en/tiff/TIFF6.pdf [Last accessed on 2013 Aug 26].  |
17. | Aperio Technologies, Inc., Digital slides and third-party data interchange, 2008. Available from: http://www.aperio.com/documents/api/Aperio_Digital_Slides_and_Third-party_data_interchange.pdf. [Last accessed on 2009 Dec 1].  |
18. | International Telegraph and Telephone Consultative Committee. Technology Information - Digital Compression and Coding of Continuous-Tone Still Images - Requirements and Guidelines. 1992.  |
19. | VIPS project, libvips, 2013. Available from: http://www.vips.ecs.soton.ac.uk/ [Last accessed on 2013 Aug 26].  |
20. | ImageMagick Studio LLC. ImageMagick, 2013. Available from: http://www.imagemagick.org/ [Last accessed on 2013 Aug 26].  |
21. | OpenSeadragon project, OpenSeadragon, 2013. Available from: http://openseadragon.github.io/ [Last accessed on 2013 Aug 26].  |
22. | Shotton J, Johnson M, Cipolla R. Semantic texton forests for image categorization and segmentation. In: IEEE Conference on Computer Vision and Pattern Recognition. Anchorage, AK; 2008.  |
23. | NIH. ImageJ: Image processing and analysis in Java, 2013. Available from: http://rsbweb.nih.gov/ij/ [Last accessed on 2013 Aug 26].  |
24. | DBMI-Pitt, Use SlideTutor, 2013. Available from: http://slidetutor.upmc.edu/ [Last accessed on 2013 Aug 26].  |
25. | Crowley RS, Legowski E, Medvedeva O, Tseytlin E, Roh E, Jukic D. Evaluation of an intelligent tutoring system in pathology: Effects of external representation on performance gains, metacognition, and acceptance. J Am Med Inform Assoc 2007;14:182-90.  |
26. | Society for Cardiovascular Pathology and Association for the European Cardiovascular Pathology, Cardiac transplant endomyocardial biopsy acute cellular rejection tutorial, 2013. Available from: http://www.scvp.net/acr/ [Last accessed on 2013 Aug 26].  |
27. | Smart In Media, Smart Histology, 2013. Available from: http://www.smarthistology.net/ [Last accessed on 2013 Aug 26].  |
28. | Smart Imaging Technologies, Simagis Live, 2013. Available from: http://live.simagis.com/ [Last accessed on 2013 Aug 26].  |
29. | Wang F, Oh T, Vergara-Niedermayr C, Kurc T, Saltz J. Managing and Querying Whole Slide Images. In: SPIE Medical Imaging. San Diego, CA; 2012.  |
[Figure 1], [Figure 2], [Figure 3]
[Table 1], [Table 2], [Table 3], [Table 4], [Table 5]
This article has been cited by | 1 |
A deep learning model for breast ductal carcinoma in situ classification in whole slide images |
|
| Fahdi Kanavati, Shin Ichihara, Masayuki Tsuneki | | Virchows Archiv. 2022; | | [Pubmed] | [DOI] | | 2 |
MEDAS: an open-source platform as a service to help break the walls between medicine and informatics |
|
| Liang Zhang, Johann Li, Ping Li, Xiaoyuan Lu, Maoguo Gong, Peiyi Shen, Guangming Zhu, Syed Afaq Shah, Mohammed Bennamoun, Kun Qian, Björn W. Schuller | | Neural Computing and Applications. 2022; | | [Pubmed] | [DOI] | | 3 |
Automatic detection of osteosarcoma based on integrated features and feature selection using binary arithmetic optimization algorithm |
|
| Priti Bansal, Kshitiz Gehlot, Abhishek Singhal, Abhishek Gupta | | Multimedia Tools and Applications. 2022; | | [Pubmed] | [DOI] | | 4 |
Model architecture and tile size selection for convolutional neural network training for non-small cell lung cancer detection on whole slide images |
|
| Angus Lang Sun Lee, Curtis Chun Kit To, Alfred Lok Hang Lee, Joshua Jing Xi Li, Ronald Cheong Kin Chan | | Informatics in Medicine Unlocked. 2022; 28: 100850 | | [Pubmed] | [DOI] | | 5 |
Interpretable tumor differentiation grade and microsatellite instability recognition in gastric cancer using deep learning |
|
| Feng Su, Jianmin Li, Xinya Zhao, Beining Wang, Yajie Hu, Yu Sun, Jiafu Ji | | Laboratory Investigation. 2022; | | [Pubmed] | [DOI] | | 6 |
QuantISH: RNA in situ hybridization image analysis framework for quantifying cell type-specific target RNA expression and variability |
|
| Sanaz Jamalzadeh, Antti Häkkinen, Noora Andersson, Kaisa Huhtinen, Anna Laury, Sakari Hietanen, Johanna Hynninen, Jaana Oikkonen, Olli Carpén, Anni Virtanen, Sampsa Hautaniemi | | Laboratory Investigation. 2022; | | [Pubmed] | [DOI] | | 7 |
MIXTURE of human expertise and deep learning—developing an explainable model for predicting pathological diagnosis and survival in patients with interstitial lung disease |
|
| Wataru Uegami, Andrey Bychkov, Mutsumi Ozasa, Kazuki Uehara, Kensuke Kataoka, Takeshi Johkoh, Yasuhiro Kondoh, Hidenori Sakanashi, Junya Fukuoka | | Modern Pathology. 2022; | | [Pubmed] | [DOI] | | 8 |
A loss-based patch label denoising method for improving whole-slide image analysis using a convolutional neural network |
|
| Murtaza Ashraf, Willmer Rafell Quińones Robles, Mujin Kim, Young Sin Ko, Mun Yong Yi | | Scientific Reports. 2022; 12(1) | | [Pubmed] | [DOI] | | 9 |
Deep Learning-Based Fully Automated Diagnosis of Melanocytic Lesions by Using Whole Slide Images |
|
| Yongyang Bao, Jiayi Zhang, Xingyu Zhao, Henghua Zhou, Ying Chen, Junming Jian, Tianlei Shi, Xin Gao | | Journal of Dermatological Treatment. 2022; : 1 | | [Pubmed] | [DOI] | | 10 |
The Digital Brain Tumour Atlas, an open histopathology resource |
|
| Thomas Roetzer-Pejrimovsky, Anna-Christina Moser, Baran Atli, Clemens Christian Vogel, Petra A. Mercea, Romana Prihoda, Ellen Gelpi, Christine Haberler, Romana Höftberger, Johannes A. Hainfellner, Bernhard Baumann, Georg Langs, Adelheid Woehrer | | Scientific Data. 2022; 9(1) | | [Pubmed] | [DOI] | | 11 |
Big-Hypergraph Factorization Neural Network for Survival Prediction From Whole Slide Image |
|
| Donglin Di, Jun Zhang, Fuqiang Lei, Qi Tian, Yue Gao | | IEEE Transactions on Image Processing. 2022; 31: 1149 | | [Pubmed] | [DOI] | | 12 |
Ultrarapid lytic granule release from CTLs activates Ca
2+
-dependent synaptic resistance pathways in melanoma cells
|
|
| Liza Filali, Marie-Pierre Puissegur, Kevin Cortacero, Sylvain Cussat-Blanc, Roxana Khazen, Nathalie Van Acker, François-Xavier Frenois, Arnaud Abreu, Laurence Lamant, Nicolas Meyer, Béatrice Vergier, Sabina Müller, Brienne McKenzie, Salvatore Valitutti | | Science Advances. 2022; 8(7) | | [Pubmed] | [DOI] | | 13 |
A Deep Learning Model for Cervical Cancer Screening on Liquid-Based Cytology Specimens in Whole Slide Images |
|
| Fahdi Kanavati, Naoki Hirose, Takahiro Ishii, Ayaka Fukuda, Shin Ichihara, Masayuki Tsuneki | | Cancers. 2022; 14(5): 1159 | | [Pubmed] | [DOI] | | 14 |
Recent Advances of Deep Learning for Computational Histopathology: Principles and Applications |
|
| Yawen Wu, Michael Cheng, Shuo Huang, Zongxiang Pei, Yingli Zuo, Jianxin Liu, Kai Yang, Qi Zhu, Jie Zhang, Honghai Hong, Daoqiang Zhang, Kun Huang, Liang Cheng, Wei Shao | | Cancers. 2022; 14(5): 1199 | | [Pubmed] | [DOI] | | 15 |
Deep Learning Models for Poorly Differentiated Colorectal Adenocarcinoma Classification in Whole Slide Images Using Transfer Learning |
|
| Masayuki Tsuneki, Fahdi Kanavati | | Diagnostics. 2021; 11(11): 2074 | | [Pubmed] | [DOI] | | 16 |
Quantification of the Immune Content in Neuroblastoma: Deep Learning and Topological Data Analysis in Digital Pathology |
|
| Nicole Bussola, Bruno Papa, Ombretta Melaiu, Aurora Castellano, Doriana Fruci, Giuseppe Jurman | | International Journal of Molecular Sciences. 2021; 22(16): 8804 | | [Pubmed] | [DOI] | | 17 |
Deeply Supervised UNet for Semantic Segmentation to Assist Dermatopathological Assessment of Basal Cell Carcinoma |
|
| Jean Le’Clerc Arrastia, Nick Heilenkötter, Daniel Otero Baguer, Lena Hauberg-Lotte, Tobias Boskamp, Sonja Hetzer, Nicole Duschner, Jörg Schaller, Peter Maass | | Journal of Imaging. 2021; 7(4): 71 | | [Pubmed] | [DOI] | | 18 |
An efficient glomerular object locator for renal whole slide images using proposal-free network and dynamic scale evaluation method |
|
| Xueyu Liu, Ming Li, Yongfei Wu, Yilin Chen, Fang Hao, Daoxiang Zhou, Chen Wang, Chuanfeng Ma, Guangze Shi, Xiaoshuang Zhou | | AI Communications. 2021; : 1 | | [Pubmed] | [DOI] | | 19 |
Histopathological Images and Multi-Omics Integration Predict Molecular Characteristics and Survival in Lung Adenocarcinoma |
|
| Linyan Chen, Hao Zeng, Yu Xiang, Yeqian Huang, Yuling Luo, Xuelei Ma | | Frontiers in Cell and Developmental Biology. 2021; 9 | | [Pubmed] | [DOI] | | 20 |
Integrative Analysis of Histopathological Images and Genomic Data in Colon Adenocarcinoma |
|
| Hui Li, Linyan Chen, Hao Zeng, Qimeng Liao, Jianrui Ji, Xuelei Ma | | Frontiers in Oncology. 2021; 11 | | [Pubmed] | [DOI] | | 21 |
Morphological Features Extracted by AI Associated with Spatial Transcriptomics in Prostate Cancer |
|
| Eduard Chelebian, Christophe Avenel, Kimmo Kartasalo, Maja Marklund, Anna Tanoglidi, Tuomas Mirtti, Richard Colling, Andrew Erickson, Alastair D. Lamb, Joakim Lundeberg, Carolina Wählby | | Cancers. 2021; 13(19): 4837 | | [Pubmed] | [DOI] | | 22 |
Deep Learning Predicts EBV Status in Gastric Cancer Based on Spatial Patterns of Lymphocyte Infiltration |
|
| Baoyi Zhang, Kevin Yao, Min Xu, Jia Wu, Chao Cheng | | Cancers. 2021; 13(23): 6002 | | [Pubmed] | [DOI] | | 23 |
Rocky road to digital diagnostics: implementation issues and exhilarating experiences |
|
| Nikolaos Stathonikos, Tri Q Nguyen, Paul J van Diest | | Journal of Clinical Pathology. 2021; 74(7): 415 | | [Pubmed] | [DOI] | | 24 |
SPIE-AAPM-NCI BreastPathQ challenge: an image analysis challenge for quantitative tumor cellularity assessment in breast cancer histology images following neoadjuvant treatment |
|
| Nicholas Petrick, Shazia Akbar, Kenny H. Cha, Sharon Nofech-Mozes, Berkman Sahiner, Marios A. Gavrielides, Jayashree Kalpathy-Cramer, Karen Drukker, Anne L. Martel, for the BreastPathQ Challenge Group | | Journal of Medical Imaging. 2021; 8(03) | | [Pubmed] | [DOI] | | 25 |
Recent technical advances in whole slide imaging instrumentation |
|
| Prateek Katare, Sai Siva Gorthi | | Journal of Microscopy. 2021; 284(2): 103 | | [Pubmed] | [DOI] | | 26 |
DICOM Format and Protocol Standardization—A Core Requirement for Digital Pathology Success |
|
| David A. Clunie | | Toxicologic Pathology. 2021; 49(4): 738 | | [Pubmed] | [DOI] | | 27 |
Deep Learning Models for Gastric Signet Ring Cell Carcinoma Classification in Whole Slide Images |
|
| Fahdi Kanavati, Shin Ichihara, Michael Rambeau, Osamu Iizuka, Koji Arihiro, Masayuki Tsuneki | | Technology in Cancer Research & Treatment. 2021; 20: 1533033821 | | [Pubmed] | [DOI] | | 28 |
Non-small-cell lung cancer classification via RNA-Seq and histology imaging probability fusion |
|
| Francisco Carrillo-Perez, Juan Carlos Morales, Daniel Castillo-Secilla, Yésica Molina-Castro, Alberto Guillén, Ignacio Rojas, Luis Javier Herrera | | BMC Bioinformatics. 2021; 22(1) | | [Pubmed] | [DOI] | | 29 |
Deep learning-based six-type classifier for lung cancer and mimics from histopathological whole slide images: a retrospective study |
|
| Huan Yang, Lili Chen, Zhiqiang Cheng, Minglei Yang, Jianbo Wang, Chenghao Lin, Yuefeng Wang, Leilei Huang, Yangshan Chen, Sui Peng, Zunfu Ke, Weizhong Li | | BMC Medicine. 2021; 19(1) | | [Pubmed] | [DOI] | | 30 |
Performance-efficient distributed transfer and transformation of big spatial histopathology datasets in the cloud |
|
| Esma Yildirim | | Journal of Big Data. 2021; 8(1) | | [Pubmed] | [DOI] | | 31 |
FastPathology: An Open-Source Platform for Deep Learning-Based Research and Decision Support in Digital Pathology |
|
| Andre Pedersen, Marit Valla, Anna M. Bofin, Javier Perez De Frutos, Ingerid Reinertsen, Erik Smistad | | IEEE Access. 2021; 9: 58216 | | [Pubmed] | [DOI] | | 32 |
An Open Source Platform for Computational Histopathology |
|
| Xiaxia Yu, Bingshuai Zhao, Haofan Huang, Mu Tian, Sai Zhang, Hongping Song, Zengshan Li, Kun Huang, Yi Gao | | IEEE Access. 2021; 9: 73651 | | [Pubmed] | [DOI] | | 33 |
QuArray: an application for tissue array whole slide image export and signal analysis |
|
| Callum Arthurs, Aamir Ahmed, Jonathan Wren | | Bioinformatics. 2021; 37(18): 3082 | | [Pubmed] | [DOI] | | 34 |
HEAL: an automated deep learning framework for cancer histopathology image analysis |
|
| Yanan Wang, Nicolas Coudray, Yun Zhao, Fuyi Li, Changyuan Hu, Yao-Zhong Zhang, Seiya Imoto, Aristotelis Tsirigos, Geoffrey I Webb, Roger J Daly, Jiangning Song, Zhiyong Lu | | Bioinformatics. 2021; | | [Pubmed] | [DOI] | | 35 |
OpenPhi: an interface to access Philips iSyntax whole slide images for computational pathology |
|
| Nita Mulliqi, Kimmo Kartasalo, Henrik Olsson, Xiaoyi Ji, Lars Egevad, Martin Eklund, Pekka Ruusuvuori, Olga Vitek | | Bioinformatics. 2021; 37(21): 3995 | | [Pubmed] | [DOI] | | 36 |
M2aia—Interactive, fast, and memory-efficient analysis of 2D and 3D multi-modal mass spectrometry imaging data |
|
| Jonas Cordes, Thomas Enzlein, Christian Marsching, Marven Hinze, Sandy Engelhardt, Carsten Hopf, Ivo Wolf | | GigaScience. 2021; 10(7) | | [Pubmed] | [DOI] | | 37 |
Artificial Intelligence–Based Screening for Mycobacteria in Whole-Slide Images of Tissue Samples |
|
| Liron Pantanowitz, Uno Wu, Lindsey Seigh, Edmund LoPresti, Fang-Cheng Yeh, Payal Salgia, Pamela Michelow, Scott Hazelhurst, Wei-Yu Chen, Douglas Hartman, Chao-Yuan Yeh | | American Journal of Clinical Pathology. 2021; 156(1): 117 | | [Pubmed] | [DOI] | | 38 |
Deep learning predicts postsurgical recurrence of hepatocellular carcinoma from digital histopathologic images |
|
| Rikiya Yamashita, Jin Long, Atif Saleem, Daniel L. Rubin, Jeanne Shen | | Scientific Reports. 2021; 11(1) | | [Pubmed] | [DOI] | | 39 |
EXACT: a collaboration toolset for algorithm-aided annotation of images with annotation version control |
|
| Christian Marzahl, Marc Aubreville, Christof A. Bertram, Jennifer Maier, Christian Bergler, Christine Kröger, Jörn Voigt, Katharina Breininger, Robert Klopfleisch, Andreas Maier | | Scientific Reports. 2021; 11(1) | | [Pubmed] | [DOI] | | 40 |
A deep learning model for the classification of indeterminate lung carcinoma in biopsy whole slide images |
|
| Fahdi Kanavati, Gouji Toyokawa, Seiya Momosaki, Hiroaki Takeoka, Masaki Okamoto, Koji Yamazaki, Sadanori Takeo, Osamu Iizuka, Masayuki Tsuneki | | Scientific Reports. 2021; 11(1) | | [Pubmed] | [DOI] | | 41 |
A deep learning model for gastric diffuse-type adenocarcinoma classification in whole slide images |
|
| Fahdi Kanavati, Masayuki Tsuneki | | Scientific Reports. 2021; 11(1) | | [Pubmed] | [DOI] | | 42 |
Unmasking the immune microecology of ductal carcinoma in situ with deep learning |
|
| Priya Lakshmi Narayanan, Shan E. Ahmed Raza, Allison H. Hall, Jeffrey R. Marks, Lorraine King, Robert B. West, Lucia Hernandez, Naomi Guppy, Mitch Dowsett, Barry Gusterson, Carlo Maley, E. Shelley Hwang, Yinyin Yuan | | npj Breast Cancer. 2021; 7(1) | | [Pubmed] | [DOI] | | 43 |
Deep-learning based classification distinguishes sarcomatoid malignant mesotheliomas from benign spindle cell mesothelial proliferations |
|
| Julia R. Naso, Adrian B. Levine, Hossein Farahani, Lucian R. Chirieac, Sanja Dacic, Joanne L. Wright, Chi Lai, Hui-Min Yang, Steven J. M. Jones, Ali Bashashati, Stephen Yip, Andrew Churg | | Modern Pathology. 2021; 34(11): 2028 | | [Pubmed] | [DOI] | | 44 |
Using deep learning to predict anti-PD-1 response in melanoma and lung cancer patients from histopathology images |
|
| Jing Hu, Chuanliang Cui, Wenxian Yang, Lihong Huang, Rongshan Yu, Siyang Liu, Yan Kong | | Translational Oncology. 2021; 14(1): 100921 | | [Pubmed] | [DOI] | | 45 |
Retinex model based stain normalization technique for whole slide image analysis |
|
| Md. Ziaul Hoque, Anja Keskinarkaus, Pia Nyberg, Tapio Seppänen | | Computerized Medical Imaging and Graphics. 2021; 90: 101901 | | [Pubmed] | [DOI] | | 46 |
HistoClean: Open-source software for histological image pre-processing and augmentation to improve development of robust convolutional neural networks |
|
| Kris D. McCombe, Stephanie G. Craig, Amélie Viratham Pulsawatdi, Javier I. Quezada-Marín, Matthew Hagan, Simon Rajendran, Matthew P. Humphries, Victoria Bingham, Manuel Salto-Tellez, Richard Gault, Jacqueline A. James | | Computational and Structural Biotechnology Journal. 2021; 19: 4840 | | [Pubmed] | [DOI] | | 47 |
Histopathological image and gene expression pattern analysis for predicting molecular features and prognosis of head and neck squamous cell carcinoma |
|
| Linyan Chen, Hao Zeng, Mingxuan Zhang, Yuling Luo, Xuelei Ma | | Cancer Medicine. 2021; 10(13): 4615 | | [Pubmed] | [DOI] | | 48 |
A 2021 update on cancer image analytics with deep learning |
|
| Nikhil Cherian Kurian, Amit Sethi, Anil Reddy Konduru, Abhishek Mahajan, Swapnil Ulhas Rane | | WIREs Data Mining and Knowledge Discovery. 2021; 11(4) | | [Pubmed] | [DOI] | | 49 |
Regional disturbance of the distribution of T regulatory cells and T helper cells associated with irregular-shaped germinal centers in immunoglobulin G4-related sialadenitis |
|
| Satomi Kasashima, Atsuhiro Kawashima, Nozomu Kurose, Satoru Ozaki, Hiroko Ikeda, Ken-Ichi Harada | | Virchows Archiv. 2021; | | [Pubmed] | [DOI] | | 50 |
Deep learning-based classification and mutation prediction from histopathological images of hepatocellular carcinoma |
|
| Haotian Liao, Yuxi Long, Ruijiang Han, Wei Wang, Lin Xu, Mingheng Liao, Zhen Zhang, Zhenru Wu, Xuequn Shang, Xuefeng Li, Jiajie Peng, Kefei Yuan, Yong Zeng | | Clinical and Translational Medicine. 2020; 10(2) | | [Pubmed] | [DOI] | | 51 |
Pathadin – The essential set of tools to start with whole slide analysis |
|
| Georgi Dzaparidze, Dmitri Kazachonok, Kristi Laht, Heleri Taelma, Ave Minajeva | | Acta Histochemica. 2020; 122(7): 151619 | | [Pubmed] | [DOI] | | 52 |
Utilizing Automated Breast Cancer Detection to Identify Spatial Distributions of Tumor-Infiltrating Lymphocytes in Invasive Breast Cancer |
|
| Han Le, Rajarsi Gupta, Le Hou, Shahira Abousamra, Danielle Fassler, Luke Torre-Healy, Richard A. Moffitt, Tahsin Kurc, Dimitris Samaras, Rebecca Batiste, Tianhao Zhao, Arvind Rao, Alison L. Van Dyke, Ashish Sharma, Erich Bremer, Jonas S. Almeida, Joel Saltz | | The American Journal of Pathology. 2020; 190(7): 1491 | | [Pubmed] | [DOI] | | 53 |
A completely annotated whole slide image dataset of canine breast cancer to aid human breast cancer research |
|
| Marc Aubreville, Christof A. Bertram, Taryn A. Donovan, Christian Marzahl, Andreas Maier, Robert Klopfleisch | | Scientific Data. 2020; 7(1) | | [Pubmed] | [DOI] | | 54 |
Classifying non-small cell lung cancer types and transcriptomic subtypes using convolutional neural networks |
|
| Kun-Hsing Yu, Feiran Wang, Gerald J Berry, Christopher Ré, Russ B Altman, Michael Snyder, Isaac S Kohane | | Journal of the American Medical Informatics Association. 2020; 27(5): 757 | | [Pubmed] | [DOI] | | 55 |
A Novel MKL Method for GBM Prognosis Prediction by Integrating Histopathological Image and Multi-Omics Data |
|
| Ya Zhang, Ao Li, Jie He, Minghui Wang | | IEEE Journal of Biomedical and Health Informatics. 2020; 24(1): 171 | | [Pubmed] | [DOI] | | 56 |
AI in Medical Imaging Informatics: Current Challenges and Future Directions |
|
| Andreas S. Panayides, Amir Amini, Nenad D. Filipovic, Ashish Sharma, Sotirios A. Tsaftaris, Alistair Young, David Foran, Nhan Do, Spyretta Golemati, Tahsin Kurc, Kun Huang, Konstantina S. Nikita, Ben P. Veasey, Michalis Zervakis, Joel H. Saltz, Constantinos S. Pattichis | | IEEE Journal of Biomedical and Health Informatics. 2020; 24(7): 1837 | | [Pubmed] | [DOI] | | 57 |
Whole Slide Imaging: Technology and Applications |
|
| Matthew G. Hanna, Anil Parwani, Sahussapont Joseph Sirintrapun | | Advances in Anatomic Pathology. 2020; 27(4): 251 | | [Pubmed] | [DOI] | | 58 |
PyHIST: A Histological Image Segmentation Tool |
|
| Manuel Muńoz-Aguirre, Vasilis F. Ntasis, Santiago Rojas, Roderic Guigó, Dina Schneidman-Duhovny | | PLOS Computational Biology. 2020; 16(10): e1008349 | | [Pubmed] | [DOI] | | 59 |
Predicting primary site of secondary liver cancer with a neural estimator of metastatic origin |
|
| Geoffrey F. Schau, Erik A. Burlingame, Guillaume Thibault, Tauangtham Anekpuritanang, Ying Wang, Joe W. Gray, Christopher Corless, Young H. Chang | | Journal of Medical Imaging. 2020; 7(01): 1 | | [Pubmed] | [DOI] | | 60 |
Inviwo — A Visualization System with Usage Abstraction Levels |
|
| Daniel Jonsson, Peter Steneteg, Erik Sunden, Rickard Englund, Sathish Kottravel, Martin Falk, Anders Ynnerman, Ingrid Hotz, Timo Ropinski | | IEEE Transactions on Visualization and Computer Graphics. 2020; 26(11): 3241 | | [Pubmed] | [DOI] | | 61 |
Deep-learning-based accurate hepatic steatosis quantification for histological assessment of liver biopsies |
|
| Mousumi Roy, Fusheng Wang, Hoang Vo, Dejun Teng, George Teodoro, Alton B. Farris, Eduardo Castillo-Leon, Miriam B. Vos, Jun Kong | | Laboratory Investigation. 2020; 100(10): 1367 | | [Pubmed] | [DOI] | | 62 |
Deep Learning Predicts Underlying Features on Pathology Images with Therapeutic Relevance for Breast and Gastric Cancer |
|
| Renan Valieris, Lucas Amaro, Cynthia Aparecida Bueno de Toledo Osório, Adriana Passos Bueno, Rafael Andres Rosales Mitrowsky, Dirce Maria Carraro, Diana Noronha Nunes, Emmanuel Dias-Neto, Israel Tojal da Silva | | Cancers. 2020; 12(12): 3687 | | [Pubmed] | [DOI] | | 63 |
Stemness Related Genes Revealed by Network Analysis Associated With Tumor Immune Microenvironment and the Clinical Outcome in Lung Adenocarcinoma |
|
| Hao Zeng, Jianrui Ji, Xindi Song, Yeqian Huang, Hui Li, Juan Huang, Xuelei Ma | | Frontiers in Genetics. 2020; 11 | | [Pubmed] | [DOI] | | 64 |
Integrative Models of Histopathological Image Features and Omics Data Predict Survival in Head and Neck Squamous Cell Carcinoma |
|
| Hao Zeng, Linyan Chen, Yeqian Huang, Yuling Luo, Xuelei Ma | | Frontiers in Cell and Developmental Biology. 2020; 8 | | [Pubmed] | [DOI] | | 65 |
Transcriptome Response and Spatial Pattern of Gene Expression in the Primate Subventricular Zone Neurogenic Niche After Cerebral Ischemia |
|
| Monika C. Chongtham, Haifang Wang, Christina Thaller, Nai-Hua Hsiao, Ivan H. Vachkov, Stoyan P. Pavlov, Lorenz H. Williamson, Tetsumori Yamashima, Anastassia Stoykova, Jun Yan, Gregor Eichele, Anton B. Tonchev | | Frontiers in Cell and Developmental Biology. 2020; 8 | | [Pubmed] | [DOI] | | 66 |
ImageBox 2 – Efficient and rapid access of image tiles from whole-slide images using serverless HTTP range requests |
|
| Erich Bremer, Joel Saltz, JonasS Almeida | | Journal of Pathology Informatics. 2020; 11(1): 29 | | [Pubmed] | [DOI] | | 67 |
Normal Patch Retinex robust algorithm for white balancing in digital microscopy |
|
| Izabella Antoniuk, Artur Krupa, Radoslaw Roszczyk | | Machine Graphics and Vision. 2020; 29(1/4): 79 | | [Pubmed] | [DOI] | | 68 |
High Performance Neural Network Inference, Streaming, and Visualization of Medical Images Using FAST |
|
| Erik Smistad, Andreas Ostvik, Andre Pedersen | | IEEE Access. 2019; 7: 136310 | | [Pubmed] | [DOI] | | 69 |
Image Features Based on Characteristic Curves and Local Binary Patterns for Automated HER2 Scoring |
|
| Ramakrishnan Mukundan | | Journal of Imaging. 2018; 4(2): 35 | | [Pubmed] | [DOI] | | 70 |
QuPath: Open source software for digital pathology image analysis |
|
| Peter Bankhead,Maurice B. Loughrey,José A. Fernández,Yvonne Dombrowski,Darragh G. McArt,Philip D. Dunne,Stephen McQuaid,Ronan T. Gray,Liam J. Murray,Helen G. Coleman,Jacqueline A. James,Manuel Salto-Tellez,Peter W. Hamilton | | Scientific Reports. 2017; 7(1) | | [Pubmed] | [DOI] | | 71 |
Image-based surrogate biomarkers for molecular subtypes of colorectal cancer |
|
| Vlad Popovici,Eva Budinská,Ladislav Dušek,Michal Kozubek,Fred Bosman | | Bioinformatics. 2017; 33(13): 2002 | | [Pubmed] | [DOI] | | 72 |
Identification of “BRAF-Positive” Cases Based on Whole-Slide Image Analysis |
|
| Vlad Popovici,Aleš Krenek,Eva Budinská | | BioMed Research International. 2017; 2017: 1 | | [Pubmed] | [DOI] | | 73 |
A computational method for three-dimensional reconstruction of the microarchitecture of myometrial smooth muscle from histological sections |
|
| E. Josiah Lutton,Wim J. E. P. Lammers,Sean James,Hugo A. van den Berg,Andrew M. Blanks,Roger C. Young | | PLOS ONE. 2017; 12(3): e0173404 | | [Pubmed] | [DOI] | | 74 |
SlideJ: An ImageJ plugin for automated processing of whole slide images |
|
| Vincenzo Della Mea,Giulia L. Baroni,David Pilutti,Carla Di Loreto,Helmut Ahammer | | PLOS ONE. 2017; 12(7): e0180540 | | [Pubmed] | [DOI] | | 75 |
Characterization of tumor-associated T-lymphocyte subsets and immune checkpoint molecules in head and neck squamous cell carcinoma |
|
| Axel Lechner, Hans Schlößer, Sacha I. Rothschild, Martin Thelen, Sabrina Reuter, Peter Zentis, Alexander Shimabukuro-Vornhagen, Sebastian Theurich, Kerstin Wennhold, Maria Garcia-Marquez, Lars Tharun, Alexander Quaas, Astrid Schauss, Jörg Isensee, Tim Hucho, Christian Huebbers, Michael von Bergwelt-Baildon, Dirk Beutner | | Oncotarget. 2017; 8(27): 44418 | | [Pubmed] | [DOI] | | 76 |
Towards Machine Learned Quality Control: A Benchmark for Sharpness Quantification in Digital Pathology |
|
| Gabriele Campanella,Arjun R. Rajanna,Lorraine Corsale,PeterJ. Schüffler,Yukako Yagi,Thomas J. Fuchs | | Computerized Medical Imaging and Graphics. 2017; | | [Pubmed] | [DOI] | | 77 |
A Tunable Diffusion-Consumption Mechanism of Cytokine Propagation Enables Plasticity in Cell-to-Cell Communication in the Immune System |
|
| Alon Oyler-Yaniv,Jennifer Oyler-Yaniv,Benjamin M. Whitlock,Zhiduo Liu,Ronald N. Germain,Morgan Huse,Grégoire Altan-Bonnet,Oleg Krichevsky | | Immunity. 2017; 46(4): 609 | | [Pubmed] | [DOI] | | 78 |
Aufbruch in die digitale Neuropathologie |
|
| Konrad Kölble,Ingmar Blümcke | | Zeitschrift für Epileptologie. 2017; | | [Pubmed] | [DOI] | | 79 |
Enhanced image similarity analysis system in digital pathology |
|
| Jae-Gu Lee,Kyung-Chan Choi,Seung-Ho Yeon,Jeong Won Kim,Young-Woong Ko | | Multimedia Tools and Applications. 2017; | | [Pubmed] | [DOI] | | 80 |
Retrieve similar cell images in OpenSlide file |
|
| Jae Gu Lee,Young Woong Ko | | Multimedia Tools and Applications. 2017; | | [Pubmed] | [DOI] | | 81 |
Technical Challenges of Enterprise Imaging: HIMSS-SIIM Collaborative White Paper |
|
| David A. Clunie,Don K. Dennison,Dawn Cram,Kenneth R. Persons,Mark D. Bronkalla,Henri “Rik” Primo | | Journal of Digital Imaging. 2016; 29(5): 583 | | [Pubmed] | [DOI] | | 82 |
Effects of glycaemic variability on cardiac remodelling after reperfused myocardial infarction: Evaluation of streptozotocin-induced diabetic Wistar rats using cardiac magnetic resonance imaging |
|
| M. Joubert,J. Hardouin,D. Legallois,K. Blanchart,N. Elie,M. Nowoczyn,P. Croisille,L. Coulbault,C. Bor-Angelier,S. Allouche,A. Manrique | | Diabetes & Metabolism. 2016; | | [Pubmed] | [DOI] | | 83 |
Embracing an integromic approach to tissue biomarker research in cancer: Perspectives and lessons learned |
|
| Gerald Li,Peter Bankhead,Philip D Dunne,Paul G O’Reilly,Jacqueline A James,Manuel Salto-Tellez,Peter W Hamilton,Darragh G McArt | | Briefings in Bioinformatics. 2016; : bbw044 | | [Pubmed] | [DOI] | | 84 |
Content-based analysis of Ki-67 stained meningioma specimens for automatic hot-spot selection |
|
| Zaneta Swiderska-Chadaj,Tomasz Markiewicz,Bartlomiej Grala,Malgorzata Lorent | | Diagnostic Pathology. 2016; 11(1) | | [Pubmed] | [DOI] | | 85 |
OpenTein: a database of digital whole-slide images of stem cell-derived teratomas |
|
| Sung-Joon Park,Yusuke Komiyama,Hirofumi Suemori,Akihiro Umezawa,Kenta Nakai | | Nucleic Acids Research. 2016; 44(D1): D1000 | | [Pubmed] | [DOI] | | 86 |
Customizing Laboratory Information Systems |
|
| Peter Gershkovich,John H. Sinard | | Advances In Anatomic Pathology. 2015; 22(5): 323 | | [Pubmed] | [DOI] | | 87 |
Automated Histology Analysis: Opportunities for signal processing |
|
| Michael T McCann,John A. Ozolek,Carlos A. Castro,Bahram Parvin,Jelena Kovacevic | | IEEE Signal Processing Magazine. 2015; 32(1): 78 | | [Pubmed] | [DOI] | | 88 |
Robot-Guided Atomic Force Microscopy for Mechano-Visual Phenotyping of Cancer Specimens |
|
| Wenjin Chen,Zachary Brandes,Rajarshi Roy,Marina Chekmareva,Hardik J. Pandya,Jaydev P. Desai,David J. Foran | | Microscopy and Microanalysis. 2015; 21(05): 1224 | | [Pubmed] | [DOI] | | 89 |
Pan-cancer analysis of the extent and consequences of intratumor heterogeneity |
|
| Noemi Andor,Trevor A Graham,Marnix Jansen,Li C Xia,C Athena Aktipis,Claudia Petritsch,Hanlee P Ji,Carlo C Maley | | Nature Medicine. 2015; 22(1): 105 | | [Pubmed] | [DOI] | | 90 |
An adaptable navigation strategy for Virtual Microscopy from mobile platforms |
|
| Germán Corredor,Eduardo Romero,Marcela Iregui | | Journal of Biomedical Informatics. 2015; 54: 39 | | [Pubmed] | [DOI] | | 91 |
Machine learning approaches to analyze histological images of tissues from radical prostatectomies |
|
| Arkadiusz Gertych,Nathan Ing,Zhaoxuan Ma,Thomas J. Fuchs,Sadri Salman,Sambit Mohanty,Sanica Bhele,Adriana Velásquez-Vacca,Mahul B. Amin,Beatrice S. Knudsen | | Computerized Medical Imaging and Graphics. 2015; 46: 197 | | [Pubmed] | [DOI] | | 92 |
Personalized Oncology Suite: integrating next-generation sequencing data and whole-slide bioimages |
|
| Andreas Dander,Matthias Baldauf,Michael Sperk,Stephan Pabinger,Benjamin Hiltpolt,Zlatko Trajanoski | | BMC Bioinformatics. 2014; 15(1): 306 | | [Pubmed] | [DOI] | |
|
|
 |
 |
|