-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (65 loc) · 2.45 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
<!DOCTYPE html>
<html>
<head>
<title>DBS leads</title>
</head>
<body>
<h1>Micro-CT images of deep brain stimulation leads</h1>
Acquired with a Bruker Skyscan 1276 system by the <a href="https://www.uniklinik-freiburg.de/mr-en/research-groups/spectral-ct-imaging.html"> ACTIV group</a> at the University Medical Center Freiburg.<br>
The units of the scale bar represent the number of voxels. The voxel size is between 20 and 35 µm depending on the lead (scanner magnification was adjusted for each sample to optimize image quality).<br>
To interact with an image, click on the menu icon in the top left corner.<br>
Images can be downloaded by clicking on the download icon.<br>
Images are downscaled. They can be downloaded in full resolution (between 4 and 7 µm voxel size) from the <a href="https://zenodo.org/doi/10.5281/zenodo.10245469"> Zenodo repository</a> (DOI 10.5281/zenodo.10245469).<br>
<style>
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 10px;
}
.grid-item {
display: flex;
flex-direction: column;
align-items: center;
}
</style>
<div class="grid-container">
<div class="grid-item">
<div class="itk-vtk-viewer"
data-url="Abbott_infinity.nii"
title="Abbott Infinity™">
</div>
<p>Abbott Infinity™</p>
</div>
<div class="grid-item">
<div class="itk-vtk-viewer"
data-url="Aleva_directSTIM.nii"
title="Aleva DirectSTIM™">
</div>
<p>Aleva directSTIM™</p>
</div>
<div class="grid-item">
<div class="itk-vtk-viewer"
data-url="BS_cartesia.nii"
title="Boston Scientific Cartesia™">
</div>
<p>Boston Scientific Cartesia™</p>
</div>
<div class="grid-item">
<div class="itk-vtk-viewer"
data-url="BS_vercise.nii"
title="Boston Scientific Vercise™">
</div>
<p>Boston Scientific Vercise™</p>
</div>
<div class="grid-item">
<div class="itk-vtk-viewer"
data-url="Medtronic_sensight.nii"
title="Medtronic Sensight™">
</div>
<p>Medtronic Sensight™</p>
</div>
</div>
<script type="text/javascript" src="https://kitware.github.io/itk-vtk-viewer/app/itkVtkViewerCDN.js"></script>
</body>
</html>