Spaces:
Configuration error
Configuration error
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <link rel="stylesheet" href="./niivue.css" /> | |
| <title>MindGrab WebGPU</title> | |
| </head> | |
| <body> | |
| <header> | |
| <button id="segmentBtn">Segment</button> | |
| <label for="clipCheck">Clip Plane</label> | |
| <input type="checkbox" id="clipCheck" unchecked /> | |
| <label for="opacitySlider0">Background Opacity</label> | |
| <input type="range" min="0" max="255" value="255" class="slider" id="opacitySlider0" /> | |
| | |
| <label for="opacitySlider1">Overlay Opacity</label> | |
| <input type="range" min="0" max="255" value="128" class="slider" id="opacitySlider1" /> | |
| | |
| <button id="saveImgBtn">Save Overlay</button> | |
| | |
| <button id="aboutBtn">About</button> | |
| | |
| <div id="loadingCircle" class="loading-circle hidden"></div> | |
| <label for="segmentationDropdown">MindGrab Variant:</label> | |
| <select id="segmentationDropdown"> | |
| <option value="mindgrab">MindGrab (default)</option> | |
| <option value="mindgrab_tta_sagittal">MindGrab (TTA Sagittal)</option> | |
| <option value="mindgrab_tta_coronal">MindGrab (TTA Coronal)</option> | |
| <option value="mindgrab_tta_axial">MindGrab (TTA Axial)</option> | |
| </select> | |
| </header> | |
| <main id="canvas-container"> | |
| <canvas id="gl1"></canvas> | |
| </main> | |
| <footer id="intensity"> </footer> | |
| <script type="module" src="/main.js"></script> | |
| </body> | |
| </html> | |