|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Your Name - PhD Research</title> |
| 7 | + <link rel="stylesheet" href="styles.css"> |
| 8 | +</head> |
| 9 | +<body> |
| 10 | + <header> |
| 11 | + <nav> |
| 12 | + <ul> |
| 13 | + <li><a href="#home">Home</a></li> |
| 14 | + <li><a href="#research">Research</a></li> |
| 15 | + <li><a href="#publications">Publications</a></li> |
| 16 | + <li><a href="#contact">Contact</a></li> |
| 17 | + </ul> |
| 18 | + </nav> |
| 19 | + </header> |
| 20 | + |
| 21 | + <main> |
| 22 | + <section id="home"> |
| 23 | + <h1>Your Name</h1> |
| 24 | + <h2>PhD Research Overview</h2> |
| 25 | + <p>Brief introduction about yourself and your research focus in tactile sensing and robotics.</p> |
| 26 | + <div class="hero-image"> |
| 27 | + <!-- You can add a profile photo or research image here --> |
| 28 | + </div> |
| 29 | + </section> |
| 30 | + |
| 31 | + <section id="research"> |
| 32 | + <h2>Research Topics</h2> |
| 33 | + <div class="research-grid"> |
| 34 | + <div class="research-item"> |
| 35 | + <h3>Topic 1: DIGIT Sensor Simulation</h3> |
| 36 | + <p>Development of tactile sensor simulation using SOFA framework for robotic applications. This research focuses on creating realistic haptic feedback systems and contact detection mechanisms.</p> |
| 37 | + <ul> |
| 38 | + <li>FEM simulation with SOFA</li> |
| 39 | + <li>Tactile data processing</li> |
| 40 | + <li>Neural network integration</li> |
| 41 | + </ul> |
| 42 | + </div> |
| 43 | + <div class="research-item"> |
| 44 | + <h3>Topic 2: Perception Networks</h3> |
| 45 | + <p>Machine learning approaches for tactile perception and object recognition using deep neural networks.</p> |
| 46 | + <ul> |
| 47 | + <li>U-Net architecture for tactile data</li> |
| 48 | + <li>Data preprocessing techniques</li> |
| 49 | + <li>Real-time inference systems</li> |
| 50 | + </ul> |
| 51 | + </div> |
| 52 | + <div class="research-item"> |
| 53 | + <h3>Topic 3: Rendering Networks</h3> |
| 54 | + <p>Advanced rendering techniques for tactile sensor visualization and simulation environments.</p> |
| 55 | + <ul> |
| 56 | + <li>Image reconstruction</li> |
| 57 | + <li>Contact mask generation</li> |
| 58 | + <li>Delta image processing</li> |
| 59 | + </ul> |
| 60 | + </div> |
| 61 | + </div> |
| 62 | + </section> |
| 63 | + |
| 64 | + <section id="publications"> |
| 65 | + <h2>Publications & Achievements</h2> |
| 66 | + <div class="publications-list"> |
| 67 | + <div class="publication-item"> |
| 68 | + <h4>Conference Papers</h4> |
| 69 | + <ul> |
| 70 | + <li>Paper Title 1 - Conference Name (Year)</li> |
| 71 | + <li>Paper Title 2 - Conference Name (Year)</li> |
| 72 | + </ul> |
| 73 | + </div> |
| 74 | + <div class="publication-item"> |
| 75 | + <h4>Journal Articles</h4> |
| 76 | + <ul> |
| 77 | + <li>Journal Paper 1 - Journal Name (Year)</li> |
| 78 | + <li>Journal Paper 2 - Journal Name (Year)</li> |
| 79 | + </ul> |
| 80 | + </div> |
| 81 | + <div class="publication-item"> |
| 82 | + <h4>Projects & Code</h4> |
| 83 | + <ul> |
| 84 | + <li><a href="https://github.com/ndolphin-github/DIGIT_simulation" target="_blank">DIGIT Sensor Simulation</a></li> |
| 85 | + <li>Other research projects...</li> |
| 86 | + </ul> |
| 87 | + </div> |
| 88 | + </div> |
| 89 | + </section> |
| 90 | + |
| 91 | + <section id="contact"> |
| 92 | + <h2>Contact Information</h2> |
| 93 | + <div class="contact-info"> |
| 94 | + <p><strong>Email:</strong> your.email@university.edu</p> |
| 95 | + <p><strong>GitHub:</strong> <a href="https://github.com/ndolphin-github" target="_blank">ndolphin-github</a></p> |
| 96 | + <p><strong>LinkedIn:</strong> your-linkedin-profile</p> |
| 97 | + <p><strong>University:</strong> Your University Name</p> |
| 98 | + </div> |
| 99 | + </section> |
| 100 | + </main> |
| 101 | + |
| 102 | + <footer> |
| 103 | + <p>© 2025 Your Name. All rights reserved.</p> |
| 104 | + </footer> |
| 105 | +</body> |
| 106 | +</html> |
0 commit comments