Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
C
Python
M4
Other
Cannot retrieve the latest commit at this time.
| Failed to load latest commit information. | |||
|
|
doc | ||
|
|
src | ||
|
|
.gitignore | ||
|
|
LICENSE.txt | ||
|
|
Makefile.am | ||
|
|
README.txt | ||
|
|
TODO.txt | ||
|
|
configure.ac | ||
|
|
gpl-2.0.txt | ||
|
|
openslide.pc.in | ||
README.txt
OpenSlide Carnegie Mellon University http://openslide.cs.cmu.edu/ 2008-11-03 ========================== What is this? ============= This library reads whole slide image files (also known as virtual slides). It provides a consistent and simple API for reading files from multiple vendors. What is the license? ==================== This code is licensed under the GNU GPL version 2, not any later version. See the file gpl-2.0.txt for the text of the license. Requirements ============ This library requires libjpeg, libtiff, and glib >= 2.10. Features ======== The library can read Trestle, Aperio, and Hamamatsu formats. Other Documentation =================== See the Carnegie Mellon SCS Technical Report: CMU-CS-08-136 A Vendor-Neutral Library and Viewer for Whole-Slide Images Adam Goode, M. Satyanarayanan http://reports-archive.adm.cs.cmu.edu/anon/2008/abstracts/08-136.html http://reports-archive.adm.cs.cmu.edu/anon/2008/CMU-CS-08-136.pdf Changes from Tech Report ======================== The CMU CS TR contains API documentation for a previous, unreleased version of this library. Since the report was released, the API has changed to prefer signed integers over unsigned and to use 64-bit types for positions and dimensions. The ws_get_region_num_bytes function was removed. Additionally, "wholeslide" was renamed to "openslide", the "ws_" prefix changed to "openslide_", and "wholeslide_t" is now "openslide_t". See openslide.h in this distribution for the definitive API reference. How to build? ============= ./configure make make install Good luck!