-
Notifications
You must be signed in to change notification settings - Fork 0
/
publications.html
719 lines (562 loc) · 20.3 KB
/
publications.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Yongfeng Qiu">
<meta name="description" content="Yongfeng(Yosef) Qiu is a first year Ph.D. student in Computer Science and Engineering at The Ohio State University.
His research interests include Physically Based Rendering (PBR) and geometric modeling. Outside of academics, he enjoys music and playing Nintendo Switch games.
">
<title>My Publications | Yongfeng Qiu</title>
<link rel="icon" href="/bitbug_favicon.ico">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/katex/dist/katex.min.css"
/>
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/main.css">
<script src="/lib/jquery.min.js"></script>
<script src="/lib/iconify-icon.min.js"></script>
<script src="https://cdn.tailwindcss.com?plugins=typography"></script>
<script>
tailwind.config = {
darkMode: "class",
};
</script>
<script>
(function () {
const prefersDark =
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
const setting = localStorage.getItem("hexo-color-scheme") || "auto";
if (setting === "dark" || (prefersDark && setting !== "light"))
document.documentElement.classList.toggle("dark", true);
let isDark = document.documentElement.classList.contains("dark");
})();
$(document).ready(function () {
// init icon
const prefersDark =
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
const isDark = document.documentElement.classList.contains("dark");
$("#theme-icon").attr("icon", isDark ? "ic:round-dark-mode" : "ic:round-light-mode");
function toggleGiscusTheme() {
const isDark = document.documentElement.classList.contains("dark");
const giscusFrame = document.querySelector("iframe.giscus-frame");
if (giscusFrame) {
giscusFrame.contentWindow.postMessage(
{
giscus: {
setConfig: {
theme: isDark ? "dark" : "light",
},
},
},
"https://giscus.app"
);
}
}
// toggle dark mode
function toggleDark() {
let isDark = document.documentElement.classList.contains("dark");
const setting = localStorage.getItem("hexo-color-scheme") || "auto";
isDark = !isDark;
document.documentElement.classList.toggle("dark", isDark);
$("#theme-icon").attr("icon", isDark ? "ic:round-dark-mode" : "ic:round-light-mode");
if (prefersDark === isDark) {
localStorage.setItem("hexo-color-scheme", "auto");
} else {
localStorage.setItem("hexo-color-scheme", isDark ? "dark" : "light");
}
toggleGiscusTheme();
}
$("#toggle-dark").click(toggleDark);
// listen dark mode change
window
.matchMedia("(prefers-color-scheme: dark)")
.addEventListener("change", (e) => {
const setting = localStorage.getItem("hexo-color-scheme") || "auto";
if (setting === "auto") {
document.documentElement.classList.toggle("dark", e.matches);
$("#theme-icon").attr(
"icon",
e.matches ? "ic:round-dark-mode" : "ic:round-light-mode"
);
toggleGiscusTheme();
}
});
});
</script>
<meta name="generator" content="Hexo 6.3.0"></head>
<body
class="
bg-[var(--c-0)]
text-[var(--c-80)]
">
<!-- The navigation bar -->
<header class="
flex flex-row items-center
w-full
pr-4
z-10
border-b-[1px]
border-b-[var(--c-border)]
dark:bg-[var(--c-0)]
dark:border-b-[var(--c-0)]
gap-2
h-[var(--h-header)]
text-[var(--c-80)]
">
<!-- Left part -->
<div class="overflow-hidden h-full flex flex-row items-center">
<!-- Site Title on the top left -->
<a href="/" class="
whitespace-nowrap
text-2xl
text-[var(--c-theme)]
hover:text-[var(--c-theme)]
pl-4
font-black
bg-gradient-to-r from-cyan-500
to-blue-500 bg-clip-text text-transparent
">
Yongfeng Qiu
</a>
</div>
<!-- Div for pushing items to both sides -->
<div class="flex-1"></div>
<!-- Right part -->
<div class="flex flex-row items-center z-20 h-full">
<!-- Page links -->
<div class="hidden sm:flex flex-row h-full">
<a
href="/about"
class="
flex flex-row items-center
gap-1
hover:underline
hover:bg-[var(--c-20)]
hover:text-[var(--c-theme)]
transition-all
px-2
py-1
my-1
rounded-lg
group
">
<iconify-icon class="group-hover:scale-125 transition-transform" icon="mingcute:user-info-fill" width="22">
</iconify-icon>
<p>About</p>
</a>
<a
href="/tags/Article/"
class="
flex flex-row items-center
gap-1
hover:underline
hover:bg-[var(--c-20)]
hover:text-[var(--c-theme)]
transition-all
px-2
py-1
my-1
rounded-lg
group
">
<iconify-icon class="group-hover:scale-125 transition-transform" icon="mingcute:document-2-fill" width="22">
</iconify-icon>
<p>Articles</p>
</a>
<a
href="/publications"
class="
flex flex-row items-center
gap-1
hover:underline
hover:bg-[var(--c-20)]
hover:text-[var(--c-theme)]
transition-all
px-2
py-1
my-1
rounded-lg
group
">
<iconify-icon class="group-hover:scale-125 transition-transform" icon="mingcute:science-fill" width="22">
</iconify-icon>
<p>Publications</p>
</a>
<a
href="/index"
class="
flex flex-row items-center
gap-1
hover:underline
hover:bg-[var(--c-20)]
hover:text-[var(--c-theme)]
transition-all
px-2
py-1
my-1
rounded-lg
group
">
<iconify-icon class="group-hover:scale-125 transition-transform" icon="mingcute:home-2-fill" width="22">
</iconify-icon>
<p>Home</p>
</a>
</div>
<!-- Icons on the right -->
<div class="flex flex-row items-center">
<!-- Dark/light toggle icon -->
<a class="flex group p-1" title="toggle theme" id="toggle-dark">
<iconify-icon class="transition-transform
group-hover:rotate-[45deg]
group-hover:scale-125
group-hover:text-[var(--c-theme)]
" width="24" icon="" id="theme-icon">
</iconify-icon>
</a>
<!-- Icon for dropout menu on small screens -->
<div class="flex items-center justify-center gap-1 mx-1 sm:hidden">
<a class="w-5 h-5" aria-hidden="true" role="img" id="open-menu">
<iconify-icon width="22" icon="mingcute:menu-fill"
class="transition-transform hover:scale-125 hover:rotate-[5deg]">
</iconify-icon>
</a>
<a class="w-5 h-5 hidden" aria-hidden="true" role="img" id="close-menu">
<iconify-icon width="22" icon="mingcute:close-circle-fill"
class="transition-transform hover:scale-125 hover:rotate-[80deg]">
</iconify-icon>
</a>
</div>
</div>
</div>
</header>
<!-- Dropdown menu on small screens -->
<div id="menu-panel"
class="
h-0
overflow-hidden
sm:hidden
w-full
z-10
rounded
">
<div id="menu-content"
class="
font-bold
text-xl
border-b-[1px]
relative
z-20
border-[var(--c-sep)]
px-2
py-2
-translate-y-full
transition-transform
duration-200
">
<a
href="/about"
class="
flex flex-row items-center
gap-2
h-12
hover:underline
hover:bg-[var(--c-20)]
px-3
py-1
rounded-lg
">
<iconify-icon icon="mingcute:user-info-fill" width="22">
</iconify-icon>
<p>
About
</p>
</a>
<a
href="/tags/Article/"
class="
flex flex-row items-center
gap-2
h-12
hover:underline
hover:bg-[var(--c-20)]
px-3
py-1
rounded-lg
">
<iconify-icon icon="mingcute:document-2-fill" width="22">
</iconify-icon>
<p>
Articles
</p>
</a>
<a
href="/publications"
class="
flex flex-row items-center
gap-2
h-12
hover:underline
hover:bg-[var(--c-20)]
px-3
py-1
rounded-lg
">
<iconify-icon icon="mingcute:science-fill" width="22">
</iconify-icon>
<p>
Publications
</p>
</a>
<a
href="/index"
class="
flex flex-row items-center
gap-2
h-12
hover:underline
hover:bg-[var(--c-20)]
px-3
py-1
rounded-lg
">
<iconify-icon icon="mingcute:home-2-fill" width="22">
</iconify-icon>
<p>
Home
</p>
</a>
</div>
</div>
<main>
<!-- css -->
<link rel="stylesheet" href="/lib/fancybox/fancybox.min.css">
<link rel="stylesheet" href="/lib/tocbot/tocbot.min.css">
<!-- toc -->
<section class="px-6 max-w-prose mx-auto md:px-0">
<!-- Post header before content -->
<header class="py-4">
<div class="flex flex-col gap-2 pt-4 md:pt-6">
<!-- Title -->
<div id="article-title" class="leading-snug">
<p class="text-3xl font-bold text-[var(--c-100)] mb-4">My Publications</p>
</div>
<!-- Meta data -->
<div>
<section class="
flex flex-col gap-x-2 gap-y-1 text-sm text-[var(--c-100)]">
<div class="flex flex-wrap items-center gap-x-2 gap-y-1">
<!-- Dates -->
<div class="flex items-center gap-1">
<iconify-icon width="18" icon="mingcute:add-circle-fill" ></iconify-icon>
Created: <time class="w-max">2021-09-16</time>
</div>
<div class="flex items-center gap-1">
<iconify-icon width="18" icon="mingcute:refresh-3-fill" ></iconify-icon>
Edited: <time class="w-max">2024-11-01</time>
</div>
</div>
<div class="flex flex-wrap items-center gap-x-3 gap-y-3">
<!-- Author -->
<!-- Word count -->
<span class="flex items-center gap-1">
<iconify-icon width="18" icon="mingcute:book-2-fill" ></iconify-icon>
<span>63 words, 1 min</span>
</span>
<!-- Categories -->
</div>
</section>
</div>
<!-- tags -->
<div>
<div class="flex flex-wrap gap-1">
</div>
</div>
</div>
</header>
<!-- content -->
<article class="post-content prose m-auto dark:prose-invert">
<!-- # My Publications -->
<p>List of all my publications:</p>
<p><strong>2025</strong>:</p>
<ul>
<li>[IEEE Transactions on Visualization and Computer Graphics (Proc. IEEE VIS 2024)]: <a target="_blank" rel="noopener" href="https://yuxiaoli1234.github.io/publications/2024-02-17-paper-title-number-4/">MSz: An Efficient Parallel Algorithm for Correcting Morse-Smale Segmentations in Error-Bounded Lossy Compressors</a>
<ul>
<li>Author: Yuxiao Li, Xin Liang, Bei Wang, <strong>Yongfeng Qiu</strong>, Lin Yan and Hanqi Guo</li>
<li><a target="_blank" rel="noopener" href="https://ieeexplore.ieee.org/document/10670476">DOI</a> | <a target="_blank" rel="noopener" href="https://arxiv.org/abs/2406.09423">arXiv</a> | <a target="_blank" rel="noopener" href="https://github.com/YuxiaoLi1234/MSz-">GitHub</a></li>
</ul>
</li>
</ul>
<p><strong>2021</strong>:</p>
<ul>
<li>[Scientific and Technological Innovation]: 3D model retrieval based on hand-drawn sketches
<ul>
<li><a target="_blank" rel="noopener" href="https://cdn.jsdelivr.net/gh/YosefQiuImg/Img@master/uPic/%E5%9F%BA%E4%BA%8E%E6%89%8B%E7%BB%98%E8%8D%89%E5%9B%BE%E7%9A%84%E4%B8%89%E7%BB%B4%E6%A8%A1%E5%9E%8B%E6%A3%80%E7%B4%A2.pdf">PDF</a></li>
</ul>
</li>
</ul>
</article>
<!-- prev and next -->
<div class="flex justify-between mt-4 pt-4
border-t border-[var(--c-sep)] text-sm
gap-2 text-[var(--c-50)]
">
<div>
</div>
<div>
</div>
</div>
<!-- comment -->
<div class="article-comments mt-12">
</div>
</section>
<!-- js inspect -->
<script src="/lib/clipboard.min.js"></script>
<script async src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
"HTML-CSS": {
preferredFont: "TeX",
availableFonts: ["STIX","TeX"],
linebreaks: { automatic:true },
EqnChunk: (MathJax.Hub.Browser.isMobile ? 10 : 50)
},
tex2jax: {
inlineMath: [ ["$", "$"], ["\\(","\\)"] ],
processEscapes: true,
ignoreClass: "tex2jax_ignore|dno",
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
},
TeX: {
equationNumbers: { autoNumber: "AMS" },
noUndefined: { attributes: { mathcolor: "red", mathbackground: "#FFEEEE", mathsize: "90%" } },
Macros: { href: "{}" }
},
messageStyle: "none"
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for (i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>
$(document).ready(() => {
const maraidConfig = {
theme: "default",
logLevel: 3,
flowchart: { curve: "linear" },
gantt: { axisFormat: "%m/%d/%Y" },
sequence: { actorMargin: 50 },
};
mermaid.initialize(maraidConfig);
});
</script>
<script src="/lib/fancybox/fancybox.umd.min.js"></script>
<script>
$(document).ready(() => {
$('.post-content').each(function(i){
$(this).find('img').each(function(){
if ($(this).parent().hasClass('fancybox') || $(this).parent().is('a')) return;
var alt = this.alt;
if (alt) $(this).after('<span class="fancybox-alt">' + alt + '</span>');
$(this).wrap('<a class="fancybox-img" href="' + this.src + '" data-fancybox=\"gallery\" data-caption="' + alt + '"></a>')
});
$(this).find('.fancybox').each(function(){
$(this).attr('rel', 'article' + i);
});
});
Fancybox.bind('[data-fancybox="gallery"]', {
// options
})
})
</script>
<!-- tocbot begin -->
<script src="/lib/tocbot/tocbot.min.js"></script>
<script>
$(document).ready(() => {
tocbot.init({
// Where to render the table of contents.
tocSelector: '.post-toc',
// Where to grab the headings to build the table of contents.
contentSelector: '.post-content',
// Which headings to grab inside of the contentSelector element.
headingSelector: 'h1, h2, h3',
// For headings inside relative or absolute positioned containers within content.
hasInnerContainers: true,
});
})
</script>
<!-- tocbot end -->
</main>
<footer class="flex flex-col mt-12 mb-12 items-center
text-[var(--c-50)] text-sm">
<div class="flex flex-row items-center mb-20">
<a class="
hover:text-[var(--c-theme)]
hover:bg-[var(--c-20)]
rounded-lg
p-2
my-1
flex flex-row items-center
group" title="Github" target="_blank" rel="noopener" href="https://github.com/YosefQiu">
<iconify-icon width="28" icon="mingcute:github-fill"></iconify-icon>
</a>
<a class="
hover:text-[var(--c-theme)]
hover:bg-[var(--c-20)]
rounded-lg
p-2
my-1
flex flex-row items-center
group" title="Linkedin" target="_blank" rel="noopener" href="https://www.linkedin.com/in/yongfeng-qiu-47642b230">
<iconify-icon width="28" icon="simple-icons:linkedin"></iconify-icon>
</a>
<a class="
hover:text-[var(--c-theme)]
hover:bg-[var(--c-20)]
rounded-lg
p-2
my-1
flex flex-row items-center
group" title="Email" href="mailto:yongfeng.qiu@outlook.com">
<iconify-icon width="28" icon="mingcute:invite-fill"></iconify-icon>
</a>
</div>
<!-- busuanzi -->
<div class="mb-6">
</div>
</footer>
<div class="
back-to-top
fixed right-6
z-1024
-bottom-20
rounded-lg
font-bold
py-1 px-2
text-[var(--c-80)]
bg-[var(--c-20)]
cursor-pointer
text-center
drop-shadow-md
">
<span class="flex justify-center items-center text-sm">
<span id="scrollpercent"><span>0</span> %</span>
<iconify-icon width="18" icon="mingcute:arrow-to-up-fill" id="go-top"></iconify-icon>
</span>
</div>
<script src="/js/main.js"></script>
<div class="fixed top-0 bottom-0 left-0 right-0 pointer-events-none print:hidden" id="maple"></div>
</body>
</html>