-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1226 lines (1095 loc) · 54.6 KB
/
Copy pathindex.html
File metadata and controls
1226 lines (1095 loc) · 54.6 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">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-48J3PYKGQ6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-48J3PYKGQ6');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>PLAN Lab | Perception AND LANguage</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;800&display=swap" rel="stylesheet">
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"></noscript>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" type="image/svg+xml" href="assets/images/favicon.svg">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
<script src="assets/js/content.js" defer></script>
<script src="assets/js/index.js" defer></script>
<style>
/* Compact floating PLAN@CVPR'26 sign on the homepage hero */
.cvpr-float-sign {
position: absolute;
top: clamp(92px, 10vh, 128px);
right: clamp(18px, 4vw, 72px);
z-index: 1000;
width: min(292px, calc(100vw - 36px));
display: block;
text-decoration: none;
color: #ffffff;
pointer-events: auto;
}
.cvpr-float-sign::before {
content: "";
position: absolute;
inset: -12px;
border-radius: 28px;
background:
radial-gradient(circle at 70% 20%, rgba(157, 98, 255, 0.82), transparent 42%),
radial-gradient(circle at 18% 82%, rgba(0, 211, 255, 0.34), transparent 48%);
filter: blur(18px);
opacity: 0.82;
transform: rotate(1.2deg);
pointer-events: none;
z-index: -1;
}
.cvpr-float-card {
position: relative;
overflow: hidden;
border-radius: 22px;
padding: 15px 16px 14px;
background:
radial-gradient(circle at 92% -18%, rgba(255, 255, 255, 0.50), transparent 30%),
radial-gradient(circle at 0% 100%, rgba(19, 41, 75, 0.60), transparent 45%),
linear-gradient(135deg, rgba(104, 67, 255, 0.98), rgba(168, 85, 247, 0.94) 48%, rgba(19, 41, 75, 0.82));
border: 1px solid rgba(255, 255, 255, 0.42);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.10) inset,
0 16px 46px rgba(139, 92, 246, 0.42),
0 20px 58px rgba(0, 0, 0, 0.30);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
transform: rotate(1.2deg);
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.cvpr-float-sign:hover::before,
.cvpr-float-sign:focus-visible::before {
opacity: 1;
filter: blur(22px);
}
.cvpr-float-sign:hover .cvpr-float-card,
.cvpr-float-sign:focus-visible .cvpr-float-card {
transform: translateY(-3px) rotate(0deg);
border-color: rgba(255, 255, 255, 0.58);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.14) inset,
0 18px 58px rgba(168, 85, 247, 0.58),
0 25px 72px rgba(0, 0, 0, 0.34);
}
.cvpr-float-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0.20;
background-image:
linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
background-size: 20px 20px;
pointer-events: none;
}
.cvpr-float-card::after {
content: "";
position: absolute;
top: -45%;
left: -35%;
width: 48%;
height: 190%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
transform: rotate(25deg);
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.cvpr-float-sign::before {
animation: cvprGlowPulse 2.8s ease-in-out infinite;
}
.cvpr-float-card::after {
animation: cvprSheen 4.6s ease-in-out infinite;
}
}
@keyframes cvprGlowPulse {
0%, 100% { opacity: 0.58; transform: rotate(1.2deg) scale(0.98); }
50% { opacity: 0.98; transform: rotate(1.2deg) scale(1.04); }
}
@keyframes cvprSheen {
0%, 52% { transform: translateX(0) rotate(25deg); opacity: 0; }
62% { opacity: 0.65; }
82%, 100% { transform: translateX(430%) rotate(25deg); opacity: 0; }
}
.cvpr-float-topline {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 8px;
}
.cvpr-float-kicker {
display: inline-flex;
align-items: center;
gap: 7px;
font-size: 0.72rem;
font-weight: 900;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.92);
}
.cvpr-float-count {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
padding: 6px 9px;
border-radius: 999px;
font-size: 0.72rem;
font-weight: 900;
line-height: 1;
color: #24113f;
background: linear-gradient(135deg, #ffffff, #eadcff);
box-shadow: 0 8px 22px rgba(84, 43, 180, 0.28);
}
.cvpr-float-title {
position: relative;
margin: 0;
font-size: 1.14rem;
line-height: 1.08;
letter-spacing: -0.035em;
font-weight: 900;
color: #ffffff;
}
.cvpr-float-ticker {
position: relative;
display: flex;
align-items: center;
gap: 7px;
height: 18px;
margin-top: 8px;
padding: 0 7px;
border-radius: 999px;
overflow: hidden;
background: rgba(255,255,255,0.13);
border: 1px solid rgba(255,255,255,0.15);
color: rgba(255,255,255,0.90);
}
.cvpr-ticker-label {
flex: 0 0 auto;
font-size: 0.60rem;
font-weight: 900;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255,255,255,0.66);
}
.cvpr-paper-cycle {
position: relative;
flex: 1 1 auto;
height: 18px;
min-width: 0;
font-size: 0.75rem;
font-weight: 900;
line-height: 18px;
white-space: nowrap;
}
.cvpr-paper-cycle span {
position: absolute;
inset: 0;
opacity: 0;
transform: translateY(9px);
animation: cvprPaperTicker 14s infinite;
}
.cvpr-paper-cycle span:nth-child(1) { animation-delay: 0s; }
.cvpr-paper-cycle span:nth-child(2) { animation-delay: 2s; }
.cvpr-paper-cycle span:nth-child(3) { animation-delay: 4s; }
.cvpr-paper-cycle span:nth-child(4) { animation-delay: 6s; }
.cvpr-paper-cycle span:nth-child(5) { animation-delay: 8s; }
.cvpr-paper-cycle span:nth-child(6) { animation-delay: 10s; }
.cvpr-paper-cycle span:nth-child(7) { animation-delay: 12s; }
@keyframes cvprPaperTicker {
0%, 10% { opacity: 0; transform: translateY(9px); }
13%, 24% { opacity: 1; transform: translateY(0); }
28%, 100% { opacity: 0; transform: translateY(-9px); }
}
.cvpr-float-meta {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-top: 10px;
font-size: 0.79rem;
line-height: 1.25;
color: rgba(255, 255, 255, 0.86);
}
.cvpr-float-cta {
flex: 0 0 auto;
color: #ffffff;
font-weight: 900;
}
.cvpr-float-hover-panel {
position: absolute;
top: calc(100% + 10px);
right: 0;
width: min(430px, calc(100vw - 36px));
padding: 11px;
border-radius: 18px;
background:
radial-gradient(circle at 88% 0%, rgba(168, 85, 247, 0.20), transparent 32%),
linear-gradient(135deg, rgba(19, 34, 91, 0.96), rgba(31, 26, 62, 0.94));
border: 1px solid rgba(255,255,255,0.24);
box-shadow: 0 18px 56px rgba(0,0,0,0.34), 0 0 34px rgba(168,85,247,0.22);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
opacity: 0;
pointer-events: none;
transform: translateY(-6px) scale(0.985);
transition: opacity 0.18s ease, transform 0.18s ease;
}
.cvpr-float-sign:hover .cvpr-float-hover-panel,
.cvpr-float-sign:focus-visible .cvpr-float-hover-panel {
opacity: 1;
pointer-events: auto;
transform: translateY(0) scale(1);
}
.cvpr-hover-copy {
margin: 0 0 8px;
color: rgba(255,255,255,0.88);
font-size: 0.72rem;
line-height: 1.28;
font-weight: 700;
}
.cvpr-hover-schedule {
display: grid;
gap: 5px;
}
.cvpr-hover-row {
display: grid;
grid-template-columns: 94px 1fr auto;
gap: 8px;
align-items: center;
min-height: 24px;
padding: 5px 7px;
border-radius: 11px;
background: rgba(255,255,255,0.075);
border: 1px solid rgba(255,255,255,0.08);
}
.cvpr-hover-paper {
color: #fff;
font-size: 0.67rem;
font-weight: 900;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.cvpr-hover-time {
color: rgba(255,255,255,0.78);
font-size: 0.64rem;
line-height: 1.12;
white-space: nowrap;
}
.cvpr-hover-loc {
color: #271442;
font-size: 0.62rem;
font-weight: 900;
padding: 4px 6px;
border-radius: 999px;
background: linear-gradient(135deg, #ffffff, #eadcff);
white-space: nowrap;
}
.cvpr-hover-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-top: 8px;
color: rgba(255,255,255,0.62);
font-size: 0.60rem;
line-height: 1.2;
}
.cvpr-hover-open {
color: #fff;
font-weight: 900;
white-space: nowrap;
}
@media (max-width: 1100px) {
.cvpr-float-sign {
top: 96px;
right: 18px;
width: 262px;
}
.cvpr-float-title {
font-size: 1.02rem;
}
.cvpr-float-meta {
font-size: 0.73rem;
}
.cvpr-float-hover-panel {
width: min(386px, calc(100vw - 36px));
}
.cvpr-hover-row {
grid-template-columns: 86px 1fr auto;
}
}
@media (max-width: 760px) {
.cvpr-float-sign {
position: absolute;
top: 92px;
right: 12px;
left: auto;
width: 218px;
}
.cvpr-float-card {
padding: 12px 13px;
border-radius: 18px;
transform: none;
}
.cvpr-float-kicker {
font-size: 0.63rem;
}
.cvpr-float-count {
padding: 5px 7px;
font-size: 0.63rem;
}
.cvpr-float-title {
font-size: 0.90rem;
}
.cvpr-float-ticker {
height: 17px;
margin-top: 6px;
}
.cvpr-ticker-label {
display: none;
}
.cvpr-paper-cycle {
height: 17px;
font-size: 0.64rem;
line-height: 17px;
}
.cvpr-float-meta {
margin-top: 8px;
font-size: 0.66rem;
}
.cvpr-float-hover-panel {
display: none;
}
}
@media (max-width: 480px) {
.cvpr-float-sign {
top: 84px;
right: 10px;
width: 190px;
}
.cvpr-float-meta span:first-child {
display: inline;
}
}
</style>
</head>
<body class="page-plan">
<nav class="glass-nav">
<a href="index.html#hero" class="nav-logo">
<img src="assets/images/logo.svg" alt="PLAN Lab Logo">
</a>
<div class="nav-menu">
<a href="publications.html" class="nav-item" aria-label="Publications">
<i class="fa-solid fa-layer-group"></i>
<span>Publications</span>
</a>
<a href="index.html#team" class="nav-item" aria-label="Team">
<i class="fa-solid fa-users"></i>
<span>Team</span>
</a>
<a href="game.html" class="nav-item" aria-label="PLAN Cubes Game">
<i class="fa-solid fa-cube"></i>
<span>PLAN Cubes</span>
</a>
<a href="index.html#partners" class="nav-item" aria-label="Partner with Us">
<i class="fa-solid fa-circle-nodes"></i>
<span>Partner with Us</span>
</a>
<a href="index.html#contact" class="nav-item" aria-label="Join Us">
<i class="fa-solid fa-paper-plane"></i>
<span>Join Us</span>
</a>
</div>
</nav>
<div id="canvas-container"></div>
<div id="cube-layer"></div>
<div class="controls-ui">
<label for="cubeSize">Cube Size</label>
<input type="range" id="cubeSize" min="0.5" max="2.5" step="0.1" value="1.2">
</div>
<section id="hero" class="hero">
<h1>
<span class="plan-trigger">PLAN</span> Lab
</h1>
<p> The Perception and LANguage (PLAN) Lab develops multimodal generative models that perceive, generate, and reason across language, vision, video, and 3D worlds.
Our research spans vision-language models, 2D/3D generative models, and reasoning-centered methods for grounding AI in visual, physical, and interactive environments.</p>
<a class="cvpr-float-sign" href="cvpr2026.html" aria-label="Explore PLAN Lab at CVPR 2026: 7 papers, poster schedule, project links, and presentation times">
<div class="cvpr-float-card">
<div class="cvpr-float-topline">
<span class="cvpr-float-kicker"><i class="fa-solid fa-location-dot"></i> CVPR'26</span>
<span class="cvpr-float-count">7 papers</span>
</div>
<h2 class="cvpr-float-title">PLAN Lab in Denver</h2>
<div class="cvpr-float-ticker" aria-label="Cycling through PLAN Lab CVPR 2026 paper names">
<span class="cvpr-ticker-label"></span>
<span class="cvpr-paper-cycle">
<span>PHANTOM</span>
<span>Part²GS</span>
<span>RewardFlow</span>
<span>PALM</span>
<span>PyraTok</span>
<span>3D-VCD</span>
<span>HalluSegBench (Findings)</span>
</span>
</div>
<div class="cvpr-float-meta">
<span>Explore our papers</span>
<span class="cvpr-float-cta">Click for full page →</span>
</div>
</div>
<div class="cvpr-float-hover-panel" aria-hidden="true">
<div class="cvpr-hover-schedule" aria-label="Compact PLAN Lab CVPR 2026 poster schedule">
<div class="cvpr-hover-row"><span class="cvpr-hover-paper">PHANTOM</span><span class="cvpr-hover-time">Fri Jun 5 · 16:00–18:00</span><span class="cvpr-hover-loc">ExHall A · #372</span></div>
<div class="cvpr-hover-row"><span class="cvpr-hover-paper">Part²GS</span><span class="cvpr-hover-time">Sat Jun 6 · 11:45–13:45</span><span class="cvpr-hover-loc">ExHall F · #435</span></div>
<div class="cvpr-hover-row"><span class="cvpr-hover-paper">RewardFlow</span><span class="cvpr-hover-time">Sat Jun 6 · 11:45–13:45</span><span class="cvpr-hover-loc">ExHall F · #543</span></div>
<div class="cvpr-hover-row"><span class="cvpr-hover-paper">PALM</span><span class="cvpr-hover-time">Sat Jun 6 · 16:45–18:45</span><span class="cvpr-hover-loc">ExHall A · #622</span></div>
<div class="cvpr-hover-row"><span class="cvpr-hover-paper">HalluSegBench</span><span class="cvpr-hover-time">Sun Jun 7 · 07:30–09:00</span><span class="cvpr-hover-loc">ExHall A · #81</span></div>
<div class="cvpr-hover-row"><span class="cvpr-hover-paper">PyraTok</span><span class="cvpr-hover-time">Sun Jun 7 · 15:30–17:30</span><span class="cvpr-hover-loc">ExHall A · #161</span></div>
<div class="cvpr-hover-row"><span class="cvpr-hover-paper">3D-VCD</span><span class="cvpr-hover-time">Sun Jun 7 · 15:30–17:30</span><span class="cvpr-hover-loc">ExHall A · #373</span></div>
</div>
<div class="cvpr-hover-footer">
<span>Denver local time</span>
<span class="cvpr-hover-open">Open full page →</span>
</div>
</div>
</a>
<div class="scroll-hint">
<span class="hint-text">Scroll to Explore</span>
<i class="fa-solid fa-arrow-down"></i>
</div>
</section>
<section id="publications">
<div class="cards-wrap">
<div class="track-cards">
<div class="intro-text-block">
<h2>Explore<br>Our<br>Latest<br>Research</h2>
</div>
<div class="view-all-wrapper" onclick="window.location.href='publications.html'">
<div class="view-all-inner">
<div class="view-all-content">
<h3>View All</h3>
<p>Publications</p>
<div class="icon-circle">
<i class="fa-solid fa-arrow-right"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="team">
<div class="team-container">
<h2 class="section-title">Our Team</h2>
<div class="team-category">
<h3 class="category-title">Principal Investigator</h3>
<div class="team-grid" id="team-pi-grid"></div>
</div>
<div class="team-category">
<h3 class="category-title">Current Students</h3>
<div class="team-grid" id="team-current-grid"></div>
</div>
<div class="team-category">
<h3 class="category-title">Alumni</h3>
<div class="team-grid" id="team-alumni-grid"></div>
</div>
</div>
</section>
<section id="partners">
<div class="partners-container">
<h3 class="section-title">Drive AI Innovation</h3>
<div class="funding-cta">
<p>Partner with us to accelerate advances in multimodal perception and generative modeling. Connect with exceptional student talent to build next-generation intelligent systems.
</p>
<a href="mailto:lourent2@illinois.edu" class="btn-primary">
<i class="fa-solid fa-envelope" style="margin-right:8px;"></i> Partner with Us
</a>
</div>
</div>
<div class="sponsors-panel">
<h2>Current Sponsors and Partners</h2>
<div class="logo-grid">
<img src="https://upload.wikimedia.org/wikipedia/commons/2/2f/Google_2015_logo.svg"
alt="Google" class="logo-item" title="Google Research" loading="lazy">
<img src="https://upload.wikimedia.org/wikipedia/commons/a/a9/Amazon_logo.svg"
alt="Amazon" class="logo-item" title="Amazon Science" loading="lazy">
<img src="https://upload.wikimedia.org/wikipedia/commons/c/ce/DARPA_Logo_2010.png"
alt="DARPA" class="logo-item" title="Defense Advanced Research Projects Agency" loading="lazy">
<img src="https://www.onr.navy.mil/themes/custom/onr/logo.png"
alt="Office of Naval Research" class="logo-item" title="Office of Naval Research" loading="lazy">
<img src="https://upload.wikimedia.org/wikipedia/commons/f/fd/Lawrence_Livermore_National_Laboratory_logo.svg"
alt="Lawrence Livermore National Laboratory" class="logo-item" title="Lawrence Livermore National Laboratory" loading="lazy">
</div>
</div>
</section>
<section id="contact">
<div class="join-card">
<div class="carousel-container">
<div class="carousel-track" id="teamCarousel">
<div class="carousel-slide active" role="img" aria-label="Lab Retreat" data-bg="assets/images/group/retreat.jpg"></div>
<div class="carousel-slide" role="img" aria-label="Afrina Ming" data-bg="assets/images/group/Afrina_Ming.jpg"></div>
<div class="carousel-slide" role="img" aria-label="ICCV 2025 Onkar Xinzhuo Ismini" data-bg="assets/images/group/ICCV25_2.jpg"></div>
<div class="carousel-slide" role="img" aria-label="ICCV 2025 Yifan" data-bg="assets/images/group/ICCV25_Yifan.jpg"></div>
<div class="carousel-slide" role="img" aria-label="ICCV 2025" data-bg="assets/images/group/ICCV25.jpg"></div>
<div class="carousel-slide" role="img" aria-label="Joey Amazon" data-bg="assets/images/group/JoeyAmazon.jpg"></div>
<div class="carousel-slide" role="img" aria-label="Meghana Poster VT" data-bg="assets/images/group/MeghanaVT.jpg"></div>
<div class="carousel-slide" role="img" aria-label="Ming Graduation" data-bg="assets/images/group/MingGraduation.jpg"></div>
<div class="carousel-slide" role="img" aria-label="WACV 2024 Muntasir" data-bg="assets/images/group/MuntasirWACV24.jpg"></div>
<div class="carousel-slide" role="img" aria-label="ICCV 2025 2025 Onkar" data-bg="assets/images/group/Onkar.jpg"></div>
<div class="carousel-slide" role="img" aria-label="ICCV 2025 Xinzhuo" data-bg="assets/images/group/Xinzhuo.jpg"></div>
<div class="carousel-slide" role="img" aria-label="NeurIPS 2025 Yifan" data-bg="assets/images/group/YifanNeurIPS25.jpg"></div>
</div>
<div class="carousel-badge">Our Team</div>
</div>
<div class="join-content">
<h2>Join Us</h2>
<p>We are actively recruiting highly motivated students with a strong background in computer vision and multimodal ML (specifically generative modeling, embodied AI, or 3D vision) to build the next generation of models for perception, reasoning, and action.</p>
<p>If you are excited to tackle these research problems within a fast-paced, diverse, and collaborative team, consider joining PLAN Lab.</p>
<div class="btn-group">
<a href="https://grad.illinois.edu/admissions/apply" target="_blank" class="btn-primary">Apply</a>
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLScV-Kl2-LPGVQEjceGXQbasXh3_e6N5xtqIIE56iUHI0yE9bg/viewform" target="_blank" rel="noreferrer" class="btn-outline">Interest Form →</a> -->
</div>
</div>
</div>
<div class="tabs-container" id="tabs-section">
<div class="tab-buttons">
<button class="tab-btn active" onclick="openTab('prospective')">Prospective Students</button>
<button class="tab-btn" onclick="openTab('current')">Current Illinois Students</button>
</div>
<div id="prospective" class="tab-content active">
<p>If you are interested in joining PLAN Lab as a graduate student, please submit a formal application to your preferred University of Illinois Urbana-Champaign graduate program(s) from the list below:</p>
<ul>
<li><strong>Ph.D. or M.S. in Information Sciences</strong> (School of Information Sciences)</li>
<li><strong>Ph.D. in Computer Science</strong> (Siebel School of Computing and Data Science)</li>
<li><strong>Ph.D. in Electrical and Computer Engineering</strong> (ECE Department)</li>
<li><strong>Ph.D. in Informatics</strong> (School of Information Sciences)</li>
</ul>
<p>In your application, please list <strong>Ismini Lourentzou</strong> as a potential advisor. We especially encourage applications from candidates with experience in generative modeling, embodied AI, or 3D vision and a strong research background in computer vision or multimodal machine learning.</p>
<p>Please also complete this <a href="https://docs.google.com/forms/d/e/1FAIpQLScV-Kl2-LPGVQEjceGXQbasXh3_e6N5xtqIIE56iUHI0yE9bg/viewform" target="_blank" rel="noreferrer" style="color:var(--accent-orange)">interest form</a> so that we can better understand your background and research interests. PLAN Lab typically reviews applications in December–February and schedules interviews during this period.</p>
<div class="important-note">
<h4>Important Note</h4>
<p>Please note we may not be able to respond to individual queries via email. If you do not hear back, it may just reflect bandwidth constraints. The best way to be considered is to submit a formal application.</p>
</div>
</div>
<div id="current" class="tab-content">
<p>We welcome current University of Illinois Urbana-Champaign graduate and undergraduate students to join the lab or collaborate on projects. We also recruit through programs such as <a href="https://spin.ncsa.illinois.edu/" target="_blank" rel="noreferrer" style="color:var(--accent-orange)">NCSA SPIN</a> or work with students on their IS/CS/ECE independent studies.</p>
<p>If you are interested, fill out the <a href="https://docs.google.com/forms/d/e/1FAIpQLSdW0eQkGIchpeqhNDg2MYBc0YaMet2yd-ooQBFZQZAQLln9yA/viewform?usp=dialog" target="_blank" rel="noreferrer" style="color:var(--accent-orange)">interest form</a>. We will reach out if there are available positions aligning with your background and research interests. It is expected that you have completed at least one core ML-related course and have experience with PyTorch.</p>
</div>
</div>
<div class="location-container">
<div class="address-box">
<h2 style="margin-bottom:2rem; color:var(--text-primary);"><i class="fa-solid fa-location-dot" style="color:var(--accent-orange); margin-right: 0.5rem;"></i>Addresses</h2>
<div class="address-item"><h4>Lab</h4><p>614 E Daniel St., 5140<br>Champaign, IL 61820</p></div>
<div class="address-item"><h4>Ismini Lourentzou</h4><p>614 E Daniel St., 5146<br>Champaign, IL 61820</p></div>
<a href="https://maps.google.com/?q=614+E+Daniel+St,+Champaign,+IL" target="_blank" style="color:var(--accent-blue); text-decoration:underline;">Open in Google Maps</a>
</div>
<div class="map-box">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3058.627763661642!2d-88.23098522396345!3d40.10808267150654!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x880cd738d8d7b3eb%3A0x6b77c5d336829150!2s614%20E%20Daniel%20St%2C%20Champaign%2C%20IL%2061820!5e0!3m2!1sen!2sus!4v1709230000000!5m2!1sen!2sus" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script>
const initThreeJS = () => {
const container = document.getElementById('canvas-container');
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(40, window.innerWidth / window.innerHeight, 0.1, 100);
camera.position.set(0, 0, 15);
const renderer = new THREE.WebGLRenderer({ alpha: true, antialias: true });
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2));
container.appendChild(renderer.domElement);
const geometry = new THREE.PlaneGeometry(35, 12, 200, 64);
const uniforms = {
uTime: { value: 0 }, uScrollOffset: { value: 0 },
uColorBlue: { value: new THREE.Color('#2d7dd2') },
uColorOrange: { value: new THREE.Color('#FF5F05') },
uColorDark: { value: new THREE.Color('#13294B') }
};
const vertexShader = `
uniform float uTime; uniform float uScrollOffset; varying vec2 vUv; varying float vElevation; varying float vFlow;
void main() {
vUv = uv;
vec3 pos = position;
float t = uTime * 0.3 + uScrollOffset * 0.0005;
float mainWave = sin(pos.x * 0.3 + t) * 2.0;
float ripple = cos(pos.x * 1.5 + t * 1.5) * 0.2;
float twist = sin(pos.x * 0.5 + t) * pos.y * 0.5;
pos.z = mainWave + ripple + twist;
vElevation = pos.z;
vFlow = sin(pos.x * 0.3 + t);
gl_Position = projectionMatrix * modelViewMatrix * vec4(pos, 1.0);
}
`;
const fragmentShader = `
uniform vec3 uColorBlue; uniform vec3 uColorOrange; uniform vec3 uColorDark; varying float vElevation; varying float vFlow;
void main() {
float colorMix = vFlow * 0.5 + 0.5;
vec3 color = mix(uColorBlue, uColorOrange, colorMix);
float depth = smoothstep(-2.0, 3.0, vElevation);
color = mix(uColorDark, color, depth);
color += (colorMix * 0.15);
gl_FragColor = vec4(color, 1.0);
}
`;
const materialMain = new THREE.ShaderMaterial({ vertexShader, fragmentShader, uniforms, side: THREE.DoubleSide });
const meshMain = new THREE.Mesh(geometry, materialMain);
meshMain.rotation.x = -0.3;
scene.add(meshMain);
const materialWire = new THREE.ShaderMaterial({ vertexShader, fragmentShader, uniforms, side: THREE.DoubleSide, wireframe: true, transparent: true, opacity: 0.15 });
const meshWire = new THREE.Mesh(geometry, materialWire);
meshWire.position.z = -1.0;
meshWire.scale.set(1.1, 1.1, 1);
scene.add(meshWire);
const clock = new THREE.Clock();
const animate = () => {
const t = clock.getElapsedTime();
uniforms.uTime.value = t;
uniforms.uScrollOffset.value = window.scrollY;
renderer.render(scene, camera);
requestAnimationFrame(animate);
};
animate();
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
};
if (window.THREE) {
try { initThreeJS(); } catch (e) { console.error(e); }
} else {
console.warn('[PLAN] THREE.js not available; skipping background.');
}
if (window.gsap && window.ScrollTrigger) {
gsap.registerPlugin(ScrollTrigger);
ScrollTrigger.create({
start: "top -100",
end: 99999,
toggleClass: { className: "scrolled-nav", targets: ".glass-nav" }
});
} else {
console.warn('[PLAN] GSAP/ScrollTrigger not available; skipping scroll effects.');
}
// ----- GSAP HORIZONTAL SCROLL SETUP (DISABLE ON MOBILE) -----
const track = document.querySelector('.track-cards');
let scrollTween = null;
function setupHorizontalScroll(force) {
if (!track || !window.gsap || !window.ScrollTrigger) return;
const isMobile = window.innerWidth < 900;
function killCardTriggers() {
ScrollTrigger.getAll().forEach(t => {
const vars = t.vars || {};
if (vars.containerAnimation && vars.trigger && vars.trigger.classList && vars.trigger.classList.contains('vid-card')) {
t.kill();
}
});
}
// On mobile: kill any existing pinned animation and clear transforms
if (isMobile) {
if (scrollTween) {
if (scrollTween.scrollTrigger) scrollTween.scrollTrigger.kill();
scrollTween.kill();
scrollTween = null;
}
gsap.set(track, { clearProps: "transform" });
// Kill any card ScrollTriggers that depended on containerAnimation
killCardTriggers();
return;
}
// Desktop: rebuild if forced (e.g., dynamic cards / resize)
if (scrollTween) {
if (!force) return;
killCardTriggers();
if (scrollTween.scrollTrigger) scrollTween.scrollTrigger.kill();
scrollTween.kill();
scrollTween = null;
gsap.set(track, { clearProps: "transform" });
}
const scrollDuration = 0.7;
scrollTween = gsap.to(track, {
x: () => -(track.scrollWidth - window.innerWidth + 200),
ease: "none",
scrollTrigger: {
trigger: ".cards-wrap",
pin: true,
scrub: 1,
start: "top top",
end: () => "+=" + (track.scrollWidth * scrollDuration),
anticipatePin: 1
}
});
const cards = gsap.utils.toArray('.vid-card');
cards.forEach((card) => {
const img = card.querySelector('.vid-card-img');
const caption = card.querySelector('.vid-card-caption');
if (img) {
gsap.to(img, {
backgroundPosition: "100% center",
ease: "none",
scrollTrigger: {
trigger: card,
containerAnimation: scrollTween,
start: "left right",
end: "right left",
scrub: true
}
});
}
if (caption) {
gsap.fromTo(
caption,
{ xPercent: 40 },
{
xPercent: -40,
ease: "none",
scrollTrigger: {
trigger: card,
containerAnimation: scrollTween,
start: "left right",
end: "right left",
scrub: true
}
}
);
}
});
}
window.PLAN_setupHorizontalScroll = setupHorizontalScroll;
// Initial setup
setupHorizontalScroll();
// Recalculate on resize (e.g., rotate phone, resize browser)
window.addEventListener('resize', () => {
setupHorizontalScroll(true);
});
// ----- CAROUSEL + TABS -----
const slides = document.querySelectorAll('.carousel-slide');
let currentSlide = 0;
setInterval(() => {
slides[currentSlide].classList.remove('active');
currentSlide = (currentSlide + 1) % slides.length;
slides[currentSlide].classList.add('active');
}, 4000);
function openTab(tabName) {
const contents = document.getElementsByClassName("tab-content");
for (let i = 0; i < contents.length; i++) { contents[i].classList.remove("active"); }
const buttons = document.getElementsByClassName("tab-btn");
for (let i = 0; i < buttons.length; i++) { buttons[i].classList.remove("active"); }
document.getElementById(tabName).classList.add("active");
event.currentTarget.classList.add("active");
}
// ----- LAZY LOAD CAROUSEL IMAGES -----
const lazyLoadCarousel = () => {
const lazySlides = document.querySelectorAll('.carousel-slide[data-bg]');
const observer = new IntersectionObserver((entries, self) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const slide = entry.target;
const bg = slide.getAttribute('data-bg');
slide.style.backgroundImage = `url('${bg}')`;
slide.removeAttribute('data-bg');
self.unobserve(slide);
}
});
}, { rootMargin: '0px 0px 200px 0px' }); // Load images 200px before they enter the viewport
lazySlides.forEach(slide => {
observer.observe(slide);
});
};
lazyLoadCarousel();
</script>
<script>
(function() {
if (!window.THREE) return;
var cubeLayer = document.getElementById('cube-layer');
if (!cubeLayer) return;
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera(40, window.innerWidth / window.innerHeight, 0.1, 100);
camera.position.set(0, 0, 18);
var renderer = new THREE.WebGLRenderer({ alpha: true, antialias: true });
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setPixelRatio(Math.min(window.devicePixelRatio || 1, 2));
renderer.domElement.style.pointerEvents = "auto";
cubeLayer.appendChild(renderer.domElement);
var clock = new THREE.Clock();
var interactiveCubes = [];
var raycaster = new THREE.Raycaster();
var mouse = new THREE.Vector2();
var UIUC_BLUE = new THREE.Color('#13294B');
var UIUC_ORANGE = new THREE.Color('#FF5F05');
function InteractiveCube(scene, color, position, id) {
this.scene = scene;
this.id = id;
this.startPos = position.clone();
this.velocity = new THREE.Vector3(0, 0, 0);
this.state = 'SOLID';
this.stateTimer = 0;
this.baseScale = 1.2;
var geo = new THREE.BoxGeometry(1, 1, 1);
var mat = new THREE.MeshBasicMaterial({ color: color, transparent: true, opacity: 0.9 });
this.mesh = new THREE.Mesh(geo, mat);
this.mesh.position.copy(position);
this.mesh.userData.parentCube = this;
scene.add(this.mesh);
this.particles = this._createParticleSystem(color);
this.particles.visible = false;
scene.add(this.particles);
}
InteractiveCube.prototype._createParticleSystem = function(color) {
var count = 3500;
var geo = new THREE.BufferGeometry();
var pos = new Float32Array(count * 3);
var target = new Float32Array(count * 3);
var sizes = new Float32Array(count);
var randoms = new Float32Array(count);
for (var i = 0; i < count; i++) {
var x = (Math.random() - 0.5);
var y = (Math.random() - 0.5);
var z = (Math.random() - 0.5);
var i3 = i * 3;
pos[i3] = x; pos[i3 + 1] = y; pos[i3 + 2] = z;
target[i3] = x; target[i3 + 1] = y; target[i3 + 2] = z;
sizes[i] = Math.random();
randoms[i] = Math.random();
}
geo.setAttribute('position', new THREE.BufferAttribute(pos, 3));
geo.setAttribute('aTarget', new THREE.BufferAttribute(target, 3));
geo.setAttribute('size', new THREE.BufferAttribute(sizes, 1));
geo.setAttribute('randomOffset', new THREE.BufferAttribute(randoms, 1));
var mat = new THREE.ShaderMaterial({
uniforms: { uTime: { value: 0 }, uColor: { value: color }, uScale: { value: 1.0 } },
vertexShader: `
attribute float size; attribute float randomOffset; attribute vec3 aTarget;
uniform float uTime; uniform float uScale; varying float vAlpha;
void main() {
vec3 p = position * uScale;
vec4 mvPosition = modelViewMatrix * vec4(p, 1.0);
float flicker = sin(uTime * 10.0 + randomOffset * 10.0) * 0.5 + 0.5;
gl_PointSize = (size * 15.0 + 5.0) * flicker * (10.0 / -mvPosition.z);
gl_Position = projectionMatrix * mvPosition;