gaur3009 commited on
Commit
89ab43b
·
verified ·
1 Parent(s): 4e56646

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +95 -1
index.html CHANGED
@@ -264,7 +264,101 @@
264
  </div>
265
  </div>
266
  </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  <!-- Footer -->
269
  <footer class="bg-gray-900 text-white py-12">
270
  <div class="container mx-auto px-4">
@@ -312,7 +406,7 @@
312
  </div>
313
  </div>
314
  <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500">
315
- <p>&copy; 2023 NeuroScan. All rights reserved.</p>
316
  </div>
317
  </div>
318
  </footer>
 
264
  </div>
265
  </div>
266
  </section>
267
+ <section class="bg-gray-100 py-16" id="research">
268
+ <div class="container mx-auto px-4">
269
+ <h2 class="text-3xl font-bold text-center mb-12">Topological Analysis Mathematics</h2>
270
+
271
+ <div class="bg-white rounded-xl shadow-lg p-8 mb-8">
272
+ <h3 class="text-2xl font-bold mb-4">1. Persistent Homology</h3>
273
+ <p class="mb-4">Our system uses algebraic topology to quantify shape characteristics through persistent homology:</p>
274
+
275
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
276
+ <div class="bg-blue-50 p-4 rounded-lg">
277
+ <h4 class="font-bold mb-2">Filtration Process</h4>
278
+ <p>For image I: Ω → ℝ, we construct filtration:</p>
279
+ <p class="text-center my-2 font-mono">
280
+ F(α) = {p ∈ Ω | I(p) ≥ α}, α ∈ [0, 255]
281
+ </p>
282
+ <p>Tracking topological features across scales α</p>
283
+ </div>
284
+
285
+ <div class="bg-green-50 p-4 rounded-lg">
286
+ <h4 class="font-bold mb-2">Persistence Diagram</h4>
287
+ <p>For each topological feature (component, hole):</p>
288
+ <p class="text-center my-2 font-mono">
289
+ D(I) = {(b<sub>i</sub>, d<sub>i</sub>) ∈ ℝ² | i ∈ features}
290
+ </p>
291
+ <p>Where b=birth time, d=death time</p>
292
+ </div>
293
+ </div>
294
+ </div>
295
+
296
+ <div class="bg-white rounded-xl shadow-lg p-8 mb-8">
297
+ <h3 class="text-2xl font-bold mb-4">2. Betti Numbers Analysis</h3>
298
+ <p>We compute Betti numbers for tumor characterization:</p>
299
+
300
+ <div class="overflow-x-auto mt-4">
301
+ <table class="min-w-full bg-white">
302
+ <thead class="bg-gray-800 text-white">
303
+ <tr>
304
+ <th class="py-3 px-4">Betti Number</th>
305
+ <th class="py-3 px-4">Description</th>
306
+ <th class="py-3 px-4">Tumor Significance</th>
307
+ </tr>
308
+ </thead>
309
+ <tbody>
310
+ <tr class="border-b">
311
+ <td class="py-3 px-4 font-bold">β₀</td>
312
+ <td class="py-3 px-4">Connected components</td>
313
+ <td class="py-3 px-4">Tumor count/multiplicity</td>
314
+ </tr>
315
+ <tr class="border-b">
316
+ <td class="py-3 px-4 font-bold">β₁</td>
317
+ <td class="py-3 px-4">1-dimensional holes</td>
318
+ <td class="py-3 px-4">Tumor morphology complexity</td>
319
+ </tr>
320
+ <tr>
321
+ <td class="py-3 px-4 font-bold">β₂</td>
322
+ <td class="py-3 px-4">Void spaces</td>
323
+ <td class="py-3 px-4">3D tumor structure analysis</td>
324
+ </tr>
325
+ </tbody>
326
+ </table>
327
+ </div>
328
+ </div>
329
 
330
+ <div class="bg-white rounded-xl shadow-lg p-8">
331
+ <h3 class="text-2xl font-bold mb-4">3. Topological Loss Function</h3>
332
+ <p>Our model optimizes using persistent homology-based loss:</p>
333
+
334
+ <div class="mt-4 space-y-4">
335
+ <div class="bg-purple-50 p-4 rounded-lg">
336
+ <p class="font-mono text-center">
337
+ L<sub>topo</sub> = ∑|D<sub>pred</sub> - D<sub>true</sub>|² + λW(D<sub>pred</sub>, D<sub>true</sub>)
338
+ </p>
339
+ </div>
340
+
341
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
342
+ <div class="p-4 border rounded-lg">
343
+ <h4 class="font-bold mb-2">Wasserstein Distance</h4>
344
+ <p>Measures similarity between persistence diagrams:</p>
345
+ <p class="mt-2 font-mono">
346
+ W(D₁,D₂) = inf<sub>η</sub> ∑||x - η(x)||<sub>p</sub>
347
+ </p>
348
+ </div>
349
+
350
+ <div class="p-4 border rounded-lg">
351
+ <h4 class="font-bold mb-2">Euler Characteristic</h4>
352
+ <p>Alternating sum of Betti numbers:</p>
353
+ <p class="mt-2 font-mono">
354
+ χ = β₀ - β₁ + β₂
355
+ </p>
356
+ </div>
357
+ </div>
358
+ </div>
359
+ </div>
360
+ </div>
361
+ </section>
362
  <!-- Footer -->
363
  <footer class="bg-gray-900 text-white py-12">
364
  <div class="container mx-auto px-4">
 
406
  </div>
407
  </div>
408
  <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500">
409
+ <p>&copy; 2025 NeuroScan. All rights reserved.</p>
410
  </div>
411
  </div>
412
  </footer>