-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
534 lines (426 loc) · 17.7 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
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
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-47WTV4E2V1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-47WTV4E2V1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Dongliang Chang (常东良)</title>
<meta name="description" content="This is the personal website of Dongliang Chang (常东良)">
<!-- Fonts and Icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:100,300,400,500,700|Material+Icons" />
<!-- CSS Files -->
<link rel="stylesheet" href="/assets/css/all.min.css">
<link rel="stylesheet" href="/assets/css/academicons.min.css">
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="canonical" href="/">
</head>
<body>
<!-- Header -->
<nav id="navbar" class="navbar fixed-top navbar-expand-md grey lighten-5 z-depth-1 navbar-light">
<div class="container-fluid p-0">
<div class="row ml-1 ml-sm-0">
<span class="contact-icon text-center" style="line-height: 1em;">
<a href="mailto:[email protected]">
<i class="fa fa-envelope-square gm-icon"></i>
</a>
<a href="https://scholar.google.com/citations?user=tIf50PgAAAAJ&hl=en" target="_blank" title="Google Scholar">
<i class="ai ai-google-scholar-square gs-icon"></i>
</a>
<a href="https://github.com/dongliangchang" target="_blank" title="GitHub">
<i class="fab fa-github-square gh-icon"></i>
</a>
<!-- <a href="https://www.linkedin.com/in/dongliang-chang-503895236/" target="_blank" title="LinkedIn"><i class="fab fa-linkedin li-icon"></i></a> -->
<!-- <a href="https://www.facebook.com/otilia.stretcu" target="_blank" title="Facebook"><i class="fab fa-facebook-square fb-icon"></i></a>
<a href="https://twitter.com/otilia_stretcu" target="_blank" title="Twitter"><i class="fab fa-twitter-square tw-icon"></i></a> -->
</span>
</div>
<button class="navbar-toggler ml-auto" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-right" id="navbarNav">
<ul class="navbar-nav ml-auto flex-nowrap">
<li class="nav-item navbar-active font-weight-bold">
<a class="nav-link" href="/">
About
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/publications/">
Publications
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/cv/">
CV
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/news/">
News
</a>
</li>
<!-- <li class="nav-item ">
<a class="nav-link" href="/contact/">
Contact
</a>
</li>
-->
<!--
<li class="nav-item ">
<a class="nav-link" href="./index_CN.html">
中文主页
</a>
</li> -->
</ul>
</div>
</div>
</nav>
<!-- Scrolling Progress Bar -->
<progress id="progress" value="0">
<div class="progress-container">
<span class="progress-bar"></span>
</div>
</progress>
<!-- Content -->
<div class="content">
<div class="col p-0 pt-4 pb-4">
<h1 class="pb-3 title text-left font-weight-bold">Dongliang Chang (常东良)</h1>
<h6 class="m-0 mb-2" style="font-size: 0.83em;"></h6>
<h6 class="m-0 mb-2" style="font-size: 0.83em;"><a href="https://goo.gl/maps/8zbEHB16vgybVBXB7" class="page-description" target="_blank">Postdoc, Tsinghua University, Beijing, China </a></h6>
</div>
<!-- Introduction -->
<!-- <div style="display: flex; flex-wrap: wrap;">
<div class="text-justify p-0">
<div class="col-xs-12 col-sm-6 p-0 pt-2 pb-sm-2 pb-4 pl-sm-4 text-center" style="float: right;">
<img class="profile-img img-responsive" src="/assets/img/prof_pic.jpg" />
</div>
<p>
I am a Doctor of Philosophy (PhD) student, focusing on Fine-grained Visual Understanding, at
<a href="http://www.pris.net.cn/" target="_blank">PRIS Laboratory</a> of
the <a href="https://www.bupt.edu.cn/" target="_blank">University of Beijing University of Posts
and Telecommunications (BUPT)</a>, Beijing, China. I am supervised by
<a href="https://zhanyuma.cn/">Prof. Zhanyu Ma</a>
and <a href="http://personal.ee.surrey.ac.uk/Personal/Y.Song/">Prof. Yi-Zhe Song</a>.
</p>
<br>
<p>
Currently, I am working as a Visiting PhD Student (China Scholarship Council Scholarship)
at <a href="http://sketchx.ai/" target="_blank">SketchX Laboratory</a> of
the <a href="https://www.surrey.ac.uk/" target="_blank">University of Surrey</a>,
England, United Kingdom.
</p>
</div>
</div> -->
<div style="display: flex; flex-wrap: wrap;">
<div class="text-justify p-0">
<div class="col-xs-12 col-sm-6 p-0 pt-2 pb-sm-2 pb-4 pl-sm-4 text-center" style="float: right;">
<img class="profile-img img-responsive" src="/assets/img/prof_pic.jpg" />
</div>
<br>
<p>
🔭 I am currently a Postdoc in the I-Vision Group at <a href="https://www.tsinghua.edu.cn/" target="_blank">Tsinghua University</a>, working under the supervision of <a href="http://ivg.au.tsinghua.edu.cn/Jiwen_Lu/biography.html">Prof. Jiwen Lu</a>. I received my Ph.D. Degree at <a href="https://www.bupt.edu.cn/" target="_blank">Beijing University of Posts and Telecommunications (BUPT)</a>, where I was fortunate to be advised by <a href="https://zhanyuma.cn/">Prof. Zhanyu Ma</a> and <a href="http://personal.ee.surrey.ac.uk/Personal/Y.Song/">Prof. Yi-Zhe Song</a>. Moreover, I enriched my research experience as a Visiting Ph.D. Student at <a href="http://sketchx.ai/" target="_blank">SketchX Lab.</a> of the <a href="https://www.surrey.ac.uk/" target="_blank">University of Surrey</a> between 2022 and 2023.
</p>
<br>
<p>
<!-- 👨💻 My research interests primarily revolve around the field of fine-grained visual understanding, focusing specifically on image classification, change detection, and forgery detection. -->
👨💻 My research interests primarily revolve around the field of fine-grained visual understanding.
</p>
<br>
<p>
📫 How to reach me: [email protected]
</p>
<br>
<p>
🌱 "a good paper is always a good paper, no matter it is accepted now or later" -- SonG
</p>
</div>
</div>
<!-- <div class="col text-justify p-0">
<p>
</p>
</div>
-->
<div class="news mt-3 p-0">
<h2 class="title mb-4 p-0">Latest News</h2>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Nov, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
Passed Tsinghua University's postdoctoral midterm assessment with an "Excellent" rating!
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Otc, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
One paper accepted by <a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=34">IEEE Transactions on Circuits and Systems for Video Technology!</a> (SCI, CCF B, Impact Factor: 8.4).
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Sep, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
Awarded the Gansu Province Natural Science Award (Second Class, 4/5)!
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Sep, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
Two papers accepted by <a href="https://accv2024.org/">ACCV 2024!</a>
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Aug, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
Selected for the <a href="http://www.bsig.org.cn/detail/2573">BSIG2024</a> Outstanding Doctoral Dissertation Award!
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Jul, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
One paper accepted by <a href="https://2024.acmmm.org">ACM MM 2024!</a> (CCF A Top Conference).
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Jul, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
Sponsored by the Postdoctoral Fellowship Program of CPSF (B-level, 1,000 postdocs annually).
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Mar, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
One paper accepted by <a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=34">IEEE Transactions on Pattern Analysis and Machine Intelligence!</a> (SCI, CCF A, Impact Factor: 24.314).
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Mar, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
One paper (Creative Sketches) accepted by <a href="https://signalprocessingsociety.org/publications-resources/ieee-transactions-image-processing">IEEE Transactions on Image Processing!</a> (SCI, CCF A, Impact Factor: 10.6)
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Feb, 2024
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
One paper (DemoFusion) accepted by <a href="https://cvpr2024.thecvf.com/">CVPR 2024!</a> (CCF A Top Conference)
</small>
</p>
</div>
</div>
<div class="row p-0">
<div class="col-sm-2 p-0">
<span class="badge light-green darken-1 font-weight-bold text-uppercase align-middle date ml-3">
Dec, 2023
</span>
</div>
<div class="col-sm-10 mt-2 mt-sm-0 ml-3 ml-md-0 p-0 font-weight-light text">
<p>
<small>
We're thrilled to announce a major milestone for our open-source project, DemoFusion: We've just surpassed 1,000 stars on GitHub! 🚀
<a href="https://star-history.com/#PRIS-CV/DemoFusion&Date">[Star History]</a>
<a href="https://arxiv.org/pdf/2311.16973.pdf">[PDF]</a>
<a href="https://github.com/PRIS-CV/DemoFusion">[Code]</a>
<a href="https://ruoyidu.github.io/demofusion/demofusion.html">[Projet Page]</a>
<a href="https://www.youtube.com/watch?v=VM4xXJRcxwU">[Demo Video]</a>
<a href="https://replicate.com/lucataco/demofusion">[Online demo]</a>
</small>
</p>
</div>
</div>
</div>
<div style="width: 30%; margin: 0 auto">
<script type="text/javascript" id="clstr_globe"
src="//clustrmaps.com/globe.js?d=apBTlJLwIHG89BHWCnBxAI9mk14hb-qHI_9uMDveFys">
</script>
<!-- <img src="https://badges.toozhao.com/badges/01H72TKB556S6TQ6ABSQXVKPCY/green.svg" /> -->
</div>
<!-- Footer -->
<footer>
© Copyright 2024 Dongliang Chang.
</footer>
<!-- Core JavaScript Files -->
<script src="/assets/js/jquery.min.js" type="text/javascript"></script>
<script src="/assets/js/popper.min.js" type="text/javascript"></script>
<script src="/assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="/assets/js/mdb.min.js" type="text/javascript"></script>
<script async="" src="https://cdnjs.cloudflare.com/ajax/libs/masonry/4.2.2/masonry.pkgd.min.js" integrity="sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D" crossorigin="anonymous"></script>
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML"></script>
<script src="/assets/js/common.js"></script>
<!-- Scrolling Progress Bar -->
<script type="text/javascript">
$(document).ready(function() {
var navbarHeight = $('#navbar').outerHeight(true);
$('body').css({ 'padding-top': navbarHeight });
$('progress-container').css({ 'padding-top': navbarHeight });
var progressBar = $('#progress');
progressBar.css({ 'top': navbarHeight });
var getMax = function() { return $(document).height() - $(window).height(); }
var getValue = function() { return $(window).scrollTop(); }
// Check if the browser supports the progress element.
if ('max' in document.createElement('progress')) {
// Set the 'max' attribute for the first time.
progressBar.attr({ max: getMax() });
progressBar.attr({ value: getValue() });
$(document).on('scroll', function() {
// On scroll only the 'value' attribute needs to be calculated.
progressBar.attr({ value: getValue() });
});
$(window).resize(function() {
var navbarHeight = $('#navbar').outerHeight(true);
$('body').css({ 'padding-top': navbarHeight });
$('progress-container').css({ 'padding-top': navbarHeight });
progressBar.css({ 'top': navbarHeight });
// On resize, both the 'max' and 'value' attributes need to be calculated.
progressBar.attr({ max: getMax(), value: getValue() });
});
} else {
var max = getMax(), value, width;
var getWidth = function() {
// Calculate the window width as a percentage.
value = getValue();
width = (value/max) * 100;
width = width + '%';
return width;
}
var setWidth = function() { progressBar.css({ width: getWidth() }); };
setWidth();
$(document).on('scroll', setWidth);
$(window).on('resize', function() {
// Need to reset the 'max' attribute.
max = getMax();
setWidth();
});
}
});
</script>
<!-- Code Syntax Highlighting -->
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<script src="/assets/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- Script Used for Randomizing the Projects Order -->
<!-- <script type="text/javascript">
$.fn.shuffleChildren = function() {
$.each(this.get(), function(index, el) {
var $el = $(el);
var $find = $el.children();
$find.sort(function() {
return 0.5 - Math.random();
});
$el.empty();
$find.appendTo($el);
});
};
$("#projects").shuffleChildren();
</script> -->
<!-- Project Cards Layout -->
<script type="text/javascript">
var $grid = $('#projects');
// $grid.masonry({ percentPosition: true });
// $grid.masonry('layout');
// Trigger after images load.
$grid.imagesLoaded().progress(function() {
$grid.masonry({ percentPosition: true });
$grid.masonry('layout');
});
</script>
<!-- Enable Tooltips -->
<script type="text/javascript">
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>