-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·35 lines (34 loc) · 2.25 KB
/
index.html
File metadata and controls
executable file
·35 lines (34 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>dcmjs Examples</h1>
<p>
These examples are meant to demonstrate various aspects of the dcmjs library in an interactive way.
They are written such that they can be opened directly in your web browser from github or your local
repository. Use the "view source" capabilities built into your browser to see how each example works.
</p>
</div>
<ul>
<li><a href="display/index.html">Display DICOM data</a> - Use dcmjs to display DICOM image and metadata</li>
<li><a href="createSegmentation/index.html">Create DICOM Segmentation</a> - Use dcmjs to create a DICOM Segmentation file</li>
<li><a href="displaySegmentation/index.html">Display DICOM Segmentation with Cornerstone</a> - Use dcmjs and Cornerstone to display a DICOM Segmentation file</li>
<li><a href="displayParametricMap/index.html">Display DICOM Parametric Map Overlay with Cornerstone</a> - Use dcmjs and Cornerstone to display a DICOM Parametric Map as Overlay</li>
<li><a href="displayParametricMap2/index.html">Display DICOM Parametric Map with Cornerstone</a> - Use dcmjs and Cornerstone to display a DICOM Parametric Map</li>
<li><a href="vtkDisplay/index.html">Display DICOM Segmentation with VTKjs</a> - Use dcmjs and VTKjs to display a DICOM Segmentation file</li>
<li><a href="linearMeasurements/index.html">Create DICOM Structured Report</a> - Use dcmjs to create a DICOM Structured Report file</li>
<li><a href="microscopy/generateReport/index.html">Create DICOM Structured Report for Microscopy</a> - Use dcmjs to create a DICOM Structured Report file from Microscopy view</li>
<li><a href="microscopy/loadFromReport/index.html">Load Microscopy image from DICOM Structured Report</a> - Use dcmjs to load an image and its ROIs from a DICOM Structured Report file</li>
</ul>
<br>
<a href="https://rawgithub.com/dcmjs-org/dcmjs/master/examples/index.html">
Click here to view this page live on github
</a>
</div>
</body>
</html>