-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·893 lines (818 loc) · 33.2 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
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
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>TaizhouCHEN 陈泰舟</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Karla:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- <nav id="colorlib-main-nav" role="navigation">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle active"><i></i></a>
<div class="js-fullheight colorlib-table">
<div class="colorlib-table-cell js-fullheight">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" id="search" placeholder="Enter any key to search...">
<button type="submit" class="btn btn-primary"><i class="icon-search3"></i></button>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="head-title">Works</h2>
<a href="images/work-1.jpg" class="gallery image-popup-link text-center" style="background-image: url(images/work-1.jpg);">
<span><i class="icon-search3"></i></span>
</a>
<a href="images/work-2.jpg" class="gallery image-popup-link text-center" style="background-image: url(images/work-2.jpg);">
<span><i class="icon-search3"></i></span>
</a>
<a href="images/work-3.jpg" class="gallery image-popup-link text-center" style="background-image: url(images/work-3.jpg);">
<span><i class="icon-search3"></i></span>
</a>
<a href="images/work-4.jpg" class="gallery image-popup-link text-center" style="background-image: url(images/work-4.jpg);">
<span><i class="icon-search3"></i></span>
</a>
</div>
</div>
</div>
</div>
</nav> -->
<div id="colorlib-page">
<header>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="colorlib-navbar-brand">
<!-- <a class="colorlib-logo" href="index.html"><span>Ivon</span><span>Chan</span></a> -->
</div>
<!-- <a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle"><i></i></a> -->
</div>
</div>
</div>
</header>
<div id="colorlib-about">
<div class="container">
<div class="row text-center">
<h2 class="bold">About</h2>
</div>
<div class="row">
<div class="col-md-5 animate-box">
<br>
<br>
<div class="item">
<img class="img-responsive about-img profile-img" src="images/profile_low.jpg" width="585" height="400" >
<p>Photo credit to <a href="https://www.lorenzohill.com/">Lorenzo Hill</a></p>
</div>
</div>
<div class="col-md-7 col-md-push-0 animate-box">
<div class="about-desc">
<div class="owl-carousel3">
<div class="item">
<h1 class="name-text">Taizhou CHEN 陈泰舟</h1>
<!-- <h1 class="name-text">陳泰舟</h1> -->
</div>
</div>
<div class="desc">
<div class="rotate">
<h2 class="heading">About</h2>
</div>
<p style="text-align:justify;">I am currently a Lecturer (Assistant Professor) at the Department of Computer Science, College of Mathematic and Computer Science, Shantou University (STU). I earned my PhD from the <a href="https://meilab-hk.github.io">Multimodal Embodied Interaction Lab (MEI Lab)</a>, School of Creative Media, City University of Hong Kong, under supervised by <a href="https://zhukening.wixsite.com/aboutme">Dr. Kening Zhu </a>and <a href="https://hongbofu.people.ust.hk/">Prof. Hongbo Fu</a>.
<!-- My research lies in the intersection of Human-Computer Interaction(HCI) and Artificial Intelligence(AI), in which I am currently focusing on investigating context-aware sensing technology, leveraging Deep Learning(DL) algorithm. I also have research experiences on VR/AR haptic feedback, tangible interface design, smart wearable devices, and multi-modal interface design. -->
My research interest lies in the intersection of Human-Computer Interaction and applied machine learning, in which I am currently focusing on investigating sensing technologies, leveraging deep learning algorithm. Specifically, I invent and build new sensing techniques to extract meaningful insight from common sensor data for two purposes: on one hand, I create novel input techniques on mobile devices to provide enhanced and intuitive user experiences. On the other hand, I design and evaluate sensing technology to implicitly understand users’ behavior and surroundings. My ultimate research goal is to make ubiquitous device context-aware and user-aware.
I also have research experiences on multimodal VR/AR/XR, tangible interface design, smart wearable devices, and multi-modal interface design.</p>
<div class="google-scholar-link">
<a href="https://scholar.google.com/citations?hl=en&user=2Hz96G8AAAAJ">Google Scholar</a> / <a href="docs/Taizhou_s_Resume.pdf">CV</a>
</div>
<p><a id="contact_me_btn" class="btn btn-primary btn-outline">Contact Me!</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div id="colorlib-work">
<div class="container">
<div class="row text-center">
<h2 class="bold">Overview</h2>
</div>
<div class="row">
<div class="col-md-12 col-md-offset-0 text-center animate-box intro-heading">
<span>Overview</span>
<h2 class="sub-title">Research Overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="rotate">
<h2 class="heading">Overview</h2>
</div>
</div>
</div>
<div class="animate-box">
<div class="item text-center">
<img class="img-fluid" style="width:70%" src="images/ResearchScope.png" >
</div>
</div>
</div>
</div>
-->
<div id="colorlib-work">
<div class="container">
<div class="row text-center">
<h2 class="bold">Publications</h2>
</div>
<div class="row">
<div class="col-md-12 col-md-offset-0 text-center animate-box intro-heading">
<span>Publications</span>
<h2 class="sub-title">Research Outputs</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="rotate">
<h2 class="heading">Publications</h2>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-md-12 animate-box ">
<div class="item text-center">
<img class="img-fluid project-entry" style="width:50%; margin-bottom:100px" src="images/ResearchScope.png" >
</div>
</div>
</div> -->
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/efring.jpg" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>EFRing: Enabling Thumb-to-Index-Finger Microgesture Interaction through Electric Field Sensing using Single Smart Ring</strong></h4>
<h4 class="project-entry"><strong>Taizhou Chen</strong>, Tianpei Li, Xingyu Yang, Kening Zhu</h4>
<h4 class="project-entry">Proceedings of the ACM on Interactive, Mobile, Wearable and Ubiquitous Technologies (<strong>IMWUT</strong>), 2023</h4>
<a href="docs/efring.pdf">[Paper] <a href="https://youtu.be/gnCZrqTkTjU">[Video] <a class="disabled">[Presentation] <a href="https://github.com/taizhouchen/EFRing">[Code]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/gestonhmd.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>GestOnHMD: Enabling Gesture-based Interaction on Low-cost VR Head-Mounted Display</strong></h4>
<h4 class="project-entry"><strong>Taizhou Chen</strong>, Lantian Xu, Xianshan Xu, Kening Zhu</h4>
<h4 class="project-entry">IEEE Transactions on Visualization and Computer Graphics (<strong>TVCG</strong>), 2021</h4>
<a href="docs/gestonhmd.pdf">[Paper] <a href="https://youtu.be/-Pm_daEzG2o">[Video] <a href="https://youtu.be/Zsw1aQisYxs">[Presentation] <a href="https://github.com/taizhouchen/GestOnHMD">[Code]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/fritzbot.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>FritzBot: A Data-Driven Conversational Agent for Physical-Computing System Design</strong></h4>
<h4 class="project-entry"><strong>Taizhou Chen</strong>, Lantian Xu, Kening Zhu</h4>
<h4 class="project-entry">International Journal of Human-Computer Studies (<strong>IJHCS</strong>), 2021</h4>
<a href="docs/fritzbot.pdf">[Paper] <a href="https://youtu.be/vvSJ3S_4P5s">[Video]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/picksense.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>Deep-Learning based Unobtrusive Handedness Prediction for One-handed Smartphone Interaction </strong></h4>
<h4 class="project-entry"><strong>Taizhou Chen</strong>, Ming Chieh Yang, Kening Zhu</h4>
<h4 class="project-entry">Multimed Tools Appl (<strong>MTA</strong>), 2022</h4>
<a href="docs/picksense.pdf">[Paper] <a href="https://www.youtube.com/watch?v=dqmzXbwXGYc">[Video]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/coderhythm.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>CodeRhythm: A Tangible Programming Toolkit for Visually Impaired Students</strong></h4>
<h4 class="project-entry">Zhiyi Rong, Ngo Fung Chan, <strong>Taizhou Chen</strong>, Kening Zhu</h4>
<h4 class="project-entry">Asian CHI Symposium, 2020 (<strong style="color:red">Best Paper Award</strong>)</h4>
<a href="docs/coderhythm.pdf">[Paper] <a href="https://youtu.be/EsHXHvMFLBE">[Video] <a href="https://www.coderhythm-block.com/">[Project Page]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/fingertalkie.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>FingerTalkie: Designing a Low-Cost Finger-Worn Device for Interactive Audio Labeling of Tactile Diagrams</strong></h4>
<h4 class="project-entry">Arshad Nasser, <strong>Taizhou Chen</strong>, Can Liu, Kening Zhu, P. V. M. Rao</h4>
<h4 class="project-entry">International Conference on Human-Computer Interaction (<strong>HCII</strong>), 2020</h4>
<a href="docs/fingertalkie.pdf">[Paper] <a href="https://youtu.be/Xielehm_jqE">[Video]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/duprobo.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>DupRobo: Interactive Robotic Autocompletion of Physical Block-based Repetitive Structure</strong></h4>
<h4 class="project-entry"><strong>Taizhou Chen</strong>, Yi-Shiun Wu, and Kening Zhu</h4>
<h4 class="project-entry">Human-Computer Interaction (<strong>INTERACT</strong>), 2019</h4>
<a href="docs/duprobo.pdf">[Paper] <a href="https://youtu.be/L7-37gPK4Ck">[Video]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/thermalring.jpg" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>A sense of ice and fire: Exploring thermal feedback with multiple thermoelectric-cooling elements on a smart ring</strong></h4>
<h4 class="project-entry">Kening Zhu, Simon Perrault, <strong>Taizhou Chen</strong>, Shaoyu Cai, Roshan Lalintha Peiris</h4>
<h4 class="project-entry">International Journal of Human-Computer Studies (<strong>IJHCS</strong>), 2019</h4>
<a href="docs/thermalring.pdf">[Paper] <a href="https://youtu.be/OkndI-365CY">[Video]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/haptwist.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>HapTwist: Creating Interactive Haptic Proxies in Virtual Reality Using Low-cost Twistable Artefacts</strong></h4>
<h4 class="project-entry">Kening Zhu, <strong>Taizhou Chen</strong>, Feng Han, and Yi-Shiun Wu</h4>
<h4 class="project-entry">Conference on Human Factors in Computing Systems (<strong>CHI</strong>), 2019</h4>
<a href="docs/haptwist.pdf">[Paper] <a href="https://youtu.be/SzRrm570jZA">[Video]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/vrcue.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>Investigating Different Modalities of Directional Cues for Multi-task Visual-Searching Scenario in Virtual Reality</strong></h4>
<h4 class="project-entry"><strong>Taizhou Chen</strong>, Yi-Shiun Wu, and Kening Zhu</h4>
<h4 class="project-entry">ACM Symposium on Virtual Reality Software and Technology (<strong>VRST</strong>), 2018</h4>
<a href="docs/vrcue.pdf">[Paper] <a href="https://youtu.be/BmhYP6LmVb0">[Video]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/demo_haptwist.jpg" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>[Demo] HapTwist: Creating Interactive Haptic Proxies in Virtual Reality Using Low-cost Twistable Artefacts</strong></h4>
<h4 class="project-entry">Kening Zhu, <strong>Taizhou Chen</strong>, Shaoyu Cai, Feng Han, and Yi-Shiun Wu</h4>
<h4 class="project-entry">SIGGRAPH Asia 2018 Virtual and Augmented Reality, 2018</h4>
<a href="docs/demo_haptwist.pdf">[Paper]</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="work-entry project_img_entry animate-box">
<div class="item">
<img class="img-responsive center-block img-thumbnail" src="images/project_img/demo_vrcue.png" style="width: 16em; height: 9em;">
</div>
</div>
</div>
<div class="col-md-8">
<div class="work-entry animate-box">
<div class="item">
<h4 class="project-title"><strong>[Demo] The golden guardian: multi-sensory immersive gaming through multi-sensory spatial cues</strong></h4>
<h4 class="project-entry"><strong>Taizhou Chen</strong>, Junyu Liu, Kening Zhu, and Tamas Waliczky</h4>
<h4 class="project-entry">SIGGRAPH Asia 2017 VR Showcase, 2017</h4>
<a href="docs/demo_vrcue.pdf">[Paper] <a href="https://youtu.be/kKJIxaO5Vjc">[Video]</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="colorlib-work">
<div class="container">
<div class="row text-center">
<h2 class="bold">Experiences</h2>
</div>
<div class="row">
<div class="col-md-12 col-md-offset-0 text-center animate-box intro-heading">
<span>Experiences</span>
<h2 class="sub-title">Research Experiences</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="rotate">
<h2 class="heading">Experiences</h2>
</div>
</div>
</div>
<div class="row mobile_text_entry">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry animate-box experiences_text_entry">
<div class="item">
<h3 class='experiences_text' style="font-family: Helvetica;">Master Advisor</h3>
<h4 style="font-family: Helvetica;">Cheung Kong School of Art & Design, Shantou University</h4>
<p>2024.09 - Now</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<img class="img-responsive institution-logo center-block" src="images/design_logo.png" style="width: 60%; height: 60%;">
</div>
</div>
</div>
</div>
<div class="row mobile_text_entry">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry animate-box experiences_text_entry">
<div class="item">
<h3 class='experiences_text' style="font-family: Helvetica;">Assistant Professor, Master Advisor</h3>
<h4 style="font-family: Helvetica;">Dept. of Computer Science, Shantou University</h4>
<p>2022.12 - Now</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<img class="img-responsive institution-logo center-block" src="images/stu_logo.jpg" style="width: 15%; height: 15%;">
</div>
</div>
</div>
</div>
<div class="row mobile_text_entry">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry animate-box experiences_text_entry">
<div class="item">
<h3 class='experiences_text' style="font-family: Helvetica;">AI Engineer Intern</h3>
<h4 style="font-family: Helvetica;">Huawei Technologies Co., Ltd.</h4>
<p>2020.10 - 2021.4</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<img class="img-responsive institution-logo center-block" src="images/huawei_logo.png" style="width: 20%; height: 20%;">
</div>
</div>
</div>
</div>
<div class="row mobile_text_entry">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry animate-box experiences_text_entry">
<div class="item">
<h3 class='experiences_text' style="font-family: Helvetica;">Visiting Student</h2>
<h4 style="font-family: Helvetica;">TsingHua University</h4>
<p>2019.12 - 2020.4</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<img class="img-responsive institution-logo center-block" src="images/tsinghua_logo.png" style="width: 25%; height: 25%;">
</div>
</div>
</div>
</div>
<div class="row mobile_text_entry">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry animate-box experiences_text_entry">
<div class="item">
<h3 class='experiences_text' style="font-family: Helvetica;">PhD Candidate</h2>
<h4 style="font-family: Helvetica;">City University of Hong Kong</h4>
<p>2018.9 - present</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<img class="img-responsive institution-logo center-block" src="images/cityu_vertical_logo_cmyk_transparent.png" style="width: 25%; height: 25%;">
</div>
</div>
</div>
</div>
<div class="row mobile_text_entry">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry animate-box experiences_text_entry">
<div class="item">
<h3 class='experiences_text' style="font-family: Helvetica;">Research Assistant</h2>
<h4 style="font-family: Helvetica;">City University of Hong Kong</h4>
<p>2016.12 - 2018.9</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<img class="img-responsive institution-logo center-block" src="images/cityu_vertical_logo_cmyk_transparent.png" style="width: 25%; height: 25%;">
</div>
</div>
</div>
</div>
</div>
</div>
<div id="colorlib-work">
<div class="container">
<div class="row text-center">
<h2 class="bold">Teaching</h2>
</div>
<div class="row">
<div class="col-md-12 col-md-offset-0 text-center animate-box intro-heading">
<span>Teaching</span>
<h2 class="sub-title">Teaching Experiences</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="rotate">
<h2 class="heading">Teaching</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry mobile_text_entry animate-box">
<div class="item">
<!-- <h3 style="font-family: Arial, Helvetica, sans-serif"><strong>Lecturer</strong></h3> -->
<h4 style="font-family: Arial, Helvetica, sans-serif">[CST3402A] Computer Networks</h4>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<p>2023/24 Semester B, Shantou University</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry mobile_text_entry animate-box">
<div class="item">
<!-- <h3 style="font-family: Arial, Helvetica, sans-serif"><strong>Lecturer</strong></h3> -->
<h4 style="font-family: Arial, Helvetica, sans-serif">[ISI3003A] Practice in Python Programming</h4>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<p>2023/24 Semester A, Shantou University</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry mobile_text_entry animate-box">
<div class="item">
<!-- <h3 style="font-family: Arial, Helvetica, sans-serif"><strong>Lecturer</strong></h3> -->
<h4 style="font-family: Arial, Helvetica, sans-serif">[CST1701A] The C Programming Language</h4>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<p>2023/24 Semester A & B, Shantou University</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry mobile_text_entry animate-box">
<div class="item">
<!-- <h3 style="font-family: Arial, Helvetica, sans-serif"><strong>Teaching Assistant</strong></h3> -->
<h4 style="font-family: Arial, Helvetica, sans-serif">[SM1103A] Introduction to Media Computing</h4>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<p>2018/19 Semester A, City University of Hong Kong</p>
<p>2019/20 Semester A, City University of Hong Kong</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<div class="work-entry mobile_text_entry animate-box">
<div class="item">
<!-- <h3 style="font-family: Arial, Helvetica, sans-serif"><strong>Lecturer</strong></h3> -->
<h4 style="font-family: Arial, Helvetica, sans-serif">[CS4187] Computer Vision for Interactivity</h4>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item">
<p>2018/19 Semester A, City University of Hong Kong</p>
<p>2020/21 Semester A, City University of Hong Kong</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="colorlib-work">
<div class="container">
<div class="row text-center">
<h2 class="bold">Services</h2>
</div>
<div class="row">
<div class="col-md-12 col-md-offset-0 text-center animate-box intro-heading">
<span>Services</span>
<h2 class="sub-title">Academic Services</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="rotate">
<h2 class="heading">Services</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="work-entry mobile_text_entry animate-box">
<div class="item text-center">
<h3 style="font-family: Arial, Helvetica, sans-serif"><strong>PC Member</strong></h3>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item text-center">
<h4 style="font-family: Arial, Helvetica, sans-serif">
ACM SIGGRAPH Asia Emerging Technologies 2023/2024, <br>
ACM UbiComp/ISWC 2023, IEEE AIVR 2020/2021</h4>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="work-entry mobile_text_entry animate-box">
<div class="item text-center">
<h3 style="font-family: Arial, Helvetica, sans-serif"><strong>Reviewer</strong></h3>
</div>
</div>
</div>
<div class="col-md-6">
<div class="work-entry animate-box">
<div class="item text-center">
<h4 style="font-family: Arial, Helvetica, sans-serif">CHI,
SIGGRAPH Asia, SIGGRAPH, IMWUT, ISMAR,
IEEE VR
MobileCHI,
ICMI,
ISS,
IUI,
SUI,
ISWC,<br>
...
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="colorlib-work">
<div class="container">
<div class="row text-center">
<h2 class="bold">Award</h2>
</div>
<div class="row">
<div class="col-md-12 col-md-offset-0 text-center animate-box intro-heading">
<span>Award</span>
<h2 class="sub-title">Academic Award</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="rotate">
<h2 class="heading">Award</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<div class="work-entry animate-box">
<div class="item">
<h3 style="font-family: Arial, Helvetica, sans-serif"><strong>Research Tuition Scholarship</strong></h3>
<h4 style="font-family: Arial, Helvetica, sans-serif">Academic year 2020 - 21, City University of Hong Kong</h4>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<div class="work-entry animate-box">
<div class="item">
<h3 style="font-family: Arial, Helvetica, sans-serif"><strong>The Outstanding Academic Performance Award for Research Degree Students</strong></h3>
<h4 style="font-family: Arial, Helvetica, sans-serif">Academic year 2018 - 19, City University of Hong Kong</h4>
<h4 style="font-family: Arial, Helvetica, sans-serif">Academic year 2020 - 21, City University of Hong Kong</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="colorlib-contact">
<div class="container">
<div class="row text-center">
<h2 class="bold">Contact</h2>
</div>
<div class="row">
<div id="contact_animate_box_title" class="col-md-12 col-md-offset-0 text-center animate-box intro-heading">
<span>Contact</span>
<h2 style="font-family: Helvetica;">Contact Me</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="rotate">
<h2 class="heading">Contact</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-md-offset-0">
<div class="row">
<div id="contact_animate_box_img" class="col-md-7 animate-box">
<div class="item">
<img class="img-responsive about-img" src="images/IMG_6694.jpg" width="600" height="400" >
</div>
</div>
<div id="contact_animate_box_contact" class="col-md-4 animate-box">
<h3 style="font-family: Helvetica;">My Address</h3>
<ul class="contact-info">
<li><span><i class="icon-map5"></i></span>M6024, Run Run Shaw Creative Media Centre, 18 Tat Hong Avenue, Kowloon Tong, Hong Kong</li>
<li><span><i class="icon-phone4"></i></span>+(852)53199654 <br>+(86)15889283632</li>
<li><span><i class="icon-envelope2"></i></span><a href=mailto:[email protected]>[email protected]</a></li>
<li><span><i class="icon-globe3"></i></span><a href="taizhouchen.github.io">taizhouchen.github.io</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Owl Carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Magnific Popup -->
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/magnific-popup-options.js"></script>
<!-- Main JS (Do not remove) -->
<script src="js/main.js"></script>
</body>
</html>