cornerstoneDemo icon indicating copy to clipboard operation
cornerstoneDemo copied to clipboard

Demonstration application that shows use of all cornerstone components together

Results 28 cornerstoneDemo issues
Sort by recently updated
recently updated
newest added
trafficstars

Dear sir, First please allow me to show my thanks for your great job of dicom file parser, viewer and tools. I’m working on a web-based remote clinic project. I’m...

Currently the button indices are [hard coded](https://github.com/chafey/cornerstoneDemo/blob/gh-pages/js/setupButtons.js#L8-113). This same code is much less fragile in the [allImageTools example](https://github.com/chafey/cornerstoneTools/blob/2c42f49fc9d132cb7fe4a169f501a06e5ee408a3/examples/allImageTools/index.html#L166-207).

In one place it is called WW/WC in the other WW/WL: - https://github.com/chafey/cornerstoneDemo/blob/c112d0785cdef79dca81281703358297574c9036/index.html#L390 - https://github.com/chafey/cornerstoneDemo/blob/c112d0785cdef79dca81281703358297574c9036/index.html#L209

Why call each tooltip on each button [like this](https://github.com/chafey/cornerstoneDemo/blob/gh-pages/js/setupButtons.js#L120-132) rather than a simple: http://getbootstrap.com/javascript/#opt-in-functionality

The highlight tool is available at: https://github.com/chafey/cornerstoneTools/blob/master/examples/allImageTools/index.html but not in the cornerstoneDemo. Should be easy to add using: ``` html ``` ``` js $(buttons[12]).on('click touchstart',function() { disableAllTools(); cornerstoneTools.highlight.activate(element, 1); });...

I am not sure what this code is supposed to do: ``` javascript function resizeMain() { var height = $(window).height(); $('#main').height(height - 50); $('#tabContent').height(height - 50 -42); } $(window).resize(function() {...

Looking at the network graph on the developer tools, I see that images are being loaded sequentially: ![screen shot 2014-05-11 at 9 00 50 am](https://cloud.githubusercontent.com/assets/155209/2938628/de02ea36-d917-11e3-8555-a4d6995b14e2.png) Can they be loaded simultaneously?...

Some feedback on image loading would be useful. Perhaps a discrete progress bar type indicator?

For those of us with trackpads, it is often useful to switch between tools using keyboard modifiers due to a lack of [right or center click] + drag For example,...

The tool gets disabled when trying to place start point. Tested on iPad.