forked from commontk/dcmjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (66 loc) · 4.94 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<title>dcmjs by CTK</title>
</head>
<body>
<header>
<div class="container">
<h1>dcmjs</h1>
<h2>web infrastructure for the cross-compiled dcmtk in javascript (uses emscripten)</h2>
<section id="downloads">
<a href="https://github.com/commontk/dcmjs/zipball/master" class="btn">Download as .zip</a>
<a href="https://github.com/commontk/dcmjs/tarball/master" class="btn">Download as .tar.gz</a>
<a href="https://github.com/commontk/dcmjs" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
</section>
</div>
</header>
<div class="container">
<section id="main_content">
<h3>
<a name="welcome-to-dcmjs" class="anchor" href="#welcome-to-dcmjs"><span class="octicon octicon-link"></span></a>Welcome to dcmjs</h3>
<p>dcmjs is a javascript cross-compilation of dcmtk (dcmtk.org) for use
in a javascript environment. Uses emscripten.</p>
<pre><code> <a href="https://github.com/commontk/dcmjs"> http://github.com/commontk/dcmjs </a>
</code></pre>
<p>See License.txt for information on using and contributing.</p>
<h3>
<a name="demos" class="anchor" href="#demos"><span class="octicon octicon-link"></span></a>Demos</h3>
<ul>
<li> <a href="dump/index.html">DICOM Header Dump (client side dcmdump)</a> </li>
<li> <a href="view/index.html">DICOM Image Viewer (client side dcm2pnm)</a> </li>
<li> <a href="organize/index.html">DICOM Organizer (client side dicom sort and light-weight anonymizer)</a> </li>
</ul>
<h3>
<a name="why" class="anchor" href="#why"><span class="octicon octicon-link"></span></a>Why??</h3>
<p>DICOM is a wonderful but tricky standard to support. Particularly when working with real-world DICOM implementations it is very common to run into non-standard data file, or even standard files that use valid but unusual aspects of the standard. Lucky people can ignore these problem DICOM files. Unlucky people need to find workarounds and deal the files. Fortunately for the unlucky people, a community of software developers had worked around many of the issues and dcmtk is a robust toolkit that embeds hard-earned knowledge in a C++ library.</p>
<p>But the dcmtk C++ library needs to be compiled to be useful. And it needs to be installed on a computer in order to operate. Traditionally, C++ compilers, linkers, and packaging tools are used for this task. It's a task to build a package and it's sometimes a burden to have users install packages on their computers. Not to mention there are support issues with native software installations.</p>
<p>Instead, for some applications we'd like to have a website that understands dicom and is able to process it locally. A very common use case for this is running dicom deidentification code, where the patient confidential data cannot leave the host institution without being deidentified. In these situations a server-based application can't work. This is the case that led us to try building dcmjs.</p>
<h3>
<a name="what" class="anchor" href="#what"><span class="octicon octicon-link"></span></a>What??</h3>
<p>The dcmtk code is compiles with cmake in the normal way, but using the emsdk. More details on how to replicate this will be added as the system gets refined. For now you can use the .js files as-is.</p>
<h3>
<a name="authors-and-contributors" class="anchor" href="#authors-and-contributors"><span class="octicon octicon-link"></span></a>Authors and Contributors</h3>
<p>dcmjs is a product of <a href=http://commontk.org>CTK</a> and was initiated at the <a href=http://www.commontk.org/index.php/CTK-Hackfest-May-2014>May 2014 CTK Hackfest, hosted at Washington University, St. Louis</a>. See the events page at commontk.org for more info. DCMTK is from Offis (<a href=http://dicom.offis.de>dicom.offis.de</a>).</p>
<h3>
<a name="support-or-contact" class="anchor" href="#support-or-contact"><span class="octicon octicon-link"></span></a>Support or Contact</h3>
<p>Not yet supported so don't expect this to work perfectly any time soon.</p>
<a href="http://commontk.org"><img src="images/LogoCTK_med.png" ></img></a>
</section>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-50750505-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>