-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpublication.html
More file actions
1510 lines (1329 loc) · 51.4 KB
/
Copy pathpublication.html
File metadata and controls
1510 lines (1329 loc) · 51.4 KB
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
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<style type="text/css">
.unreleased{
color: #C0C0C0
}
a{
padding-right: 2px
}
.col-xs-3 img{
min-height: 110px
}
</style>
<style>
.tab {
margin: 0 auto;
width: 800px;
padding-top: 20px;
}
.tab_list {
height: 50px;
border-bottom: 1px solid red;
}
.tab_list ul {
padding-left: 0px;
height: 50px;
}
.tab li {
float: left;
display: inline-block;
box-sizing: border-box;
padding-left: 20px;
padding-right: 20px;
text-align: center;
height: 50px;
line-height: 50px;
margin: 0;
cursor: pointer;
}
.item {
display: none;
}
.item_first{
display: block;
}
.current {
background-color: brown;
color: white;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<title> DAVAR LAB</title>
<meta name="description" content="">
<link rel="alternate" type="application/rss+xml" href="feed.xml">
<!-- Stylesheet -->
<link rel="stylesheet" href="/css/main.css" rel='stylesheet' type='text/css'>
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Nunito:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic' rel='stylesheet'
type='text/css'>
<!-- Favicon -->
<link rel="shortcut icon" href="/img/small_logo.png">
</head>
<body data-spy="scroll" data-offset="80" data-target=".scrollspy" id="top">
<div class="navigation"></div>
<div class="news top-container">
<div class="container-fluid">
<div class="post tab">
<div class="tab_list">
<ul>
<li class="current">Conference Papers</li>
<li>Journal Papers</li>
<li>Cooperation Papers</li>
<li>Technical Reports </li>
<li>Manuscripts</li>
</ul>
</div>
<div class="tab_con">
<div class="item item_first">
<hr />
<!--IJCNN 2023 CycleNER-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/ijcnn2023_cyclener.png">
</div>
<h4 class="media-heading">
<a href="#">Finding Cycles in Graph: A Unified Approach for Various NER Tasks</a>
<br>
<small>Liang Qiao<sup>*</sup>, Pengfei Li<sup>*</sup>, Ting Jin, Xi Li</small>
</h4>
<small>Accepted by
<strong>
<font color="red">IJCNN 2023 </font>
</strong>
<br>
<a href="/files/ijcnn2023_cyclener/IJCNN2023_CycleNER.pdf">[Paper]</a>
<a href="/files/ijcnn2023_cyclener/CycleNER-slides.pdf">[Slides]</a>
</small>
</div>
</div>
<hr />
<!--IJCNN 2023 VQA-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/ijcnn2023_vqa.png">
</div>
<h4 class="media-heading">
<a href="#">Generating Questions via Unexploited OCR Texts: Prompt-Based Data Augmentation for TextVQA</a>
<br>
<small>Mingjie Han, Ting Jin , Wancong Lin, Can Li, and Liang Qiao</small>
</h4>
<small>Accepted by
<strong>
<font color="red">IJCNN 2023 </font>
</strong>
<br>
<a href="/files/ijcnn2023_vqa/m83020-han.pdf">[Paper]</a>
</small>
</div>
</div>
<hr />
<!--ICME 2023 FSCIL-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/icme2023_fscil.png">
</div>
<h4 class="media-heading">
<a href="#">Rethinking Self-Supervision for Few-Shot Class-Incremental Learning</a>
<br>
<small>Linglan Zhao, Jing Lu, Zhanzhan Cheng, Duo Liu, Xiangzhong Fang</small>
</h4>
<small>Accepted by
<strong>
<font color="red">ICME 2023 </font>
</strong>
<br>
<a href="/files/icme2023_fscil/ICME_2023_Camera_Ready.pdf">[Paper]</a>
</small>
</div>
</div>
<hr />
<!--CVPR 2023 FSCIL-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/cvpr2023_hyper.png">
</div>
<h4 class="media-heading">
<a href="#">HyperMatch: Noise-Tolerant Semi-Supervised Learning via Relaxed Contrastive</a>
<br>
<small>Beitong Zhou<sup>*</sup>, Jing Lu<sup>*</sup>, Kerui Liu, Yunlu Xu, Zhanzhan Cheng<sup>†</sup>, Yi Niu</small>
</h4>
<small>Accepted by
<strong>
<font color="red">CVPR 2023 </font>
</strong>
<br>
<a href="/files/cvpr2023_hypermatch/HyperMatch-Camera-Ready.pdf">[Paper]</a>
<a href="/files/cvpr2023_hypermatch/22103-slides.pdf">[Slides]</a>
<a href="/files/cvpr2023_hypermatch/22103-poster.png">[Poster]</a>
</small>
</div>
</div>
<hr />
<!--CVPR 2023 FSCIL-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/cvpr2023_fscil.png">
</div>
<h4 class="media-heading">
<a href="#">Few-Shot Class-Incremental Learning via Class-Aware Bilateral Distillation</a>
<br>
<small>Linglan Zhao<sup>*</sup>,Jing Lu<sup>*</sup>, Yunlu Xu, Zhanzhan Cheng<sup>†</sup>, Dashan Guo, Yi Niu, Xiangzhong Fang</small>
</h4>
<small>Accepted by
<strong>
<font color="red">CVPR 2023 </font>
</strong>
<br>
<a href="/files/cvpr2023_fscil/FSCIL-Camera-Ready.pdf">[Paper]</a>
<a href="https://github.com/LinglanZhao/BiDistFSCIL">[Code] </a>
<a href="/files/cvpr2023_fscil/22103-slides-fscil.pdf">[Slides]</a>
<a href="/files/cvpr2023_fscil/22103-poster-fscil.png">[Poster]</a>
</small>
</div>
</div>
<hr />
<!--ECCV 2022 PGM-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/eccv2022_pgm.png">
</div>
<h4 class="media-heading">
<a href="#">Distilling Object Detectors With Global Knowledge</a>
<br>
<small>Sanli Tang, Zhongyu Zhang, Zhanzhan Cheng, Jing Lu, Yunlu Xu, Yi Niu, Fan He</small>
</h4>
<small>Accepted by
<strong>
<font color="red">ECCV 2022 </font>
</strong>
<br>
<a href="/files/eccv2022_distill/2717.pdf">[Paper]</a>
<a href="https://github.com/hikvision-research/DAVAR-Lab-ML/tree/main/ECCV22_Distilling_Object_Detectors_with_Global_Knowledge">[Code] </a>
</small>
</div>
</div>
<hr />
<!--ECCV 2022 DLD-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/eccv2022_dld.png">
</div>
<h4 class="media-heading">
<a href="publication/eccv2022_dld.html">Dynamic Low-Resolution Distillation for Cost-Efficient End-to-End Text Spotting</a>
<br>
<small>Ying Chen<sup>*</sup>, Liang Qiao<sup>*</sup>, Zhanzhan Cheng, Shiliang Pu<sup>†</sup>, Yi Niu, Xi Li<sup>†</sup></small>
</h4>
<small>Accepted by
<strong>
<font color="red">ECCV 2022 </font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2207.06694.pdf" target="_blank"
style="color: #990000">[Paper] </a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/tree/main/demo/text_spotting/dld" target="_blank"
style="color: #990000">[Code] </a>
<a href="/files/eccv2022/DLD-poster.pdf" target="_blank"
style="color: #990000">[Poster] </a>
</small>
</div>
</div>
<hr />
<!--ACM MM 2022 -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/acmmm2022_davarocr.png">
</div>
<h4 class="media-heading">
<a href="publication/acmmm2022_davarocr.html">DavarOCR: A Toolbox for OCR and Multi-Modal Document Understanding</a>
<br>
<small>Liang Qiao, Hui Jiang, Ying Chen, Can Li, Pengfei Li, Zaisheng Li, Baorui Zou, Dashan Guo, Yingda Xu, Yunlu Xu, Zhanzhan Cheng<sup>†</sup>, Yi Niu</small>
</h4>
<small>Accepted by
<strong>
<font color="red">ACMMM 2022 <a href="/files/mm2022_davarocr/BestDemoOpenSourceAward.pdf" target="_blank">(Best Open Source Award)</a> </font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2207.06695.pdf" target="_blank"
style="color: #990000">[Paper] </a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR" target="_blank"
style="color: #990000">[Code] </a>
<a href="" target="/files/mm2022_davarocr/DavarOCR-poster.pdf"
style="color: #990000">[Poster] </a>
</small>
</div>
</div>
<hr />
<!--ACM MM 2022 -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/acmmm2022_ctunet.png">
</div>
<h4 class="media-heading">
<a href="publication/acmmm2022_ctunet.html">End-to-End Compound Table Understanding with Multi-Modal Modeling</a>
<br>
<small>Zaisheng Li<sup>*</sup>, Yi Li<sup>*</sup>, Liang Qiao<sup>*</sup>, Pengfei Li, Zhanzhan Cheng, Yi Niu, Shiliang Pu, Xi Li<sup>†</sup></small>
</h4>
<small>Accepted by
<strong>
<font color="red">ACMMM 2022 (Oral) </font>
</strong>
<br>
<a href="/files/mm2022_table/mmfp0553.pdf" target="_blank"
style="color: #990000">[Paper] </a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/tree/main/demo/table_understanding/ctunet" style="color: #990000" >[Code] </a>
<a href="/dataset/comfintab.html"
style="color: #990000">[Dataset]</a>
</small>
</div>
</div>
<hr />
<!--AAAI 2022 -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/aaai2022_open.png">
</div>
<h4 class="media-heading">
<a href="publication/aaai2022_pmal.html">PMAL: Open Set Recognition via Robust Prototype Mining</a>
<br>
<small>Jing Lu<sup>*</sup>, Yunlu Xu<sup>*</sup>, Hao Li, Zhanzhan Cheng<sup>†</sup>, Yi Niu</small>
</h4>
<small>Accepted by
<strong>
<font color="red">AAAI 2022 </font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2203.08569.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<!-- <a class="unreleased" >[Code] (To be published)</a> -->
<a href="/files/aaai2022_pmal/pre-PMAL.pdf" target="_blank"
style="color: #990000">[Slides]</a>
<a href="/files/aaai2022_pmal/poster_PMAL.pdf" target="_blank"
style="color: #990000">[Poster]</a>
</small>
</div>
</div>
<hr />
<!--BMVC 2021_FSL -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/bmvc2021.png">
</div>
<h4 class="media-heading">
<a href="publication/bmvc2021_FSL.html">A Strong Baseline for Semi-Supervised Incremental Few-Shot Learning</a>
<br>
<small>Linglan Zhao, Dashan Guo, Yunlu Xu<sup>†</sup>, Liang Qiao, Zhanzhan Cheng, Shiliang Pu, Yi Niu, and Xiangzhong Fang</small>
</h4>
<small>Accepted by
<strong>
<font color="red">BMVC 2021</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2110.11128.pdf" target="_blank"
style="color: #990000">[Paper]</a>
</small>
</div>
</div>
<hr />
<!--ICDAR 2021_LGPMA -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/icdar2021_lgpma.png">
</div>
<h4 class="media-heading">
<a href="publication/icdar2021_lgpma.html">LGPMA: Complicated Table Structure Recognition with Local and Global Pyramid Mask Alignment</a>
<br>
<small>Liang Qiao<sup>*</sup>, Zaisheng Li<sup>*</sup>, Zhanzhan Cheng<sup>†</sup>, Peng Zhang, Shiliang Pu, Yi Niu, Wenqi Ren, Wenming Tan, and Fei Wu</small>
</h4>
<small>Accepted by
<strong>
<font color="red">ICDAR 2021 (Oral), <a href="/files/icdar2021_lgpma/ICDAR2021_Best_Paper.pdf" target="_blank">Best Industry Paper</a></font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2105.06224.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/tree/main/demo/table_recognition/lgpma" target="_blank" style="color: #990000">[Code] </a>
<a href="/files/icdar2021_lgpma/LGPMA-slides.pdf" target="_blank"
style="color: #990000">[Slides]</a>
<a href="https://www.bilibili.com/video/BV19Q4y1Y73d/" target="_blank"
style="color: #990000">[Video]</a>
</small>
</div>
</div>
<hr />
<!--ICDAR 2021_VSR -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/icdar2021_vsr.png">
</div>
<h4 class="media-heading">
<a href="publication/icdar2021_vsr.html">VSR: A Unified Framework for Document Layout Analysis combining Vision, Semantics and Relations</a>
<br>
<small>Peng Zhang, Can Li, Liang Qiao, Zhanzhan Cheng<sup>†</sup>, Shiliang Pu, Yi Niu and Fei Wu</small>
</h4>
<small>Accepted by
<strong>
<font color="red">ICDAR 2021 (Oral)</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2105.06220.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/tree/main/demo/text_layout/VSR" target="_blank" style="color: #990000" >[Code] </a>
<a href="/files/icdar2021_vsr/VSR-Slides.pdf" target="_blank"
style="color: #990000">[Slides]</a>
<a href="https://www.bilibili.com/video/BV1ff4y1n7zm/" target="_blank"
style="color: #990000">[Video]</a>
</small>
</div>
</div>
<hr />
<!--ICDAR 2021_RF Learning -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/icdar2021_rf.png">
</div>
<h4 class="media-heading">
<a href="publication/icdar2021_rf.html">Reciprocal Feature Learning via Explicit and Implicit Tasks in Scene Text Recognition</a>
<br>
<small>Hui Jiang*, Yunlu Xu*, Zhanzhan Cheng<sup>†</sup>, Shiliang Pu, Yi Niu, Wenqi Ren, Fei Wu, Wenming Tan</small>
</h4>
<small>Accepted by
<strong>
<font color="red">ICDAR 2021 (Oral)</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2105.06229.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/tree/main/demo/text_recognition/rflearning" target="_blank" style="color: #990000">[Code] </a>
<a href="/files/icdar2021_rfl/RFL-slide.pdf" target="_blank"
style="color: #990000">[Slides]</a>
<a href="https://www.bilibili.com/video/BV1dq4y1M7kL/" target="_blank"
style="color: #990000">[Video]</a>
</small>
</div>
</div>
<hr />
<!-- AAAI 2021_MANGO -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/aaai2021_mango.png">
</div>
<h4 class="media-heading">
<a href="/publication/aaai2021_mango.html">MANGO: A Mask Attention Guided One-Stage Scene Text Spotter
</a>
<br>
<small>Liang Qiao<sup>*</sup>, Ying Chen<sup>*</sup>, Zhanzhan Cheng, Yunlu Xu, Yi Niu, Shiliang Pu<sup>†</sup>, Fei Wu</small>
</h4>
<small>Accepted by
<strong>
<font color="red">AAAI 2021</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2012.04350.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/blob/main/demo/text_spotting/mango" target="_blank" style="color: #990000">[Code] </a>
<a href="/files/aaai2021_mango/MANGO-poster.pdf" target="_blank"
style="color: #990000">[Poster]</a>
<a href="/files/aaai2021_mango/MANGO-slides.pdf" target="_blank"
style="color: #990000">[Slides]</a>
</small>
</div>
</div>
<hr />
<!-- AAAI 2021_SPIN -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/aaai2021_spin.png">
</div>
<h4 class="media-heading">
<a href="/publication/aaai2021_spin.html">SPIN: Structure-Preserving Inner Offset Network for Scene Text Recognition
</a>
<br>
<small>Chengwei Zhang*, Yunlu Xu*, Zhanzhan Cheng<sup>†</sup>, Shiliang Pu, Yi Niu, Fei Wu, Futai Zou </small>
</h4>
<small>Accepted by
<strong>
<font color="red">AAAI 2021</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2005.13117.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/blob/main/demo/text_recognition/spin" target="_blank" style="color: #990000">[Code] </a>
</small>
</div>
</div>
<hr />
<!-- ICPR 2020 FASDA-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/icpr2020_fasda.png">
</div>
<h4 class="media-heading">
<a href="/publication/icpr2020_fasda.html">Text Recognition in Real Scenarios with a Few Labeled Samples</a>
<br>
<small>Jinghuang Lin, Zhanzhan Cheng, Fan Bai, Yi Niu, Shiliang Pu, Shuigeng Zhou<sup>†</sup> </small>
</h4>
<small>Accepted by
<strong>
<font color="red">ICPR 2020</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2006.12209.pdf" target="_blank"
style="color: #990000">[Paper]</a>
</small>
</div>
</div>
<hr />
<!--ICPR 2020 PEE-->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/icpr2020_pee.png">
</div>
<h4 class="media-heading">
<a href="/publication/icpr2020_pee.html">Recognizing Multiple Text Sequences from an Image by Pure End-To-End Learning</a>
<br>
<small>Zhenlong Xu, Shuigeng Zhou<sup>†</sup>, Fan Bai, Zhanzhan Cheng, Yi Niu, Shiliang Pu</small>
</h4>
<small>Accepted by
<strong>
<font color="red">ICPR 2020</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/1907.12791.pdf" target="_blank"
style="color: #990000">[Paper]</a>
</small>
</div>
</div>
<hr />
<!-- AAM MM 2020_trie -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/acmmm2020_trie.png">
</div>
<h4 class="media-heading">
<a href="/publication/acmmm2020_trie.html">TRIE: End-to-End Text Reading and Information Extraction for
Document Understanding</a>
<br>
<small>Peng Zhang<sup>*</sup>, Yunlu Xu<sup>*</sup>, Zhanzhan Cheng, Shiliang Pu<sup>†</sup>, Jing Lu, Liang Qiao, Yi Niu, Fei Wu </small>
</h4>
<small>Accepted by
<strong>
<font color="red">ACMMM 2020</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2005.13118.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/blob/main/demo/text_ie/trie" target="_blank" style="color: #990000">[Code] </a>
<a href="/files/mm20_trie/TRIE_slides.pdf" target="_blank"
style="color: #990000">[Slides]</a>
</small>
</div>
</div>
<hr />
<!-- AAAI 2020_tp -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/aaai2020_tp.png">
</div>
<h4 class="media-heading">
<a href="/publication/aaai2020_tp.html">Text Perceptron: Towards End-to-End Arbitrary-Shaped Text Spotting</a>
<br>
<small>Liang Qiao, Sanli Tang, Zhanzhan Cheng<sup>†</sup>, Yunlu Xu, Yi Niu, Shiliang Pu, Fei Wu </small>
</h4>
<small>Accepted by
<strong>
<font color="red">AAAI 2020 (Oral)</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/2002.06820" target="_blank"
style="color: #990000">[Paper]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/tree/main/demo/text_detection/text_perceptron_det" target="_blank"
style="color: #990000">[Code]</a>
<a href="/files/aaai2020_tp/AAAI20-TP-Supplementary.pdf" target="_blank"
style="color: #990000">[Supplementary]</a>
<a href="/files/aaai2020_tp/AAAI20-TP-Poster.pdf" target="_blank"
style="color: #990000">[Poster]</a>
<a href="https://www.bilibili.com/video/BV1Wz4y1k7Dc" target="_blank"
style="color: #990000">[Presentation Video]</a>
</small>
</div>
</div>
<hr />
<!-- PRCV 2019_REAPS -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/prcv2019_reaps.png">
</div>
<h4 class="media-heading">
<a href="/publication/prcv2019_reaps.html">REAPS: Towards Better Recognition of Fine-grained Images by Region Attending and Part Sequencing</a>
<br>
<small>Peng Zhang, Xinyu Zhu, Zhanzhan Cheng<sup>†</sup>, Shuigeng Zhou, Yi Niu </small>
</h4>
<small>Accepted by
<strong>
<font color="red">PRCV 2019</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/1908.01962.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="/files/pcrv19_reaps/prcv19-REAPS-Poster.pdf" target="_blank"
style="color: #990000">[Poster]</a>
</small>
</div>
</div>
<hr />
<!-- ACMMM 2019_YORO -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/acmmm2019_yoro.png">
</div>
<h4 class="media-heading">
<a href="/publication/acmmm2019_yoro.html">You Only Recognize Once: Towards Fast Video Text Spotting</a>
<br>
<small>Zhanzhan Cheng<sup>*</sup>, Jing Lu<sup>*</sup>, Yi Niu, Shiliang Pu, Fei Wu<sup>†</sup>, Shuigeng Zhou </small>
</h4>
<small>Accepted by
<strong>
<font color="red">ACMMM 2019</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/1903.03299.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="dataset/lsvtd.html" target="_blank"
style="color: #990000">[Dataset]</a>
<a href="https://github.com/hikopensource/DAVAR-Lab-OCR/tree/main/demo/videotext/yoro" target="_blank" style="color: #990000">[Code] </a>
<a href="/files/mm19_yoro/MM19-YORO-poster.pdf" style="color: #990000" target="_blank">[Poster]</a>
<a href="/files/mm19_yoro/MM19-YORO-spotlights.pdf" style="color: #990000" target="_blank">[Spotlights]</a>
<a href="https://www.bilibili.com/video/bv1gK4y1L7No" target="_blank" style="color:#990000">[Demo]</a>
</small>
</div>
</div>
<hr />
<!-- ACMMM 2019_SSG -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/acmmm2019_ssg.png">
</div>
<h4 class="media-heading">
<a href="/publication/acmmm2019_ssg.html">Adversarial Seeded Sequence Growing for Weakly-Supervised Temporal Action Localization</a>
<br>
<small>Chengwei Zhang, Yunlu Xu, Zhanzhan Cheng<sup>†</sup>, Yi Niu, Shiliang Pu, Fei Wu, Futai Zou </small>
</h4>
<small>Accepted by
<strong>
<font color="red">ACMMM 2019</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/1908.02422.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="/files/mm19_assg/MM19-ASSG-Poster.pdf" target="_blank"
style="color: #990000">[Poster]</a>
<a href="/files/mm19_assg/MM19-ASSG-spotlights.pdf" target="_blank"
style="color: #990000">[Spotlights]</a>
</small>
</div>
</div>
<hr />
<!-- AAAI 2019_star -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/aaai2019_star.png">
</div>
<h4 class="media-heading">
<a href="/publication/aaai2019_star.html">Segregated Temporal Assembly Recurrent Networks for Weakly Supervised Multiple Action Detection</a>
<br>
<small>Yunlu Xu<sup>*</sup>, Chengwei Zhang<sup>*</sup>, Zhanzhan Cheng<sup>†</sup>, Jianwen Xie, Yi Niu, Shiliang Pu, Fei Wu </small>
</h4>
<small>Accepted by
<strong>
<font color="red">AAAI 2019 (Oral)</font>
</strong>
<br>
<a href="https://arxiv.org/pdf/1811.07460.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="/files/aaai2019_star/AAAI19-Star-Slides.pdf" target="_blank"
style="color: #990000">[Slides]</a>
</small>
</div>
</div>
<hr />
<!-- CVPR 2018_EPL -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/cvpr2018_epl.png">
</div>
<h4 class="media-heading">
<a href="/publication/cvpr2018_epl.html">Edit Probability for Scene Text Recognition</a>
<br>
<small>Fan Bai, Zhanzhan Cheng, Yi Niu, Shiliang Pu, Shuigeng Zhou<sup>†</sup> </small>
</h4>
<small>Accepted by
<strong>
<font color="red">CVPR 2018</font>
</strong>
<br>
<a href="https://openaccess.thecvf.com/content_cvpr_2018/papers/Bai_Edit_Probability_for_CVPR_2018_paper.pdf" target="_blank"
style="color: #990000">[Paper]</a>
</small>
</div>
</div>
<hr />
<!-- CVPR 2018_AON -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/cvpr2018_aon.png">
</div>
<h4 class="media-heading">
<a href="/publication/cvpr2018_aon.html">AON: Towards Arbitrarily-Oriented Text Recognition</a>
<br>
<small>Zhanzhan Cheng, Yangliu Xu, Fan Bai, Yi Niu, Shiliang Pu, Shuigeng Zhou<sup>†</sup> </small>
</h4>
<small>Accepted by
<strong>
<font color="red">CVPR 2018</font>
</strong>
<br>
<a href="http://openaccess.thecvf.com/content_cvpr_2018/papers/Cheng_AON_Towards_Arbitrarily-Oriented_CVPR_2018_paper.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="/files/cvpr18_aon/cvpr18_poster_AON.pdf" target="_blank"
style="color: #990000">[Poster]</a>
</small>
</div>
</div>
<hr />
<!-- ICCV 2017_FAN -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/iccv2017_fan.png">
</div>
<h4 class="media-heading">
<a href="/publication/iccv2017_fan.html">Focusing Attention: Towards Accurate Text Recognition in Natural Images</a>
<br>
<small>Zhanzhan Cheng, Fan Bai, Yunlu Xu, Gang Zheng, Shiliang Pu, Shuigeng Zhou<sup>†</sup> </small>
</h4>
<small>Accepted by
<strong>
<font color="red">ICCV 2017</font>
</strong>
<br>
<a href="http://openaccess.thecvf.com/content_ICCV_2017/papers/Cheng_Focusing_Attention_Towards_ICCV_2017_paper.pdf" target="_blank"
style="color: #990000">[Paper]</a>
<a href="/files/iccv17_fan/iccv17_poster_FAN.pdf" target="_blank"
style="color: #990000">[Poster]</a>
</small>
</div>
</div>
<hr />
</div>
<div class="item">
<hr />
<!-- 2024 MLARP -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/dataset/mdcd/mdcd.png" width="1000">
</div>
<h4 class="media-heading">
<a href="/dataset/mdcd-vqa.html">Towards Multi-Domain Chinese Document VQA: a New Dataset and Comprehensive Evaluation</a>
<br>
<small>Liang Qiao, Can Li, Huiyan Wu, Yunlu Xu, Yi Niu, Wenqi Ren, Xi Li</small>
</h4>
<small>Accepted by
<strong>
<font color="red">SCIENCE CHINA Information Sciences, 2026</font>
</strong>
<br>
<a href="#" target="_blank"
style="color: #990000">[Paper]</a>
<a href="/dataset/mdcd-vqa.html"
style="color: #990000">[Dataset]</a>
</small>
<br>
</div>
</div>
<hr />
<!-- 2024 MLARP -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/PR2024_MLARP.png" width="1000">
</div>
<h4 class="media-heading">
<a href="/publication/PR2024_MLARP.html">Reading order detection in visually-rich documents with multi-modal layout-aware relation prediction</a>
<br>
<small>Liang Qiao<sup>*</sup>, Can Li<sup>*</sup>, Zhanzhan Cheng, Yunlu Xu, Yi Niu, Xi Li</small>
</h4>
<small>Accepted by
<strong>
<font color="red">Pattern Recognition 2024</font>
</strong>
<br>
<a href="https://www.sciencedirect.com/science/article/pii/S0031320324000657?via%3Dihub" target="_blank"
style="color: #990000">[Paper]</a>
</small>
<br>
</div>
</div>
<hr />
<!-- 2023 SCID -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/csig2023_scid.png" width="1000">
</div>
<h4 class="media-heading">
<a href="/publication/csig2023_scid.html">SCID:用于视觉富文档信息提取任务的扫描中文票据数据集</a>
<br>
<small>Liang Qiao, Zaisheng Li, Zhanzhan Cheng,Xi Li</small>
</h4>
<small>Accepted by
<strong>
<font color="red">《中国图象图形学报》2023</font>
</strong>
<br>
<a href="http://www.cjig.cn/jig/ch/reader/view_abstract.aspx?file_no=220911&flag=1" target="_blank"
style="color: #990000">[Paper]</a>
<a href="/dataset/scid.html"
style="color: #990000">[Dataset]</a>
</small>
<br>
</div>
</div>
<hr />
<!-- tip2021_free -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/tip2021_free.png" width="1000">
</div>
<h4 class="media-heading">
<a href="/publication/tip2021_free.html">FREE: A Fast and Robust End-to-End Video Text Spotter</a>
<br>
<small>Zhanzhan Cheng<sup>*</sup>, Jing Lu<sup>*</sup>, Baorui Zou, Liang Qiao, Yunlu Xu, Shiliang Pu<sup>†</sup>, Yi Niu, Fei Wu, Shuigeng Zhou</small>
</h4>
<small>Accepted by
<strong>
<font color="red">TIP 2021</font>
</strong>
<br>
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=9266586" target="_blank"
style="color: #990000">[Paper]</a>
</small>
<br>
</div>
</div>
<hr />
</div>
<div class="item">
<hr />
<!--TIP 2025 -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/tip2025.png">
</div>
<h4 class="media-heading">
<a href="#">GCSTG: Generating Class-Confusion-Aware Samples With a Tree-Structure Graph for Few-Shot Object Detection</a>
<br>
<small>Longrong Yang; Hanbin Zhao; Hongliang Li; Liang Qiao; Ziwei Yang; Xi Li</small>
</h4>
<small>Accepted by
<strong>
<font color="red">TIP 2025 </font>
</strong>
(cooperation paper)
<br>
<a href="https://ieeexplore.ieee.org/abstract/document/10851817" target="_blank">[Paper] </a>
</small>
</div>
</div>
<!--ICCV2023 -->
<div class="media">
<div class="media-body">
<div class="col-xs-3">
<img src="/img/publications/iccv2023distill.png">
</div>
<h4 class="media-heading">