-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomp-vis.html
108 lines (84 loc) · 3.87 KB
/
comp-vis.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width = device-width, initial-scale = 1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> AXA Research on Computer Vision </title>
<link rel="stylesheet" type="text/css" href="reset.css" />
<link rel="stylesheet" type="text/css" href="main.css" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700&display=swap&subset=latin-ext" rel="stylesheet">
</head>
<body>
<!------------------------------| NAVIGATION |---------------------------------------->
<nav>
<a href="index.html"><img class="AXA_logo nav_item" src="img/axa-logo.png" alt="AXA logo" style="display: none"></a>
<ul>
<li class="nav_item"><a href="index.html">RESEARCH</a></li>
<li class="nav_item"><a href="team.html">OUR TEAM</a></li>
</ul>
</nav>
<!------------------------------| HEADER |---------------------------------------->
<header class="title">
<a href="index.html"><img src="img/left-arrow.svg" alt="back button"></a>
<h1>Computer Vision</h1>
</header>
<!------------------------------| LISTE DES PAPIERS |---------------------------------------->
<section class="papers">
<article class="">
<a href="./comp-vis/papers/IGARSS23-FewShot-ObjDet.pdf">
<img src="img/pdf.svg">
<h2>Improving Few-Shot Object Detection With Object Part Proposals</h2>
</a>
<p class="authors">Chevalley A., Tomoiagă C., Detyniecki M., Rußwurm M., Tuia D. <span>2023</span></p>
<p class="description">2023 International Geoscience and Remote Sensing Symposium</p>
</article>
<article class="">
<a href="https://doi.org/10.1109/ICDAR.2019.00084">
<img src="img/link.svg">
<h2>Field Typing for Improved Recognition on Heterogeneous Handwritten Forms</h2>
</a>
<a href="https://arxiv.org/abs/1909.10120" style="display:inline"><small>[arXiv]</small></a>
<a href="https://github.com/cipri-tom/type-aware-crnn" style="display:inline"><small>[code]</small></a>
<a href="https://drive.google.com/uc?id=1upVeN8a_sHT67rYupPs64KyIKC9_qYdO&export=download" style="display:inline"><small>[dataset]</small></a>
<p class="authors">Tomoiagă C., Feng P., Salzmann M., Jayet P. <span>2019</span></p>
<p class="description">2019 International Conference on Document Analysis and Recognition (ICDAR)</p>
</article>
</section>
<!------------------------------| TEAM |---------------------------------------->
<section class="team">
<h1>The team</h1>
<!-- contact -->
<div class="member">
<img src="img/team/ciprian.jpg">
<div>
<h2>Ciprian Tomoiagă</h2>
<p>Research Scientist Expert</p>
<a href="mailto:ciprian.tomoiaga@axa.com">Contact me</a>
</div>
</div>
<!-- contact -->
<div class="member">
<img src="img/team/marcin.jpeg">
<div>
<h2>Marcin Detyniecki</h2>
<p>Head of Research and Development</p>
<a href="mailto:marcin.detyniecki@axa.com">Contact me</a>
</div>
</div>
</section>
<!------------------------------| FOOTER |---------------------------------------->
<footer>
<div>
<a href="#">
<h3>Follow Us</h3>
</a>
</div>
<div>
<h3>About Us</h3>
<p>We are a global research team working for AXA. We strongly believe that research will make the world a better place for tommorow.</p>
<img src="img/paris-illustration.png">
</div>
</footer>
</body>
</html>