Cornerstone Core
Cornerstone is an open source project with a goal to deliver a complete web based medical imaging platform. This
repository contains the Cornerstone Core component which is a lightweight JavaScript library for displaying
medical images in modern web browsers that support the HTML5 canvas element.
Cornerstone Core is not meant to be a complete application itself, but instead a component
that can be used as part of larger more complex applications. See the
CornerstoneDemo for an example of using the various Cornerstone
libraries to build a simple study viewer.
Cornerstone Core is agnostic to the actual container used to store image pixels as well as the transport mechanism
used to get the image data. In fact, Cornerstone Core itself has no ability to read/parse or load images and instead
depends on one or more ImageLoaders to function.
The goal here is to avoid constraining developers to work within a single container and transport (e.g. DICOM) since
images are stored in a variety of formats (including proprietary). By providing flexibility with respect to the
container and transport, the highest performance image display may be obtained as no conversion to an alternate
container or transport is required. It is hoped that developers feel empowered to load images from any type of image
container using any kind of transport. See the
CornerstoneWADOImageLoader project for an example
of a DICOM WADO based Image Loader.
Cornerstone Core is agnostic to the exact interaction paradigm being used. It does not include any mouse, touch or
keyboard bindings to manipulate the various image properties such as scale, translation or ww/wc. The goal here
is to avoid constraining developers using this library to fit into a given ui paradigm. It is hoped that developers
are empowered to create new paradigms possibly using new input mechanisms to interact with medical images (e.g.
Kinect or Accelerometer.
Cornerstone does provide a set of API's allowing manipulation of the image properties via javascript.
See the CornerstoneTools library for an example of common tools built on top of
Cornerstone.
Have questions? Try posting on our google groups forum.
Live Examples
The best way to see the power of this library is to actually see it in use.
Click here for a list of examples of using the Cornerstone library.
Install
Get a packaged source file:
Or install via Bower:
bower install cornerstone
Key Features
- HTML5/Javascript based library to easily add interactive medical images to web applications
- Serves as a foundation to build more complex medical imaging applications from - enterprise viewer, report viewer, etc.
- Supports all HTML5 based browsers including mobile, tablet and desktop
- Displays all common medical image formats (e.g. 8 bit grayscale, 16 bit grayscale, RGB color)
- High performance image display
- Retrieval of images from different systems with different protocols via Image Loader plugin design
- API support for changing viewport properties (e.g. ww/wc, zoom, pan, invert)
Build System
This project uses grunt to build the software.
Pre-requisites:
NodeJs - click to visit web site for installation instructions.
grunt-cli
npm install -g grunt-cli
bower
npm install -g bower
Common Tasks
Update dependencies (after each pull):
npm install
bower install
Running the build:
grunt
Automatically running the build and unit tests after each source change:
grunt watch
Links
View the wiki for documentation on the concepts and APIs
View Roadmap
View Backlog
comp.protocols.dicom thread
Trello
CornerstoneTools - A library of common tools that can be used with Cornerstone
CornerstoneWADOImageLoader - A Cornerstone Image Loader that works with WADO
dicomParser - A JavaScript library designed to parse DICOM for web browsers
Code Contributors
I welcome pull requests, please see FAQ below for guidance on this.
- @simonmd - CSS improvements in the cornerstoneDemo application
- @doncharkowsky - The angle tool in cornerstoneTools
- @prasath-rasterimages - Touch event bindings in cornerstoneTools
- @jpamburn - Performance optimizations for signed data, fixes for image caching
- @jmhmd - for getPixels() implementation
- @devishree-raster - for flip and rotate implementation
FAQ
Why did you decide to license this library using the open source MIT license?
The main reason this library is released as open source is
that I believe that medical imaging in particular can do a lot more to improve patient outcomes
but the cost of doing so is prohibitive. Making this library open source removes the cost barrier and will
hopefully usher in a new set of medical imaging based applications.
The old adage a picture is worth a thousand words
is very true in medical imaging. When a patient is going through a disease process, they often face fear
and confusion. Medical terminology amplifies these issues as it is hard to understand and therefore
disempowering. Medical imaging allows a mysterious health issue to be visualized and therefore brings a
level of understanding that just can't be accomplished via textual information found in lab or radiology
reports. By helping a patient (and its supporting friends/family) connect with the disease visually through
images, it is believed that fear, anxiety and confusion will all be reduced which
will increase optimism and therefore patient outcomes.
It is my hope that this library be used to build a variety of applications and experiences
to deliver on this vision. The MIT license allows this library to be used in any type of application - personal,
open source and commercial and is therefore appropriate to support this vision. If you are reading this,
I hope you can join me in this mission as there is still a lot to be done.
Why doesn't Cornerstone natively support the display of DICOM images?
While DICOM has support for just about every type of medical image, there are many cases where medical images
are not stored in DICOM format. In many cases, a PACS may receive DICOM images but store them in a proprietary
format on disk. In this case, it can be faster to access images by having an image loader that works with
a proprietary PACS interface that would not require conversion from the proprietary format into a standard format
like DICOM. Another example of this is is dermatology where images are often taken using standard
digital cameras and are stored as JPEG not DICOM.
The main reason this library is not based around DICOM is that it wants to reach the widest possible adoption
and that will be accomplished by supporting as many types of image containers and transports possible.
Another side effect of this approach is that the code base is smaller and easier to understand since
it is focused on doing exactly one thing. That being said, it is is expected that the majority of images
displayed using this library will have originated as DICOM images. It is therefore important to make sure
that there are no limitations with respect to displaying the different types of DICOM images and have robust
supporting libraries for DICOM. Separate libraries to add DICOM specific support already exist, check out the
CornerstoneWADOImageLoader library and
the dicomParser library.
Why doesn't Cornerstone include basic tools like ww/wc using the mouse?
There is no standard for user interaction in medical imaging and a wide variety of interaction paradigms exist.
For example, one medical imaging application may use the left mouse button to adjust ww/wc and another may use the
right mouse button. The main reason this library does not include tools is that it wants to reach the widest possible
adoption and that will only be accomplished by making any interaction paradigm possible. No tools
are therefore provided with this library allowing users of the library to choose
whatever interaction paradigm they like. It is also hoped that this approach will make it easier for developers
to experiment with new user input mechanisms like Kinect or
Accelerometer. Another side effect of this
approach is that the code base is smaller and easier to understand since it is focused on doing exactly one
thing. Tools are provided using the separate CornerstoneTools
if desired.
Why does this library require HTML5 canvas when IE8 is the main browser used in healthcare?
The fact that IE8 is the most popular commonly used web browser in healthcare right now is a temporary
situation. It is expected that 50% of the industry will have HTML5 based web browsers deployed by the end
of 2015 and 90% by 2017. The library made a tradeoff to focus on the future platform to keep the code base
simple and avoid compromises related to older browser technology. Note that it may be possible to get
this library to work on IE8 using excanvas but I haven't tried
it yet.
Why doesn't this library support stacks of images?
Images stack functionality such as a CT series or MRI series can actually be quite complex. Regardless of
what stack functionality is desired, all stacks ultimately need to be able to display a single image and that
is what this library is focused on doing. Stack functionality is therefore pushed up to a higher layer. The
CornerstoneTools contains stack functionality and is a good place
to look to see how various stack related functionality is implemented.
How do you envision this library supporting 3D functionality such as MPR, MIP and VR?
This library would be responsible for displaying the rendered image to the user. The rendering of the
3D image would be done by some other library - perhaps on the server side. This library is purely 2D and has
no knowledge of 3D image space. It will probably make sense to have several layers on top of this library
to provide 3D functionality. For example, one layer that has a 3D viewport with properties such as transformation
matrix, slice thickness, transfer function/LUT, segmentation masks, etc. And another 3D tools layer that provides
various tools on top of the 3d viewport (rotate, zoom, segment, scroll, etc). I do have a working 3D server that
is integrated with cornerstone but am keeping the code closed for now (this may change in the future - TBD).
Why did you add jQuery as a dependency?
Primarily for its custom event handling.
I would like to contribute code - how do I do this?
Fork the repository, make your change and submit a pull request.
Any guidance on submitting changes?
While I do appreciate code contributions, I will not merge it unless it meets the following criteria:
- Functionality is appropriate for the repository. Consider posting on the forum if you are not sure
- Code quality is acceptable. I don't have coding standards defined, but make sure it passes jshint and looks like
the rest of the code in the repository.
- Quality of design is acceptable. This is a bit subjective so you should consider posting on the forum for specific guidance
I will provide feedback on your pull request if it fails to meet any of the above.
Please consider separate pull requests for each feature as big pull requests are very time consuming to understand.
It is highly probably that I will reject a large pull request due to the time it would take to comprehend.
Will you add feature XYZ for me?
If it is in the roadmap, I intend to implement it some day - probably when I actually need it. If you really need
something now and are willing to pay for it, try posting on the cornerstone platform google group
How mature is Cornerstone?
Each repository is at a different level of maturity. There are at least 50 image viewer projects using Cornerstone
and the feedback has been consistently strong about the architecture, design and quality. The cornerstoneTools library
is the least mature from a framework and breadth of functionality perspective - but the implemented features work well.
Copyright
Copyright 2015 Chris Hafey chafey@gmail.com