-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
736 lines (566 loc) · 31 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=800">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org">
<style>
/* 隐藏 Webkit 浏览器 (如 Chrome, Safari) 中的默认箭头 */
summary::-webkit-details-marker {
display: none;
}
/* 隐藏 Firefox 中的默认箭头 */
summary {
list-style: none;
}
/* 其他浏览器的兼容处理 */
details summary::-ms-expand {
display: none;
}
summary::before {
content: '▲'; /* 定义箭头符号,可以使用其他符号或图标 */
display: inline-block;
font-size: 20px; /* 调整箭头大小 */
transition: transform 0.3s; /* 添加动画效果 */
margin-right: 10px; /* 调整箭头和文本之间的距离 */
}
details[open] summary::before {
transform: rotate(180deg); /* 打开时旋转箭头 */
}
</style>
<style type="text/css">
/* Color scheme stolen from Sergey Karayev */
a {
color: #1772d0;
text-decoration: none;
}
a:focus, a:hover {
color: #f09228;
text-decoration: none;
}
body, td, th, tr, p, a {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 14px
}
.hp-photo {
width: 240px;
height: 240px;
border-radius: 240px;
-webkit-border-radius: 240px;
-moz-border-radius: 240px;
}
strong {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 14px;
}
heading {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 24px;
}
papertitle {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 15px;
font-weight: 700
}
name {
font-family: 'Lato', Verdana, Helvetica, sans-serif;
font-size: 32px;
}
.one {
width: 160px;
height: 160px;
position: relative;
}
.two {
width: 160px;
height: 160px;
position: absolute;
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}
.fade {
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}
span.highlight {
background-color: #ffffd0;
}
</style>
<title>Guangchi Fang's Homepage</title>
<link rel="icon" type="image/jpg" href="./imgs/polyu_icon.png">
<link rel="stylesheet" href="./static/css/dics.original.css">
<script src="./static/js/event_handler.js"></script>
<script src="./static/js/dics.original.js"></script>
</head>
<body>
<table width="800" border="0" align="center" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<!--SECTION 1 -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="68%" valign="middle">
<p align="center">
<name>Guangchi Fang 方广驰</name>
</p>
<p align="justify">
<!-- Hey, I'm Guangchi, a passionate explorer of 3D vision research. -->
<!-- Currently, I'm a first-year Ph.D. student at The Hong Kong Polytechnic University. I earned my master's and bachelor's degrees from Sun Yat-sen University and the University of Electronic Science and Technology of China, respectively. -->
Interested in 3D vision, particularly for 3D data processing inlcuding point cloud and neural representation.
<!-- I am interested in 3D vision and deep learning. Currently, I focus on 3D data processing, -->
<!-- typically for point cloud and neural representation. -->
<!-- </br></br>-->
<!-- In this summer (July - Oct 2019), I was a research intern at the Augumented Reality team of <a href="http://www.a9.com/">Amazon</a> (Palo Alto, CA).-->
<!-- In my M.Phil study, I interned at <a href="https://www.astri.org/">Hong Kong Applied Science and Technology Research Institute</a>.-->
<!-- In my undergraduate study, I was an exchange student at <a href="http://www.upv.es/">Universitat Politècnica de València</a> (Valencia, Spain).-->
</br>
</p>
<p align="center">
<a href="mailto:[email protected]">Email</a> /
<a href="https://github.com/fatPeter"> Github </a> /
<a href="https://scholar.google.com/citations?user=Jc1P0bcAAAAJ&hl=zh-CN">Google Scholar</a>
<!-- <a href="https://www.youtube.com/channel/UCaN36zlgHCvamlefa9mX8vg"> YouTube </a> -->
<!--
<a href="https://twitter.com/guangchi_fang"> Twitter </a> /
<a href="https://www.youtube.com/channel/UCaN36zlgHCvamlefa9mX8vg"> YouTube </a>
-->
<!--
<a href="https://www.zhihu.com/people/hu-qing-yong"> Blog </a> /
<a href="https://www.linkedin.com/in/qingyong-hu-b18061171/"> LinkedIn </a> /
<a href="https://twitter.com/home"> Twitter </a> /
<a href="https://scholar.google.com/citations?user=yboFNHEAAAAJ&hl=en">Google Scholar</a>
-->
</p>
</td>
<td align="right">
<a href="assets/mobilenerf/view_forwardfacing.html?obj=selfie">
<img src="./imgs/selfie1.png"
onmouseover="this.src='./imgs/selfie2.png'"
onmouseout="this.src='./imgs/selfie1.png'"
style="width: 135;"/>
</a>
</td>
<!-- <td align="right"><img class="hp-photo" src="./imgs/selfie.png" style="width: 240;"></td> -->
</tr>
</tbody>
</table>
<!--SECTION 2 -->
<!-- <table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td>
<heading>Research</heading>
<p align="justify">
I am interested in 3D vision and deep learning. Currently, I focus on 3D data processing,
typically for point cloud and neural representation.
</p>
</td>
</tr>
</tbody>
</table> -->
<!--SECTION 3 -->
<!--
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td>
<heading>News</heading>
<p><strong>[2022.03.27]</strong> Our <a href="https://link.springer.com/article/10.1007/s11263-022-01632-6">3DPointCaps++</a> has been accepted to IJCV 2022!
<p><strong>[2022.03.02]</strong> Our <a href="https://arxiv.org/abs/2203.09931">3DAC</a> has been accepted to CVPR 2022!
</td>
</tr>
</tbody>
</table>
-->
<!--SECTION 4 -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td>
<heading>Recent Work</heading>
</td>
</tr>
</tbody>
</table>
<!--SECTION 5 -->
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/mini_splatting2/small_sparse2.png" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<!-- <p><a href="https://fatpeter.github.io/">
<papertitle>Mini-Splatting2: Building 360 Scenes within Minutes via Aggressive Gaussian Densification
</papertitle>
</a>
<br><strong>G. Fang</strong> and B. Wang<br>
<a href="https://arxiv.org/pdf/2403.14166.pdf">ArXiv</a> /
<a href="https://github.com/fatPeter/mini-splatting"><font >Code</font></a> -->
<p><a href="https://arxiv.org/pdf/2411.12788">
<papertitle>Mini-Splatting2: Building 360 Scenes within Minutes
</papertitle>
</a>
<br><strong>G. Fang</strong> and B. Wang<br>
<a href="https://arxiv.org/pdf/2411.12788">ArXiv</a> /
<a href="https://github.com/fatPeter/mini-splatting2"><font >Code</font></a>
<p align="justify" style="font-size:13px"> Dense point cloud reconstruction through Gaussian Splatting enables fast scene optimization within minutes.
</p>
<p></p>
</td>
</tr>
</table>
<br>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered ">
<div class="column is-full-width">
<div class="container">
<div class="b-dics" style="width: 700px; font-weight: 600; transform: translateX(7%)">
<img src="./imgs/mini_splatting2/mvs.png" alt="MVS">
<img src="./imgs/mini_splatting2/3k_s.png" alt="Mini-Splatting2 (3K iter) ">
<img src="./imgs/mini_splatting2/8k.png" alt="Mini-Splatting2 (8K iter)">
</div>
</div>
<p style="text-align: center; font-size: 13px;"> Direct visualization of MVS points and Gaussian centers in MeshLab.</p>
</div>
</div>
</div>
</section>
<br>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered ">
<div class="column is-full-width">
<div class="container">
<div class="b-dics" style="width: 800px; font-weight: 600; transform: translateX(0%)">
<img src="./imgs/mini_splatting2/training_yellow.jpg">
</div>
</div>
<p style="text-align: center; font-size: 13px;">Training progress of 'bicycle' with a single RTX 3090 (3 minutes is sufficient for data loading, training and saving).</p>
</div>
</div>
</div>
</section>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/mini_splatting/ms.jpg" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<p><a href="https://arxiv.org/pdf/2403.14166.pdf">
<papertitle>Mini-Splatting: Representing Scenes with a Constrained Number of Gaussians
</papertitle>
</a>
<br><strong>G. Fang</strong> and B. Wang<br>
<em>ECCV 2024 </em><br>
<a href="https://arxiv.org/pdf/2403.14166.pdf">ArXiv</a> /
<a href="https://github.com/fatPeter/mini-splatting"><font >Code</font></a>
<p align="justify" style="font-size:13px">Point cloud analysis in the context of Gaussian Splatting. Reorganizing the spatial distribution of Gaussians to construct an efficient scene representation.
</p>
<p></p>
</td>
</tr>
</table>
<!-- <br>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered ">
<div class="column is-full-width">
<div class="container">
<div class="b-dics" style="width: 460px; font-weight: 600; transform: translateX(36%)">
<img src="./imgs/mini_splatting/gs.jpg" alt="3DGS">
<img src="./imgs/mini_splatting/ms_d.jpg" alt="Mini-Splatting-D">
<img src="./imgs/mini_splatting/ms.jpg" alt="Mini-Splatting">
</div>
</div>
<p style="text-align: center; font-size: 13px;">Check out the teaser for details of spatial distribution.</p>
</div>
</div>
</div>
</section>
<br>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered ">
<div class="column is-full-width">
<div class="container">
<div class="b-dics" style="width: 800px; font-weight: 600; transform: translateX(0%)">
<img src="./imgs/mini_splatting/quant.png">
</div>
</div>
<p style="text-align: center; font-size: 13px;">Quantitative evaluation. All experimental settings are consistent with the original 3DGS implementation.</p>
</div>
</div>
</div>
</section> -->
<br>
<details>
<summary>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<!-- <tr>
<td> -->
<heading>Publications</heading>
<!-- </td>
</tr> -->
</tbody>
</table>
</summary>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/ACRF/teaser.jpg" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<p><a href="https://openreview.net/pdf?id=POFrdKvpea">
<papertitle>ACRF: Compressing Explicit Neural Radiance Fields via Attribute Compression
</papertitle>
</a>
<br><strong>G. Fang</strong>, Q. Hu, L. Wang, Y. Guo<br>
<em>ICLR 2024 </em><br>
<a href="https://openreview.net/pdf?id=POFrdKvpea">Paper</a> /
<a href="https://github.com/fatPeter/ACRF"><font >Code</font></a>
<p align="justify" style="font-size:13px">Compression of neural radiance fields via point cloud processing and 3D compression techniques.</p>
<p></p>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/3DAC/3DAC.png" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<p><a href="https://arxiv.org/abs/2203.09931">
<papertitle>3DAC: Learning Attribute Compression for Point Clouds
</papertitle>
</a>
<br><strong>G. Fang</strong>, Q. Hu, H. Wang, Y. Xu, Y. Guo<br>
<em>CVPR 2022 </em><br>
<a href="https://arxiv.org/abs/2203.09931">Paper</a> /
<a href="https://github.com/fatPeter/ThreeDAC"><font >Code</font></a> /
<!-- <a href="https://www.youtube.com/watch?v=QTkkI0AyvLM&t=205s">Presentation</a> / -->
<a href="imgs/3DAC/3DAC_cvpr_poster.pdf">Poster</a>
<p align="justify" style="font-size:13px">Point cloud attribute compression leveraging deep entropy coding.</p>
<p></p>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/3DPointCaps.png" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<p><a href="https://link.springer.com/article/10.1007/s11263-022-01632-6">
<papertitle>3DPointCaps++: Learning 3D Representations with Capsule Networks
</papertitle>
</a>
<br>Y. Zhao*, <strong>G. Fang*</strong>, Y. Guo, L. Guibas, F. Tombari, T. Birdal<br>
<em>IJCV 2022 </em> (* indicates equal contribution) <br>
<a href="https://link.springer.com/article/10.1007/s11263-022-01632-6">Paper</a> /
<a href="https://github.com/yongheng1991/3D-point-capsule-networks/tree/plus"><font >Code</font></a>
<!-- <a href="https://www.youtube.com/watch?v=04_Be2v6vYI"><font >Demo</font></a> -->
<p align="justify" style="font-size:13px">
Rigid and non-rigid point cloud representation learning based on capsule.
<p></p>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/SQN_2.gif" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<p><a href="https://arxiv.org/abs/2104.04891">
<papertitle>SQN: Weakly-Supervised Semantic Segmentation of Large-Scale 3D Point Clouds
</papertitle>
</a>
<br>Q. Hu, B. Yang, <strong>G. Fang</strong>, A. Leonardis, Y. Guo, N. Trigoni, A.
Markham<br>
<em> ECCV 2022</em>
<br>
<!--<font color="red"><strong>..</strong></font><br>-->
<a href="https://arxiv.org/abs/2104.04891">ArXiv</a> /
<a href="https://github.com/QingyongHu/SQN"><font >Code</font></a>
<!-- <a href="https://www.youtube.com/watch?v=Q6wICSRRw3s&t=4s">Demo</a> /
<a href="https://www.youtube.com/watch?v=N0UAeY31msY&t=4s">Annotation</a> -->
<!--<iframe src="https://ghbtns.com/github-btn.html?user=QingyongHu&repo=SQN&type=star&count=true&size=small"
frameborder="0" scrolling="0" width="120px" height="20px"></iframe>-->
<p align="justify" style="font-size:13px">
Weakly supervised point cloud segmentation through point query.</p>
<p></p>
</td>
</tr>
</table>
</details>
<!--SECTION 4 -->
<!-- <table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td>
<heading>Publications</heading>
</td>
</tr>
</tbody>
</table> -->
<!--SECTION 6 -->
<!--
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td>
<heading>Individual Project</heading>
</td>
</tr>
</tbody>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/project/urban_rec/demo.gif" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<p>
<papertitle>Lidar-based Urban Scene Reconstruction</papertitle><br>
<a href="https://www.youtube.com/watch?v=-wwTcr_4UVE&t=4s">Presentation</a><br>
<p align="justify" style="font-size:13px">Lidar-based Urban Scene Reconstruction. A simple pipeline includes plane segmentation and multi-frame point clouds registration.</p>
<p></p>
</td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="20">
<tbody>
<tr>
<td width="20%"><img src="./imgs/project/seed_filling/demo.gif" alt="PontTuset" width="180"
style="border-style: none"></td>
<td width="80%" valign="top">
<p>
<papertitle>Tracking with Seed Filling
</papertitle>
</a><br>
<a href="https://github.com/fatPeter/Misc/tree/main/projects/Tracking_with_Seed_Filling"><font >Code</font></a> /
<a href="https://www.youtube.com/watch?v=rGaUNnhVKno">Demo</a>
<p align="justify" style="font-size:13px">Tracking with seed filling on a laptop. The center and the orientation of 2D objects are marked.</p>
<p></p>
</td>
</tr>
</table>
-->
<!--SECTION 6 -->
<!--
<table width="100%" align="center" border="0" cellspacing="0"
cellpadding="20">
<tbody>
<tr>
<td>
<heading>Teaching</heading>
<p><strong>Fall, 2020</strong>:   
C programming
</a> (Sun Yat-sen University). </p>
</td>
</tr>
</tbody>
</table>
-->
<!--
<table width="100%" align="center" border="0" cellspacing="0"
cellpadding="20">
<tr>
<td width="100%" valign="middle">
<heading>Reviewer Services</heading>
<ul style="list-style-type:disc;">
<li>
<a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=34">
IEEE Transactions on Pattern Analysis and Machine
Intelligence (IEEE TPAMI)
<li>
<a href="https://www.springer.com/journal/11263">
International Journal of Computer Vision (IJCV)
<li>
<a href="https://iclr.cc/">
International Conference on Learning Representations
(ICLR)
<li>
<a href="https://icml.cc/">
International Conference on Machine Learning
(ICML)
<li>
<a href="https://nips.cc/">
Conference on Neural Information Processing Systems
(NeurIPS)
<li>
<a href="http://cvpr2021.thecvf.com/">
IEEE Conference on Computer Vision and Pattern
Recognition (CVPR)
<li>
<a href="http://iccv2021.thecvf.com/home">
International Conference on Computer Vision (ICCV)
<li>
<a href="http://iccv2021.thecvf.com/home">
European Conference on Computer Vision (ECCV)
<li>
<a href="http://www.icra2021.org/">
International Conference on Robotics and
Automation (ICRA)
<li>
<a href="http://www.ieee-ras.org/conferences-workshops/financially-co-sponsored/iros">
IEEE/RSJ International Conference on Intelligent
Robots
and Systems (IROS)
<li><a href="https://bmvc2020.github.io/"> British
Machine Vision Conference (BMVC)
<li>
<a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=83">
IEEE Transactions on Image Processing (IEEE TIP)
<li>
<a href="https://www.sciencedirect.com/journal/information-fusion">
IEEE Transactions on Circuits and Systems for Video
Technology (IEEE TCSVT)
<li>
<a href="https://www.journals.elsevier.com/computers-and-graphics">
Computers & Graphics (C&G)
<li>
<a href="https://www.sciencedirect.com/journal/information-fusion">
Information Fusion
</ul>
</td>
</tr>
</table>
-->
<!--SECTION 9 -->
<!--
<div style="clear:both;">
<p align="right"><font size="2">
<script type="text/javascript" id="clustrmaps"
src="//clustrmaps.com/map_v2.js?d=ru3r-7vObvqOxw9wm0ysc1pDpDmMgD88xA_cBZbJX_0&cl=ffffff&w=a"></script>
</font></p>
<br/>
</div>
-->
<!--SECTION 10 -->
<table width="100%" align="center" border="0" cellspacing="0"
cellpadding="20">
<tbody>
<tr>
<td><br>
<!--<p align="right"><font size="3">Erdös = ? </font><br> -->
<p align="right"><font size="2"> <a
href="http://www.cs.berkeley.edu/~barron/">Thanks.</a></font>
</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>