-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
432 lines (425 loc) · 29.1 KB
/
index.html
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Hwan Heo's personal portfolio website</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Custom Google font-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet" />
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RF7ETSKPK9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RF7ETSKPK9');
</script>
<style>
.mv-modal-box {
display: none;
}
/* 모달 박스 기본 스타일 */
.mv-modal-box {
display: none; /* 처음에는 보이지 않음 */
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* 가운데 정렬 */
width: 40%; /* 창 너비 조정 */
height: 40%; /* 창 높이 조정 */
background-color: rgba(0, 0, 0, 0.8); /* 반투명한 배경 */
padding: 20px;
z-index: 1000;
}
/* 3D 모델 크기 조정 */
model-viewer {
width: 100%;
height: 100%;
}
/* 화면 전체 어두운 배경 (모달 밖 클릭 시 닫기) */
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5); /* 어두운 배경 */
z-index: 999;
}
.close-btn {
position: absolute;
top: 10px;
right: 10px;
background-color: red;
color: white;
border: none;
padding: 5px 10px;
cursor: pointer;
border-radius: 5px;
font-size: 16px;
}
.close-btn:hover {
background-color: darkred;
}
</style>
</head>
<body class="d-flex flex-column h-100">
<main class="flex-shrink-0">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light bg-white py-3" id="top">
<div class="container px-5">
<a class="navbar-brand" href=""><span class="fw-bolder text-primary">HwanHeo's log</span></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 small fw-bolder">
<li class="nav-item"><a class="nav-link" href="">Home</a></li>
<!--li class="nav-item"><a class="nav-link" href="resume.html">About</a></li-->
<li class="nav-item"><a class="nav-link" href="projects/">Projects</a></li>
<!--li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li-->
<li class="nav-item"><a class="nav-link" href="blogs/">| Blog</a></li>
</ul>
</div>
</div>
</nav>
<!-- Header-->
<header class="py-5">
<div class="container px-5 pb-5">
<div class="row gx-5 align-items-center">
<div class="col-xxl-5">
<!-- Header text content-->
<div class="text-center text-xxl-start">
<div class="badge bg-gradient-primary-to-secondary text-white mb-4"><div class="text-uppercase">Computer Vision · Neural Rendering</div></div>
<div class="fs-3 fw-light text-muted">Hello, I'm Vision AI Researcher </div>
<h1 class="display-3 fw-bolder mb-5"><span class="text-gradient d-inline"> Hwan Heo</span></h1>
<div class="d-grid gap-3 d-sm-flex justify-content-sm-center justify-content-xxl-start mb-3">
<a class="btn btn-primary btn-lg px-5 py-3 me-sm-3 fs-6 fw-bolder" href="projects/">Projects</a>
<a class="btn btn-outline-dark btn-lg px-5 py-3 fs-6 fw-bolder" href="blogs/">Tech Blog</a>
</div>
</div>
</div>
<div class="col-xxl-7">
<!-- Header profile picture-->
<div class="d-flex justify-content-center mt-5 mt-xxl-0">
<div class="profile bg-gradient-primary-to-secondary">
<!-- TIP: For best results, use a photo with a transparent background like the demo example below-->
<!-- Watch a tutorial on how to do this on YouTube (link)-->
<img class="profile-img" src="assets/icon.webp" alt="..." />
</div>
</div>
</div>
</div>
</div>
<!-- About Section-->
<section id="about" class="bg-light py-5">
<div class="container px-5">
<div class="row gx-5 justify-content-center">
<div class="col-xxl-8">
<div class="text-center my-0">
<h2 class="display-5 fw-bolder"><span class="text-gradient d-inline">About Me</span></h2>
<p class="lead fw-light mb-1">Hello, my name is Hwan Heo, an AI Researcher.</p>
<img class="img-fluid" src="assets/profile.jpeg" width="25%" /> <br/>
<button class="btn btn-primary btn-sm open-model-btn">View 3D Avatar</button>
<div class="mv-modal-box">
<model-viewer id="model-ex" src="assets/profile_3d.glb" alt="model sample" camera-controls></model-viewer>
<button class="close-btn btn-sm justify-content-end">X</button>
</div>
<br/>
<br/>
<p class="text-muted">
I'm currently working at Graphics AI Lab in NCSOFT,
where I fulfill as a Technical Research Personnel for Alternative Military Service.
I received my B.S. and M.S. degrees in computer science from Korea University in 2020 and 2022, respectively. During my Master’s program, I was advised by Prof. Hyunwoo J. Kim.
My research primarily focuses on 3D Computer Vision and Neural Rendering,
with a particular emphasis on Radiance Fields and 3D Gaussian Splatting.
I'm passionate about exploring innovative techniques and contributing to
the cutting-edge developments in these fascinating fields.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Resume Section-->
<div id="resume" class="container px-5 my-5">
<div class="text-center mb-5">
<h1 class="display-5 fw-bolder mb-0"><span class="text-gradient d-inline">Resume</span></h1>
</div>
<div class="row gx-5 justify-content-center">
<div class="col-lg-11 col-xl-9 col-xxl-8">
<!-- Experience Section-->
<section>
<div class="d-flex align-items-center justify-content-end mb-4">
<!-- Download resume button-->
<!-- Note: Set the link href target to a PDF file within your project-->
<a class="btn btn-primary px-3 py-2" href="https://raw.githubusercontent.com/hwan-h-heo/hwan-h-heo.io/main/assets/Hwan_Heo_s_Curriculum_Vitae.pdf">
<div class="d-inline-block bi bi-download me-2"></div>
Download CV
</a>
</div>
<div class="card shadow border-0 rounded-4 mb-5">
<div class="card-body p-5">
<h3 class="text-primary fw-bolder mb-4">Experience</h3>
<div class="row align-items-center gx-5">
<div class="col text-center text-lg-start mb-4 mb-lg-0">
<div class="bg-light p-4 rounded-4">
<div class="text-primary fw-bolder mb-2">2023 - Present</div>
<div class="small fw-bolder">AI Researcher</div>
<div class="small text-muted">Graphics AI Lab, NCSOFT</div>
</div>
</div>
<div class="col-lg-8">
<div>
<ul>
<li>
Research on 3D Asset Generation; 3D Latent Diffusion & Texture Synthesis
<a href="https://ncsoft.github.io/CaPa/" class="bi bi-link-45deg"></a>
</li>
<li>
Neural Rendering Applications; Gaussian Splatting in Game Engines
<a href="projects/nerf_in_game/" class="bi bi-link-45deg"></a>,
NeRF Avatar
<a href="projects/face_nerf/" class="bi bi-link-45deg"></a>
</li>
</ul>
</div>
</div>
</div>
<br/>
<div class="row align-items-center gx-5">
<div class="col text-center text-lg-start mb-4 mb-lg-0">
<div class="bg-light p-4 rounded-4">
<div class="text-primary fw-bolder mb-2">2022</div>
<div class="small fw-bolder">Research Intern</div>
<div class="small text-muted">AI Lab, Naver Corp.</div>
</div>
</div>
<div class="col-lg-8">
<div>
<ul>
<li>
Research on Neural Rendering; Joint Optimization of Camera Pose and Hash Grid Radiance Fields
<a href="https://dl.acm.org/doi/10.5555/3618408.3618936" class="bi bi-link-45deg"></a></p>
</li>
<li>
Mentored by Dr. Jin-Hwa Kim
</li>
</ul>
</div>
</div>
</div>
<br/>
<h3 class="text-secondary fw-bolder mb-4">Education</h3>
<div class="row align-items-center gx-5">
<div class="col text-center text-lg-start mb-4 mb-lg-0">
<div class="bg-light p-4 rounded-4">
<div class="text-secondary fw-bolder mb-2">2020 - 2022</div>
<div class="mb-2">
<div class="small fw-bolder">Korea University</div>
<div class="small text-muted">Seoul, South Korea</div>
</div>
</div>
</div>
<div class="col-lg-8">
<div>
<ul>
<li>
<strong>Master's</strong> in Computer Science <a href="https://www.hyunwoojkim.com/"><strong>[MLV Lab]</strong></a>
</li>
<li>
Advised by Professor Hyunwoo J. Kim
</li>
</ul>
</div>
</div>
</div>
<br/>
<div class="row align-items-center gx-5">
<div class="col text-center text-lg-start mb-4 mb-lg-0">
<div class="bg-light p-4 rounded-4">
<div class="text-secondary fw-bolder mb-2">
2015 - 2020
</div>
<div class="mb-2">
<div class="small fw-bolder">
Korea University
</div>
<div class="small text-muted">
Seoul, South Korea
</div>
</div>
</div>
</div>
<div class="col-lg-8">
<div>
<ul>
<li>
<strong>Bachelor's</strong> in Computer Science
</li>
<li>
Advised by Profressor Heui-Seok Lim
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Divider-->
<section>
<div class="card shadow border-0 rounded-4 mb-5">
<div class="card-body p-5">
<h3 class="text-success fw-bolder mb-4">Publications</h3>
<ul>
<li class="mb-4">
<p class="mb-1"><strong>CaPa: Carve-n-Paint Synthesis for Efficient 4K Textured Mesh Generation</strong></p>
<p class="mb-0"><strong>Hwan Heo</strong>, J. Kim, S. Lee, J. Wi, J. Choi, S. Ahn <strong>[under review]</strong> <a href="https://ncsoft.github.io/CaPa/" class="bi bi-link-45deg"></a></p>
</li>
<li class="mb-4">
<p class="mb-1"><strong>DreamSurfels: Generative Gaussian Surfels for Geometrically Accurate 3D Content Creation</strong></p>
<p class="mb-0"><strong>Hwan Heo</strong>, S. Ahn <strong>[ICTC 2024]</strong> (oral, domestic conference)</p>
</li>
<li class="mb-4">
<p class="mb-1"><strong>Robust Camera Pose Refinement for Multi-Resolution Hash Encoding</strong></p>
<p class="mb-0"><strong>Hwan Heo</strong>, T. Kim, J. Lee, J. Lee, S. Kim, H. J. Kim, JH. Kim <strong>[ICML 2023]</strong> <a href="https://dl.acm.org/doi/10.5555/3618408.3618936" class="bi bi-link-45deg"></a></p>
</li>
<li class="mb-4">
<p class="mb-1"><strong>Semantic-aware Occlusion Filtering Neural Radiance Fields in the Wild</strong></p>
<p class="mb-0">J. Lee, I. Kim, <strong>Hwan Heo</strong>, H. J. Kim <strong>[preprint]</strong> <a href="https://arxiv.org/abs/2303.03966" class="bi bi-link-45deg"></a></p>
</li>
<li class="mb-4">
<p class="mb-1"><strong>Consistency Learning via Decoding Path Augmentation for Transformers in Human Object Interaction Detection</strong></p>
<p class="mb-0">J. Park, S. Lee, <strong>Hwan Heo</strong>, H. Choi, H. J. Kim <strong>[CVPR 2022]</strong> <a href="https://arxiv.org/abs/2204.04836" class="bi bi-link-45deg"></a></p>
</li>
<li class="mb-4">
<p class="mb-1"><strong>Domain Generalization Emerges from Dreaming</strong></p>
<p class="mb-0"><strong>Hwan Heo</strong>, Y. Oh, J. Lee, H. J. Kim <strong>[preprint]</strong> <a href="https://arxiv.org/abs/2302.00980" class="bi bi-link-45deg"></a></p>
</li>
<li class="mb-4">
<p class="mb-1"><strong>Temporally Sparse Adversarial Perturbations on Videos</strong></p>
<p class="mb-0"><strong>Hwan Heo</strong>, D. Ko, J. Lee, Y. Hong, H. J. Kim <strong>[IEEE Access 2021]</strong> <a href="https://ieeexplore.ieee.org/document/9592758" class="bi bi-link-45deg"></a></p>
</li>
</ul>
</div>
</div>
</section>
<div class="pb-5"></div>
<!-- Skills Section-->
<section>
<!-- Skillset Card-->
<div class="card shadow border-0 rounded-4 mb-5">
<div class="card-body p-5">
<!-- Professional skills list-->
<div class="mb-5">
<div class="d-flex align-items-center mb-4">
<div class="feature bg-primary bg-gradient-primary-to-secondary text-white rounded-3 me-3"><i class="bi bi-book"></i></div>
<h3 class="fw-bolder mb-0"><span class="text-gradient d-inline">Research Interest</span></h3>
</div>
<div class="row row-cols-1 row-cols-md-3 mb-4">
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">Computer Vision</div></div>
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">Neural Rendering</div></div>
<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">3D Generation</div></div>
</div>
</div>
<!-- Languages list-->
<div class="mb-0">
<div class="d-flex align-items-center mb-4">
<div class="feature bg-primary bg-gradient-primary-to-secondary text-white rounded-3 me-3"><i class="bi bi-code-slash"></i></div>
<h3 class="fw-bolder mb-0"><span class="text-gradient d-inline">Languages</span></h3>
</div>
<div class="row row-cols-1 row-cols-md-3 mb-4">
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">Python</div></div>
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">PyTorch</div></div>
<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">TensorFlow</div></div>
</div>
<div class="row row-cols-1 row-cols-md-3">
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">OpenCV</div></div>
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">C++</div></div>
<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">CUDA</div></div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<div id="contact" class="container px-5 my-5">
<div class="text-center mb-5">
<h1 class="display-5 fw-bolder mb-0"><span class="text-gradient d-inline">Contact</span></h1>
</div>
<div class="row gx-5 justify-content-center">
<div class="col-lg-11 col-xl-9 col-xxl-8">
<!-- Experience Section-->
<section>
<!-- Experience Card 1-->
<div class="card shadow border-0 rounded-4 mb-5">
<div class="card-body p-5">
<div class="row align-items-center gx-5">
<div class="col text-center mb-4 mb-lg-0">
<div class="feature bg-primary bg-gradient-primary-to-secondary text-white rounded-3 mb-3"><i class="bi bi-envelope"></i></div>
<div class="feature bg-primary bg-gradient-primary-to-secondary text-white rounded-3 mb-3"><i class="bi bi-phone"></i></div>
<p class="lead fw-normal text-muted mb-0">
<a href="mailto:gjghks950@naver.com">gjghks950@naver.com</a>
</p>
<p class="lead fw-normal text-muted mb-0"> +82 10-2295-9546</p>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<!-- Page content-->
</header>
</main>
<!-- Footer-->
<footer class="bg-white py-4 mt-auto">
<div class="text-center mb-5">
<a class="btn btn-info" href="#top" style="color:white"><strong>Go to Top</strong></a>
</div>
<hr/>
<div class="d-flex justify-content-center fs-2 gap-4">
<a class="text-gradient" href="https://www.linkedin.com/in/hwan-heo-0905korea/"><i class="bi bi-linkedin"></i></a>
<a class="text-gradient" href="https://github.com/hwanhuh"><i class="bi bi-github"></i></a>
</div>
<div class="container px-5">
<div class="row align-items-center justify-content-between flex-column flex-sm-row">
<div class="col-auto"><div class="small m-0">Copyright © Hwan Heo </div></div>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<script>
const MV_MODAL_BOX = document.querySelector('.mv-modal-box');
const modelOpenBtn = document.querySelector('.open-model-btn');
const closeBtn = document.querySelector('.close-btn');
modelOpenBtn.addEventListener('click', () => {
if (MV_MODAL_BOX.style.display === 'block') {
MV_MODAL_BOX.style.display = 'none';
} else {
MV_MODAL_BOX.style.display = 'block';
}
});
// Close 버튼 클릭 시 모달 닫기
closeBtn.addEventListener('click', () => {
MV_MODAL_BOX.style.display = 'none';
});
</script>
</body>
</html>