You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,8 @@ This is an extension of [brainchop](https://github.com/neuroneural/brainchop) th
12
12
4.**Option 3** If your image is in DICOM format, it may load if you drag and drop the files. If this fails, convert your images with [dcm2niix](https://niivue.github.io/niivue-dcm2niix/) and save the result as a NIfTI format file that brain2print can open.
13
13
5. Segment your brain scan by choosing a model from the `Segmentation Model` pull-down menu. Not all models work with all graphics cards. The `Tissue GWM (High Acc, Low Mem)` is a good starting point. Hopefully, it will accurately segment your brain into gray matter, white matter and cerebral spinal fluid.
14
14
6. Press the `Create Mesh` button and select your preferred settings:
15
-
-
15
+
-
16
+
- The `Hollow` option allows you to choose between a solid object or a surface shell (which uses less material to print).
16
17
- You can choose `Smoothing` to make the surfaces less jagged at the expense of computation time.
17
18
- You can choose to `Simplify` to reduce the number of triangles and create smaller files.
18
19
7. Once you have set your preferences, press `Apply`.
@@ -42,6 +43,7 @@ npm run build
42
43
43
44
This web page combines three packages developed by our team:
44
45
45
-
-[brainchop](https://github.com/neuroneural/brainchop) AI models for tissue segmentation.
46
-
-[niivue](https://github.com/niivue/niivue) reading images and visualization
47
-
-[ITK-Wasm](https://github.com/InsightSoftwareConsortium/ITK-Wasm) for voxel-to-mesh and mesh processing
46
+
-[brainchop](https://github.com/neuroneural/brainchop) AI models for tissue segmentation. [Citation](https://pubmed.ncbi.nlm.nih.gov/39301517/).
47
+
-[niimath](https://github.com/rordenlab/niimath) for creating hollow objects. [Citation](https://pubmed.ncbi.nlm.nih.gov/39268148/).
48
+
-[niivue](https://github.com/niivue/niivue) reading images and visualization.
49
+
-[ITK-Wasm](https://github.com/InsightSoftwareConsortium/ITK-Wasm) for voxel-to-mesh and mesh processing. [Citation](https://proceedings.scipy.org/articles/TCFJ5130.
Copy file name to clipboardExpand all lines: index.html
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,19 @@
65
65
</footer>
66
66
<dialogid="remeshDialog">
67
67
<formmethod="dialog">
68
+
<p>
69
+
<label>
70
+
Hollow:
71
+
<selectid="hollowSelect" title="hollow meshes require less material but may be fragile">
72
+
<optionvalue="0" selected>False: solid</option>
73
+
<optionvalue="-1">1mm</option>
74
+
<optionvalue="-2">2mm</option>
75
+
<optionvalue="-4">4mm</option>
76
+
<optionvalue="-8">8mm</option>
77
+
<optionvalue="-16">16mm</option>
78
+
</select>
79
+
</label>
80
+
</p>
68
81
<p>
69
82
<labelfor="smoothSlide">Smoothing</label>
70
83
<input
@@ -79,7 +92,7 @@
79
92
</p>
80
93
<p>
81
94
<label>Simplify Percent (10..150)</label>
82
-
<inputtitle="triangle reduction reduces the file size and computation time but can reduce mesh quality, smaller values result in a smaller mesh" id="shrinkPct" type="number" min="10" value="75" max="150">
95
+
<inputtitle="triangle reduction reduces the file size and computation time but can reduce mesh quality, smaller values result in a smaller mesh" id="shrinkPct" type="number" min="10" value="25" max="150">
0 commit comments