File size: 5,713 Bytes
3319e90 | 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="AI, Computer Vision, and Machine Learning projects by Nguyen Tin Tin Do." />
<meta name="keywords"
content="AI, Deep Learning, Machine Learning, Computer Vision, YOLO, TensorFlow, FastAPI, Nguyen Tin Tin Do" />
<meta name="author" content="Nguyen Tin Tin Do" />
<title>Projects - Nguyen Tin Tin Do</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<!-- ================= HEADER ================= -->
<header>
<div class="container header-container">
<h1 class="logo">Projects</h1>
<nav class="navbar">
<a href="index.html" class="btn">Home</a>
<a href="about.html" class="btn">About</a>
<a href="work.html" class="btn">Experience</a>
<a href="education.html" class="btn">Education</a>
<a class="btn active" href="projects.html">Projects</a>
<a href="contact.html" class="btn">Contact</a>
</nav>
<button id="theme-toggle" class="theme-btn">π</button>
</div>
</header>
<!-- ================= MAIN CONTENT ================= -->
<main>
<section class="content fade-in">
<!-- HERO LIKE INDEX -->
<div class="page-header">
<h2 class="section-title">π» Featured AI Projects</h2>
<p class="section-subtitle">
Practical hands-on work in <b>Computer Vision</b>,
<b>Deep Learning</b>, and <b>Backend/API development</b>.
</p>
</div>
<!-- PROJECT GRID -->
<div class="projects-grid">
<!-- PROJECT 1 -->
<article class="project-card modern-card">
<img
src="C:\Users\Microsoft\OneDrive\Documents\Web_Application_Development\Final_Project_CSCI_250-ndo1\snapshot_1759425843.jpg"
alt="Face Recognition">
</article>
<div class="project-body">
<h3>Real-Time Face Recognition</h3>
<p>
Real-time face detection & recognition using <b>OpenCV</b>,
<b>Haar Cascade</b>, and optimized preprocessing for high FPS video.
</p>
<div class="project-links">
<a href="https://github.com/NguyenTin2026/Mini-Project-Computer-Vision-in-Deep-Learning.git"
class="btn small">π Demo</a>
<a href="https://github.com/NguyenTin2026/Mini-Project-Computer-Vision-in-Deep-Learning.git"
class="btn small">π» GitHub</a>
<a href="C:\Users\Microsoft\OneDrive\Documents\Web_Application_Development\Final_Project_CSCI_250-ndo1\Screen Recording 2025-10-02 132041.mp4"
class="btn small">π₯ Video</a>
</div>
</div>
</article>
<!-- PROJECT 2 -->
<article class="project-card modern-card"><br>
<img
src="C:\Users\Microsoft\OneDrive\Documents\Web_Application_Development\Final_Project_CSCI_250-ndo1\cross_00107.jpg"
alt="YOLO Object Detection"><br><br>
<div class="project-body">
<h3>YOLOv5 Object Detection</h3>
<p>
Built using <b>YOLOv5</b> + <b>OpenCV</b> with tuned NMS,
image scaling, and live video inference pipeline.
</p>
<div class="project-links">
<a href="https://github.com/NguyenTin2026/Mini-Project-Computer-Vision-in-Deep-Learning.git"
class="btn small">π Demo</a>
<a href="https://github.com/NguyenTin2026/Mini-Project-Computer-Vision-in-Deep-Learning.git"
class="btn small">π» GitHub</a>
<a href="C:\Users\Microsoft\OneDrive\Documents\Web_Application_Development\Final_Project_CSCI_250-ndo1\20251025195545254.mp4"
class="btn small">π₯ Video</a>
</div>
</div>
</article>
<!-- PROJECT 3 -->
<article class="project-card modern-card"><br>
<img
src="C:\Users\Microsoft\OneDrive\Documents\Web_Application_Development\Final_Project_CSCI_250-ndo1\Image Linear Regression.png"
alt="Data Science"><br><br>
<div class="project-body">
<h3>Data Analysis Dashboard</h3>
<p>
Large-scale data cleaning, processing, and visualization
using <b>Pandas</b>, <b>Matplotlib</b>, and <b>Seaborn</b>.
</p>
<div class="project-links">
<a href="https://github.com/NguyenTin2026/Data-Science-Tutorial-Step-By-Step-/blob/main/Linear-Regression.py"
class="btn small">π Demo</a>
<a href="https://github.com/NguyenTin2026/Data-Science-Tutorial-Step-By-Step-.git" class="btn small">π»
GitHub</a>
<a href="https://github.com/NguyenTin2026/Data-Science-Tutorial-Step-By-Step-/blob/main/Linear-Regression.py"
class="btn small">π Dashboard</a>
</div>
</div>
</article>
</div>
</section>
</main>
<!-- ================= FOOTER ================= -->
<footer>
<p>Β© 2025 Nguyen Tin Tin Do β Portfolio Β· Artificial Intelligence & Deep Learning</p>
<div class="social-links">
<a href="https://github.com/NguyenTin2026" target="_blank">π</a>
<a href="https://www.linkedin.com/in/nguyen-tin-tin-do/" target="_blank">πΌ</a>
<a href="mailto:ndo1@drew.edu">π§</a>
</div>
</footer>
</body>
</html> |