File size: 700 Bytes
923b2e0 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>U-Net Segmentation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>U-Net Image Denoising</h1>
<div class="upload-area" id="uploadArea">
<p>Drag & Drop your image here or click to browse</p>
<input type="file" id="fileInput" accept="image/*" hidden>
</div>
<div class="preview" id="preview"></div>
<button id="runBtn">Run Image Denoising</button>
<div class="loader" id="loader"></div>
<div class="result" id="result"></div>
<script src="script.js"></script>
</body>
</html>
|