-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPublications.html
executable file
·1657 lines (1444 loc) · 92.5 KB
/
Publications.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
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>
<head>
<!-- Global site tag (gtag.js) - Google Analytics (Caitao)-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-154892335-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-154892335-2');
</script>
<meta charset="utf-8">
<title>WINGS Publications</title>
<link rel="shorcut icon" type="image/png" href="img/favicon/favicon-32x32.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet"></link>
<!--
<script src="js/respond.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20509414-6']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
-->
</head>
<body>
<div class="container">
<!-- row 0: heading -->
<div class="row" align="center">
<img alt="Wings" src="img/wings.png" align="left" width="100" height="100">
<h1>Wireless Networking and Systems (WINGS) Lab</h1>
</div>
<!-- row 1: navigation -->
<div class="row">
<nav class="navbar navbar-default span12" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#collapse">
<span class="sr-only">Toggle navigation</span>
<span class="glyphicon glyphicon-arrow-down"></span>
MENU
</button>
</div>
<div class="collapse navbar-collapse" id="collapse" >
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li class="active"><a href="Publications.html">Publications</a></li>
<li><a href="people.html">People</a></li>
<li><a href="http://www.wings.cs.stonybrook.edu/dokuwiki/doku.php">Internal Wiki</a></li>
</ul>
</div>
</nav>
</div>„
<div class="row">
<div class="span12">
<h4>Publications<br></h4>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<!-- 2024 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2024" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2024</b>
</a>
</h4>
</div>
<div id="2024" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Manavjeet Singh, Sri Pramodh Rachuri, Bryan Bo Cao, Abhinav Sharma, Venkata Bhumireddy, Francesco Bronzino, Samir Das, Anshul Gandhi, Shubham Jain <a href="" target="_blank">OVIDA: Orchestrator for Video Analytics on Disaggregated Architecture</a>,
<em>ACM/IEEE Symposium on Edge Computing 2024</em></td>
</tr>
<tr>
<td>2</td>
<td>Caitao Zhan, Himanshu Gupta, Mark Hillery <a href="https://dl.acm.org/doi/10.1145/3655028" target="_blank">Optimizing Initial State of Detector Sensors in Quantum Sensor Networks</a>, <em>ACM Transactions on Quantum Computing 2024</em></td>
</tr>
<tr>
<td>3</td>
<td>Mohammad Ghaderibaneh, Caitao Zhan, Himanshu Gupta, <a href="https://caitaozhan.github.io/file/access24.pdf" target="_blank">DeepAlloc: Deep Learning Approach to Spectrum Allocation in Shared Spectrum Systems</a>, <em>IEEE Access</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2023 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2023" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2023</b>
</a>
</h4>
</div>
<div id="2023" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark Hillery, Himanshu Gupta, Caitao Zhan, <a href="https://arxiv.org/pdf/2210.17254.pdf" target="_blank">Discrete Outcome Quantum Sensor Networks</a>, <em>Physical Review A (PRA) 2023</em></td>
</tr>
<tr>
<td>2</td>
<td>Mallesham Dasari, Ramanujan Seshadri, Karthikeyan Sundaresan, Samir R. Das, <a href="https://arxiv.org/pdf/2207.02792.pdf" target="_blank">RoVaR: Robust Multi-agent Tracking through Dual-layer Diversity in Visual and RF Sensor Fusion</a>, <em>ACM IMWUT/UbiComp 2023</em></td>
</tr>
<tr>
<td>3</td>
<td>Caitao Zhan, Himanshu Gupta, <a href="https://arxiv.org/pdf/2211.02260.pdf" target="_blank">Quantum Sensor Network Algorithms for Transmitter Localization</a>, <em>IEEE QCE 2023</em></td>
</tr>
<tr>
<td>4</td>
<td>Mohammad Ghaderibaneh, Himanshu Gupta, C.R. Ramakrishnan, <a href="" target="_blank">Generation and Distribution of GHZ States in Quantum Networks</a>, <em>IEEE QCE 2023</em></td>
</tr>
<tr>
<td>5</td>
<td>Ranjani Sundaram, Himanshu Gupta, <a href="https://arxiv.org/pdf/2306.00195.pdf" target="_blank">Distributing Quantum Circuits Using Teleportations</a>, <em>QSW 2023</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2022 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2022" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2022</b>
</a>
</h4>
</div>
<div id="2022" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Caitao Zhan, Mohammad Ghaderibaneh, Pranjal Sahu, Himanshu Gupta, <a href="https://arxiv.org/pdf/2112.13181.pdf" target="_blank">DeepMTL Pro: Deep Learning Based Multiple Transmitter Localization and Power Estimation</a>, <em>Elsevier Pervasive and Mobile Computing 2022</em></td>
</tr>
<tr>
<td>2</td>
<td>Mallesham Dasari, Kumara Kahatapitiya, Samir Das, Aruna Balasubramanian, Dimitris Samaras, <a href="" target="_blank">Swift: Adaptive Video Streaming with Layered Neural Codecs</a>, <em>USENIX NSDI 2022</em></td>
</tr>
<tr>
<td>3</td>
<td>Mohammad Ghaderibaneh, Caitao Zhan, Himanshu Gupta, CR Ramakrishnan, <a href="https://ieeexplore.ieee.org/document/9760110" target="_blank">Efficient Quantum Network Communication using Optimized Entanglement-Swapping Trees</a>, <em>IEEE Transactions on Quantum Engineering 2022</em> </p>
</tr>
<tr>
<td>4</td>
<td>Utku Gunay Acer, Marc Van Den Broeck, Chulhong Min, Fahim Kawsar, Mallesham Dasari, <a href="" target="_blank">Hyper-local Conversational Agents for Serving Spatio-temporal Events of a Neighbourhood</a>, <em>ACM IMWUT/UbiComp 2022</em> </p>
</tr>
<tr>
<td>5</td>
<td>Himanshu Gupta, Max Curran, Jon Longtin, Torin Rockwell, Kai Zhang, Mallesham Dasari, <a href="" target="_blank">Cyclops: An FSO-based Wireless Link for VR Headsets</a>, <em>ACM SIGCOMM 2022</em> </p>
</tr>
<tr>
<td>6</td>
<td>Ranjani Sundaram, Himanshu Gupta, CR Ramakrishnan, <a href="https://www.dropbox.com/s/g7c4xg12e2wq8cp/Distributing-Circuits.pdf?dl=0" target="_blank">Distribution of Quantum Circuits in General Quantum Networks</a>, <em>IEEE QCE 2022</em></td>
</tr>
<tr>
<td>7</td>
<td>Mohammad Ghaderibaneh, Himanshu Gupta, C.R. Ramakrishnan, E. Luo, <a href="https://arxiv.org/pdf/2205.04036.pdf" target="_blank">Pre-distribution of Entanglements in Quantum Networks</a>, <em>IEEE QCE 2022</em> </td>
</tr>
<tr>
<td>8</td>
<td>Abeer Ahmad, Xiao Sha, Akshay Athalye, Samir R. Das, Kelly Caylor, Branko Glisic, Milutin Stanacevic, Petar M. Djuric, <a href="" target="_blank">Dispersed passive RF-sensing for 3D structural health monitoring</a>, <em>ITU Journal on Future and Evolving Technologies 2022</em></td>
</tr>
<tr>
<td>9</td>
<td>Abeer Ahmad, Xiao Sha, Akshay Athalye, Samir Das, Petar Djurić, Milutin Stanaćević, <a href="pdfs/2022-abeer.pdf" target="_blank">Amplitude and Phase Estimation of Backscatter Tag-to-Tag Channel</a>, <em>2022 IEEE International Symposium on Circuits and Systems (ISCAS)</em> </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2021 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2021" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2021</b>
</a>
</h4>
</div>
<div id="2021" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Sohee Park, Minh Hoai, Arani Bhaacharya, Samir R. Das, <a href="https://drive.google.com/file/d/1ixPm4GlhfOIjorqXbw0_6UWO-5SZ838S/view" target="_blank">Adaptive Streaming of 360-Degree Videos with Reinforcement Learning</a>, <em>WACV 2021</em></td>
</tr>
<tr>
<td>2</td>
<td>Sohee Park, Arani Bhattacharya, Zhibo Yang, Samir R. Das, Dimitris Samaras, <a href="https://drive.google.com/file/d/1HPWttf8ewKyQ-TdPzWZb_rGR5So0c3VO/view" target="_blank">Mosaic: Advancing User Quality of Experience in 360-Degree Video Streaming with Machine Learning</a>, <em>IEEE Transactions on Network and Service Management 2021</em></td>
</tr>
<tr>
<td>3</td>
<td>Caitao Zhan, Mohammad Ghaderibaneh, Pranjal Sahu, Himanshu Gupta, <a href="https://caitaozhan.github.io/file/DeepMTL.pdf" target="_blank">DeepMTL: Deep Learning Based Multiple Transmitter Localization</a>, <em>IEEE WoWMoM 2021</em></td>
</tr>
<tr>
<td>4</td>
<td>Arani Bhattacharya, Caitao Zhan, Abhishek Maji, Himanshu Gupta, Samir R. Das and Petar M. Djuric, <a href="pdfs/2021-TON.pdf" target="_blank">Selection of Sensors for Efficient Transmitter Localization</a>, <em>IEEE/ACM Transactions on Networking 2021</em></td>
</tr>
<tr>
<td>5</td>
<td>Ranjani Sundaram, Himanshu Gupta, and C.R. Ramakrishnan, <a href="pdfs/disc2021.pdf">Efficient Distribution of Quantum Circuits</a>, <em>DISC 2021</em></td>
</tr>
<tr>
<td>6</td>
<td>Duin Baek, Mallesham Dasari, Samir R. Das, and Jihoon Ryoo, <a href="https://www3.cs.stonybrook.edu/~mdasari/papers/conext-2021-paper.pdf">dcSR: Practical Video Quality Enhancement using Data-CentricSuper-Resolution</a>, <em>ACM CoNEXT 2021</em></td>
</tr>
<tr>
<td>7</td>
<td>Abeer Ahmad, Xiao Sha, Milutin Stanacevic, Akshay Athalye, Petar M. Djuric, Samir R. Das, <a href="">Enabling Passive Backscatter Tag Localization Without Active Receivers</a>, <em>ACM SenSys 2021</em></td>
</tr>
<tr>
<td>8</td>
<td>Abeer Ahmad, Xiao Sha, Akshay Athalye, Samir Das, Petar Djuric, Miltutin Stanacevic, <a href="">Collaborative Backscatter Based on Phase Channel Estimation in Passive RF Tag Network</a>, <em>IEEE RFID-TA 2021</em></td>
</tr>
<tr>
<td>9</td>
<td>Milutin Stanacevic, Abeer Ahmad, Xiao Sha, Akshay Athalye, Samir Das, Kelly Caylor, Branko Clisic, Petar Djuric, <a href="">RF Backscatter-Based Sensors for Structural Health Monitoring</a>, <em>BalkanCom 2021</em></td>
</tr>
<tr>
<td>10</td>
<td>Ayush Sarkar, John Murray, Mallesham Dasari, Michael Zink, Klara Nahrstedt, <a href="">L3BOU: Low Latency, Low Bandwidth, Optimized Super-Resolution Backhaul for 360-Degree Video Streaming</a>, <em>IEEE ISM 2021</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2020 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2020" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2020</b>
</a>
</h4>
</div>
<div id="2020" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Arani Bhattacharya, Caitao Zhan, Himanshu Gupta, Samir R. Das, and Petar M. Djuric, <a href="https://www3.cs.stonybrook.edu/~arbhattachar/assets/pdf/infocom20a.pdf" target="_blank">Selection of Sensors for Efficient Transmitter Localization</a>, <em>IEEE INFOCOM 2020</em></td>
</tr>
<tr>
<td>2</td>
<td>Mallesham Dasari, Arani Bhattacharya, Santiago Vargas, Pranjal Sahu, Aruna Balasubramanian, and Samir R. Das, <a href="https://www3.cs.stonybrook.edu/~mdasari/assets/pdf/infocom20.pdf" target="_blank">Streaming 360 Videos using Super-resolution</a>, <em>IEEE INFOCOM 2020</em></td>
</tr>
<tr>
<td>3</td>
<td>Caitao Zhan, Himanshu Gupta, Arani Bhattacharya, Mohammad Ghaderibaneh, <a href="https://caitaozhan.github.io/file/ipsn20.pdf" target="_blank">Efficient Localization of Multiple Intruders for Shared Spectrum System</a>, <em>ACM IPSN 2020</em></td>
</tr>
<tr>
<td>4</td>
<td>Vasudevan Nagendra, Arani Bhattacharya, Vinod Yegneswaran, Amir Rahmati, Samir R Das, <a href="https://www3.cs.stonybrook.edu/~vnagendra/VISCR_IoT_Sec_WWW_2020_Cameraready.pdf" target="_blank">An intent-based automation framework for securing dynamic consumer IoT Infrastructures</a>, <em>The Web Conference (WWW) 2020</em></td>
</tr>
<tr>
<td>5</td>
<td>Abeer Ahmad, Yuanfei Huang, Xiao Sha, Akshay Athalye, Milutin Stanacevic, Samir R. Das, Petar Djuric, <a href="">One Measuring Doppler Shifts Between Tags in a Backscattering Tag-to-Tag Network with Applications in Tracking</a>, <em>IEEE ICASSP 2020</em></td>
</tr>
<tr>
<td>6</td>
<td>Himanshu Gupta, Max Curran, Caitao Zhan. <a href="https://caitaozhan.github.io/file/conext20-schedule.pdf" target="_blank">Near-Optimal Multihop Scheduling in General Circuit-Switched Networks</a>, <em>ACM CoNEXT 2020</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2019 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2019" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2019</b>
</a>
</h4>
</div>
<div id="2019" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mallesham Dasari, Muhammad Bershgal, Arani Bhattacharya, Samir R. Das, <a href="http://www3.cs.stonybrook.edu/~mdasari/assets/pdf/pam19.pdf" target="_blank">Spectrum Protection from Micro-Transmissions using Distributed Spectrum Patrolling</a>,
<em>PAM 2019</em></td>
</tr>
<tr>
<td>2</td>
<td>Vasudevan Nagendra, Arani Bhattacharya, Anshul Gandhi, Samir R. Das, <a href="http://www3.cs.stonybrook.edu/~vnagendra/sosr19-final1.pdf" target="_blank">MMLite: Scalable and Resource Efficient Control Plane for Next Generation Cellular Packet Core</a>,
<em>ACM SOSR 2019</em></td>
</tr>
<tr>
<td>3</td>
<td>Md. Shaifur Rahman, Himanshu Gupta, Ayon Chakraborty, Samir R. Das, <a href="https://www3.cs.stonybrook.edu/~mdsrahman/docs/wcnc19.pdf" target="_blank">Creating Spatio-temporal Spectrum Maps from Sparse Crowdsensed Data</a>,
<em>IEEE WCNC 2019</em></td>
</tr>
<tr>
<td>4</td>
<td>Sohee Kim Park, Arani Bhattacharya, Zhibo Yang, Mallesham Dasari, Dimitris Samaras, Samir R. Das, <a href="pdfs/2019-sohee-ifip.pdf" target="_blank">Advancing User Quality of Experience in 360 Degree Video Streaming</a>,
<em>IFIP Networking 2019</em></td>
</tr>
<tr>
<td>5</td>
<td>Max Curran, Xiao Liang, Himanshu Gupta, Omkant Pandey and Samir Das, <a href="https://www3.cs.stonybrook.edu/~hgupta/procsa.pdf" target="_blank">ProCSA: Protecting Privacy in Crowdsourced Spectrum Allocation</a>,
<em>ESORICS 2019</em></td>
</tr>
<tr>
<td>6</td>
<td>Himanshu Gupta, Md. Shaifur Rahman, Max Curran, <a href="https://www.dropbox.com/s/4crc5lxs5sis8nu/SpecAlloc-DySpan-2019.pdf?dl=0" target="_blank">Spectrum Allocation via Pathloss Estimation in Crowdsensed Shared Spectrum Systems</a>,
<em>IEEE DySpan 2019</em></td>
</tr>
<tr>
<td>7</td>
<td>Mohammad Ghaderibaneh, Mallesham Dasari, Himanshu Gupta, <a href="https://www.dropbox.com/s/f9q6fzdjxi1gpka/Localization-DySPAN-2019.pdf?dl=0" target="_blank">Multiple Transmitter Localization Under Time-Skewed Observations</a>,
<em>IEEE DySpan 2019</em></td>
</tr>
<tr>
<td>8</td>
<td>Vasudevan Nagendra, Vinod Yegneswaran, Phillip Porras, Samir R Das, <a href="http://www3.cs.stonybrook.edu/~vnagendra/ACSAC_cr_2019.pdf" target="_blank">CoordiNetZ: Coordinated Dataflow Protection for Ultra-High Bandwidth Science Networks (Science DMZ)</a>,
<em>ACSAC 2019</em></td>
</tr>
<tr>
<td>9</td>
<td>Arani Bhattacharya, Ayon Chakraborty, Samir R Das, Himanshu Gupta, Petar M. Djuric, <a href="http://www3.cs.stonybrook.edu/~arbhattachar/assets/pdf/tccn19.pdf" target="_blank">Spectrum Patrolling Using Crowdsourced Spectrum Sensors</a>,
<em>IEEE Transactions on Cognitive Communications and Networking 2019</em></td>
</tr>
<tr>
<td>10</td>
<td>Abeer Ahmad, Akshay Athalye, Milutin Stanacevic, Samir R. Das, <a href="pdfs/2019-Abeer-bulidsys.pdf" target="_blank">Collaborative Channel Estimation in Backscattering Tag-to-Tag Networks</a>,
<em>1st ACM International Workshop on Device-Free Human Sensing, BuildSys 2019</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2018 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2018" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2018</b>
</a>
</h4>
</div>
<div id="2018" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Arani Bhattacharya, Han Chen, Peter Milder, Samir R. Das, <a href="">Quantifying Energy and Latency Improvements of FPGA-Based Sensors for Low-Cost Spectrum Monitoring</a>,
<em>IEEE DySPAN 2018</em></td>
</tr>
<tr>
<td>2</td>
<td>Mallesham Dasari, Santiago Vargas, Arani Bhattacharya, Aruna Balasubramanian, Samir R. Das, Mike Ferdman, <a href="">Impact of Device Parameters on Internet-based Mobile Applications</a>,
<em>ACM IMC 2018</em></td>
</tr>
<tr>
<td>3</td>
<td>Mallesham Dasari, Shruti Sanadhya, Christina Vlachou, Kyu-Han Kim, Samir R. Das, <a href="">Scalable Ground-truth Annotation for Video Telephony QoE in Enterprise Wireless Networks</a>,
<em>ACM/IEEE IWQoS 2018</em></td>
</tr>
<tr>
<td>4</td>
<td>Max Curran, Md. Shaifur Rahman, Himanshu Gupta, Vyas Sekar, <a href="http://www3.cs.stonybrook.edu/~mdsrahman/docs/secon18.pdf" target="_blank">Rethinking Virtual Network Embedding in Reconfigurable Networks</a>,
<em>IEEE SECON 2018</em></td>
</tr>
<tr>
<td>5</td>
<td>Ayon Chakraborty, Arani Bhattacharya, Snigdha Kamal, Samir R Das, Himanshu Gupta, Petar M. Djuric, <a href="pdfs/infocom2018.pdf" target="_blank">Spectrum Patrolling with Crowdsourced Spectrum Sensors</a>,
<em>IEEE INFOCOM 2018</em></td>
</tr>
<tr>
<td>6</td>
<td>Jihoon Ryoo; Yasha Karimi, Akshay Athalye, Milutin Stanacevic, Samir Das, Petar Djuric, <a href="https://dl.acm.org/citation.cfm?id=3210240.3210336" target="_blank">BARNET: Activity Recognition using Passive Backscattering Tag-to-Tag Network</a>,
<em>ACM MobiSys2018</em></td>
</tr>
<tr>
<td>7</td>
<td>Md. Shaifur Rahman, Kai Zheng, Himanshu Gupta, <a href="http://www3.cs.stonybrook.edu/~mdsrahman/docs/wearsys18.pdf" target="_blank">FSO-VR: Steerable Free Space Optics link for Virtual Reality Headsets</a>,
<em>ACM WearSys 2018</em></td>
</tr>
<tr>
<td>8</td>
<td>Sohee Kim Park, Arani Bhattacharya, Mallesham Dasari and Samir R. Das, <a href="pdfs/2018-sohee-sarnoff.pdf" target="_blank">Understanding User Perceived Video Quality Using Multipath TCP Over Wireless Network</a>,
<em>IEEE Sarnoff 2018</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2017 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2017" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2017</b>
</a>
</h4>
</div>
<div id="2017" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jihoon Ryoo, Conor Kelton, Aruna Balasubramanian, Samir R. Das, <a href="pdfs/webgaze.pdf" target="_blank">Improving User Perceived Page Load Times Using Gaze</a>,
<em>USENIX NSDI 2017</em></td>
</tr>
<tr>
<td>2</td>
<td>Ayon Chakraborty, Md Saifur Rahman, Himanshu Gupta, Samir R. Das, <a href="pdfs/specsense.pdf" target="_blank">SpecSense: Crowdsensing for Efficient Querying of Spectrum Occupancy</a>, <em>IEEE INFOCOM 2017</em></td>
</tr>
<tr>
<td>3</td>
<td>Vasudevan Nagendra, Joon Myung, J.K. Lee, Sujata Banerjee, <a href="">LMS: Label Management Service for Intent-driven Cloud Policy Management</a>, <em>IFIP/IEEE International Symposium on Integrated Network Management, 2017 </em></td>
</tr>
<td>4</td>
<td>Md. Shaifur Rahman, Max Curran, Himanshu Gupta, Kai Zheng, Samir Das, Jon Longtin, Thanvir Mohamed, <a href="pdfs/2017-max-mobicom.pdf" target="_blank">FSONet: A Wireless Backhaul for Multi-Gigabit Picocells Using Steerable Free Space Optics</a>,
<em>ACM Mobicom 2017</em></td>
</tr>
<td>5</td>
<td>Mallesham Dasari, Conor Kelton, Javad Nejati, Aruna Balasubramanian, Samir R. Das, <a href="pdfs/sigcomm-poster.pdf">Demystifying Hardware Bottlenecks in Mobile Web Quality of Experience</a>, (Extended Abstract),
<em>ACM Sigcomm 2017 (poster)</em></td>
</tr>
<tr>
<td>6</td>
<td>Ayon Chakraborty, Arani Bhattacharya, Santosh Gosh, Samir R. Das, <a href="pdfs/sarnoff.pdf">A First Look at Performance of TV Streaming Sticks</a>, <em>IEEE Sarnoff 2017</em></td>
</tr>
<tr>
<td>7</td>
<td>Vasudevan Nagendra, Vinod Yegneswaran, Phil Porras, <a href=""> Securing Ultra-High-Bandwidth Science DMZ Networks with Coordinated Situational Awareness </a>, <em>ACM Hotnets 2017</em></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2016 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2016" aria-expanded="false" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2016</b>
</a>
</h4>
</div>
<div id="2016" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingone">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td><td>Ayon Chakraborty, Shruti Sanadhya, Samir R. Das, Dongho Kim and Kyu-Han Kim, <a href="pdfs/2016-conext.pdf">ExBox: Experience Management Middlebox for Wireless Networks</a>, <em>ACM CoNEXT 2016</em></td>
</tr>
<tr>
<td>2</td>
<td>Arani Bhattacharya and Pradipta De, <a href="pdfs/2016-jnca.pdf">A Survey of Adaptive Techniques in Computation Offloading</a>, <em>Elsevier Journal of Network and Computer Applications </em></td>
</tr>
<tr>
<td>3</td>
<td>Arani Bhattacharya, Ansuman Banerjee and Pradipta De, <a href="pdfs/2016-globecom.pdf">Service Level Guarantee for Mobile Application
Offloading in Presence of Wireless Channel Errors</a>, <em>IEEE Globecom 2016 </em></td>
</tr>
<td>4</td>
<td>Ayon Chakroborty, Udit Gupta and Samir R. Das <a href="pdfs/2016-hotwireless.pdf">Benchmarking Resource Usage for
Spectrum Sensing on Commodity Mobile Devices</a>, <em>Workshop on Hot Topics in Wireless (HotWireless) 2016, co-held with Mobicom </em></td>
</tr>
<tr>
<td>5</td>
<td>Vasudevan Nagendra, Himanshu Sharma, Ayon Chakraborty and Samir R. Das, <a href="pdfs/2016-atc.pdf" ftarget="_blank">LTE-Xtend: Scalable Support of M2M Devices in
Cellular Packet Core</a>, <em>Workshop on All Things Cellular: Operations, Applications and Challenges (ATC) 2016, co-held with Mobicom</em>.</td>
</tr>
<tr>
<td>6</td>
<td>Ayon Chakraborty and Samir Das, <a href="pdfs/2016-dcoss.pdf" ftarget="_blank">Designing a Cloud-based Infrastructure for
Spectrum Sensing: A Case Study for Indoor Space</a>, <em>IEEE International Conference on Distributed Computing in Sensor Systems (DCOSS) 2016</em>.</td>
</tr>
<tr>
<td>7</td>
<td>Zafar Ayyub Qazi , Phani Krishna, Vyas Sekar, Vijay Gopalakrishnan, Kaustubh Joshi and Samir Das, <a href="pdfs/2016-zafar-sosr.pdf" ftarget="_blank">Klein: A Minimally Disruptive Design for an Elastic Cellular Core</a>, <em>ACM Symposium on SDN Rsearch (SOSR) 2016</em>.</td>
</tr>
<tr>
<td>8</td>
<td>Jihoon Ryoo, Kiwon Yun, Dimitris Samaras, Samir R. Das and Greg Zelinsky, <a href="pdfs/2016-jihoon-mmsys.pdf" target="_blank">Design and Evaluation of a Foveated Video Streaming Service for Commodity Client Devices</a>, <em>ACM Multimedia Systems (MMSys) 2016</em>.</td>
</tr>
<tr>
<td>9</td>
<td>Max Curran and Himanshu Gupta, <a href="pdfs/2016-icc.pdf"> Providing line-of-sight in a free-space-optics based data center architecture</a>,
<em>IEEE International Conference on Communications (ICC) </em></td>
<tr>
<td>10</td>
<td>Arani Bhattacharya and Pradipta De, <a href="pdfs/2016-arm-cc.pdf"> Computation Offloading from Mobile Devices: Can Edge Devices Perform Better than the Cloud? </a>,
<em>Workshop on Adaptive Resource Management and Scheduling for Cloud Computing, Held in conjunction with PODC 2016 </em></td>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2015 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" href="#2015" aria-expanded="true" aria-controls="collapseOne">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> <b>2015</b>
</a>
</h4>
</div>
<div id="2015" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Ayon Chakraborty, Luis Ortiz and Samir Das, <a href="pdfs/2015-ayon-INFOCOM.pdf" target="_blank">Network-side Positioning of Cellular-band Devices with Minimal Effort</a>, in <em>IEEE INFOCOM 2015</em>.</td>
</tr>
<tr>
<td>2</td>
<td> Seyed K. Fayaz, Fatima Zarinni and Samir Das, <a href="pdfs/2015-seyed-adhoc.pdf" target="_blank">Ez-Channel: A distributed MAC protocol for efficient channelization in wireless networks</a>, in <em>Elsevier Ad Hoc Networks Journal 2015</em>.</td>
</tr>
<tr>
<td>3</td>
<td>Jihoon Ryoo and Samir R. Das, <a href="http://dl.acm.org/citation.cfm?id=2811620" target="_blank">Phase-based Ranging of RFID Tags with Applications to Shopping Cart Localization</a>, in <em>ACM MSWiM 2015</em>.</td>
</tr>
<tr>
<td>4</td>
<td>Chang Wook Kim, Jihoon Ryoo and Milind M. Buddhikot, <a href="pdfs/2015-chang-dyspan.pdf"> Design and Implementation of an End-to-End Architecture for 3.5GHz Shared Spectrum</a>, in <em>IEEE DySPAN 2015</em>.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- 2014 Papers-->
<div class="panel panel-default ">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" href="#2014" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 2014
</a>
</h4>
</div>
<div id="2014" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Ayon Chakraborty and Samir Das, <a href="pdfs/2014-ayon-conext.pdf" target="_blank">Measurement-Augmented Spectrum Databases for White Space Spectrum</a>, in <em>ACM CoNEXT 2014</em>.</td>
</tr>
<tr>
<td>2</td>
<td>Fatima Zarinni, Ayon Chakraborty, Vyas Sekar, Samir Das and Phillipa Gill, <a href="pdfs/2014-fatima-imc.pdf" target="_blank">A First Look at Performance in Mobile Virtual Network Operators</a>, in <em>ACM SIGCOMM IMC 2014</em>.<font color="red"> [Best Paper Award Finalist] </font></td>
</tr>
<tr>
<td>3</td>
<td>Naved Hamedazimi, Zafar Qazi, Himanshu Gupta, Vyas Sekar, Samir Das, Himanshu Shah and Ashish Tanwer, <a href="pdfs/2014-naved-sigcomm.pdf" target="_blank">FireFly: A Reconfigurable Wireless Datacenter Fabric using Free-space Optics</a></b>, in <em> ACM SIGCOMM 2014</em>.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--2013 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" href="#2013" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 2013
</a>
</h4>
</div>
<div id="2013" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Navid Hamedazimi, Himanshu Gupta, Vyas Sekar and Samir R Das, <a href="pdfs/2013-navid-hotnets.pdf" target="_blank">Patch Panels in the Sky: A Case for Free-Space Optics in Data Centers</a>, in <em>ACM HotNets 2013</em></td>
</tr>
<tr>
<td>2</td>
<td>Utpal Paul, Anand Kashyap, Ritesh Maheshwari, Samir R Das, <a href="pdfs/2013-utpal-tmc.pdf" target="_blank">"Passive measurement of interference in WiFi networks with application in misbehavior detection"</a>, in IEEE Transactions on Mobile Computing Vol 12 Issue 3. </td>
</tr>
<tr>
<td>3</td>
<td>Navid Hamed Azimi, Himanshu Gupta, Utpal Paul, Milind Madhav Buddhikot, Samir Das <a href="pdfs/2013-navid-secon.pdf" target="_blank">"Minimizing capacity requirements of cellular networks via delayed scheduling"</a>, in IEEE SECON'13.</td>
</tr>
<tr>
<td>4</td>
<td>Ayon Chakraborty, Samir Das <a href="pdfs/2013-ayon-cellnet.pdf" target="_blank">"Adapp: an adaptive network selection framework for smartphone applications"</a>, in CellNet'13 (in conjunction with ACM MobiSys'13). </td>
</tr>
<tr>
<td>5</td>
<td>Pralhad Deshpande, Zafar Ayyub Qazi, Samir R Das <a href="pdfs/2013-pralhad-vanet.pdf" target="_blank">"MRMV: design and evaluation of a multi-radio multi-vehicle system for metro-WiFi access"</a>, in VANET'13 (in conjunction with ACM MobiSys'13).</td>
</tr>
<tr>
<td>6</td>
<td>Ayon Chakraborty, Samir R Das, Milind Buddhikot <a href="pdfs/2013-ayon-mobisys.pdf" target="_blank">"Radio environment mapping with mobile devices in the TV white space"</a>, (Poster) in ACM Mobicom'13. </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--2012 Papers-->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" href="#2012" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 2012
</a>
</h4>
</div>
<div id="2012" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Fatima Zarinni, S. R. Das, <a href="pdfs/2012-fatima-ic3n.pdf" target="_blank">"Understanding the FICA MAC protocol in High Data Rate WLANs"</a>, in the <em>Proceedings of the 21st IEEEE Conference on Computer Communication Networks (IC3N)</em>, Munich, Germany, July 2012. </em></td>
</tr>
<tr>
<td>2</td>
<td>Fatima Zarinni, S. R. Das, <a href="pdfs/2012-fatima-ic3nb.pdf" target="_blank">"btFICA MAC protocol in High Data Rate WLANs"</a>, in the <em>Proceedings of the 21st IEEEE Conference on Computer Communication Networks (IC3N)</em>, Munich, Germany, July 2012. </td>
</tr>
<tr>
<td>3</td>
<td>U. Paul, M. Buddhikot, S. R. Das, <a href="pdfs/2012-utpal-dyspan.pdf" target="_blank">“Opportunistic Traffic Scheduling in Cellular Networks”</a>, in the<em> Proceedings of IEEE Dynamic Spectrum Access Networks (DySpan) Symposium</em>,Bellevue, WA, October 2012.</td>
</tr>
<tr>
<td>4</td>
<td>J. Ryoo, S. R. Das, H. Kim, <a href="pdfs/2012-jihoon-iwqos.pdf" target="_blank">"Geo-Fencing: Geographical-Fencing based Energy-Aware proactive framework for Mobile Devices"</a>, in the <em> Proceedings of the IEEE/ACM IWQoS (International Workshop on Quality of Service)</em>, Coimbra, Portugal, June, 2012.</td>
</tr>
<tr>
<td>5</td>
<td>P. Deshpande, S. R. Das, <a href="pdfs/2012-pralhad-vanet.pdf" target="_blank">"BRAVE: Bit Rate Adaptation in Vehicular Environments"</a>, in the <em>Proceedings of the ACM VANET: 9th International Workshop on Vehicular Internetworking, Systems and Applications</em>, Lake District, UK, June 2012.</td>
</tr>
<tr>
<td>6</td>
<td>U. Paul, A. P. Subramanian, M. Buddhikot, S. R. Das, <a href="pdfs/2012-scicom.pdf" target="_blank">"Understanding Spatial Relationships in the Resource usage in Cellular Data Networks"</a>, in the <em> Proceedings on the IEEE NetSciCom 2012 Workshop: 4th International workshop on Network Science for Communication Networks</em>, Orlando, FL, March 2012. </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--2011 papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" href="#2011" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 2011
</a>
</h4>
</div>
<div id="2011" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>U. Paul, A. Kashyap, R. Maheswari, S. R. Das, <a href="pdfs/2011-tmc.pdf" target="_blank">“Passive Measurement of Interference in Wifi Networks with Application in Misbehavior Detection”</a> <em> IEEE Transactions on Mobile Computing</em>,2011. </em></td>
</tr>
<tr>
<td>2</td>
<td>Abhishek Goswami, Luis E. Ortiz, Samir R. Das, <a href="pdfs/2011-conext.pdf" tarrget="_blank">“WiGEM: A Learning-Based Approach for Indoor Localization”</a>, <em> Proc. ACM CoNEXT (International Conference on emerging Networking EXperiments and Technologies)</em>, Tokyo, Japan, Dec 2011. </td>
</tr>
<tr>
<td>3</td>
<td>Xiaoxiao Hou, Pralhad Deshpande, Samir R. Das, <a href="pdfs/2011-icnp.pdf">"Moving Bits from 3G to Metro-Scale WiFi for Vehicular Network Access: An Integrated Transport Layer Solution"</a>, <em>Proc. IEEE International Conference on Network Protocols (ICNP)</em>, Vancouver, Canada, Oct 2011. </td>
</tr>
<tr>
<td>4</td>
<td>Utpal Paul, Anand Prabhu Subramanian, Milind M. Buddhikot, Samir R. Das, <a href="pdfs/2011-INFOCOM.pdf" title="http://www.wings.cs.sunysb.edu/~upaul/paper/INFOCOM11-final-version.pdf" rel="nofollow"> "Understanding Traffic Dynamics in Cellular Data Networks"</a>, <em>Proc. of IEEE INFOCOM</em>, Shanghai, China, April 2011.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--2010 Papers-->
<div class="panel panel-default ">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" href="#2010" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 2010
</a>
</h4>
</div>
<div id="2010" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Pralhad Deshpande, Xiaoxiao Hou, Samir R. Das, <a href="pdfs/2010-sigcomm.pdf" title="http://www.wings.cs.sunysb.edu/~pralhad/papers/deshpande-3g-wifi-2010.pdf" rel="nofollow"> "Performance Comparison of 3G and Metro-Scale WiFi for Vehicular Network Access"</a>, <em>Proc. 10th ACM Internet Measurement Conference (IMC 2010), Melbourne, Australia</em>, November 1-3, 2010. </em></td>
</tr>
<tr>
<td>2</td>
<td>Utpal Paul, Ritesh Maheshwari, Samir R. Das, <a href="pdfs/2010-dsn.pdf" title="http://www.wings.cs.sunysb.edu/~upaul/paper/DSN_paper.pdf" rel="nofollow"> "Detecting Selfish Carrier-Sense Behavior in WiFi Networks by Passive Monitoring"</a>, <em>Proc. 40th IEEE/IFIP International Conference on Dependable Systems and Networks (DSN)</em>, June 2010.</td>
</tr>
<tr>
<td>3</td>
<td>Anand Kashyap, Utpal Paul, Samir R. Das, <a href="pdfs/2010-secon.pdf" title="http://www.wings.cs.sunysb.edu/~upaul/paper/Secon_paper.pdf" rel="nofollow"> "Deconstructing Interference Relations in WiFi Networks"</a>, <em>Proc. of the IEEE International Conference on Sensor and Ad Hoc Communications and Networks (SECON)</em>, June 2010.</td>
</tr>
<tr>
<td>4</td>
<td>Mahesh K. Marina, Samir R. Das, <a href="pdfs/2010-networks.pdf"> Anand Prabhu Subramanian, “A topology control approach for utilizing multiple channels in multi-radio wireless mesh networks.” </a> <em>Computer Networks,</em> 54(2): Pages 241-256, 2010. </td>
</tr>
<tr>
<td>5</td>
<td>Anand Prabhu Subramanian, Samir R. Das, <a href=pdfs/2010-wireless.pdf“> Addressing deafness and hidden terminal problem in directional antenna based wireless multi-hop networks.” </a> <em>ACM/Springer Wireless Networks Journal,</em> 16(6): Pages 1557-1567, 2010. </td>
</tr>
<tr>
<td>6</td>
<td>Fatima Zarinni and Samir R. Das, "Adaptive Spectrum Distribution in WLANs", <em>Proc. of the IEEE Global Communications Conference (IEEE Globecom)</em>, Dec 2010.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--2009 Papers-->
<div class="panel panel-default panel-info">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#2009" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 2009
</a>
</h4>
</div>
<div id="2009" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<table class="table table-condensed">
<thead>
<tr>
<th>Serial Number</th>
<th>Paper details</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Ritesh Maheshwari, Jing Cao, Anand Prabhu Subramanian, Fatima Zarinni, Samir R. Das, <a href="pdfs/2009-ritesh-report.pdf" title="http://www.cs.sunysb.edu/~samir/Pubs/amc-tech-rep-09.pdf" rel="nofollow"> ``Adaptive Channelization For High Data Rate Wireless Networks,''</a> WINGS Lab Tech Report, Computer Science Department, Stony Brook University, 2009.</td>
</tr>
<tr>
<td>2</td>
<td>Supratim Deb, Vikram Srinivasan, Ritesh Maheshwari, <a href="pdfs/2009-mobicom.pdf"> “Dynamic Spectrum Access in DTV Whitespaces: Design Rules, Architecture and Algorithms”, </a><em>ACM Mobicom 2009</em>, Beijing, China, Sept 2009. </td>
</tr>
<tr>
<td>3</td>
<td>Paolo Santi, Ritesh Maheshwari, Giovanni Resta, Samir R. Das, Douglas M. Blough, <a href=pdfs/2009-fowanc.pdf> Wireless Link Scheduling under a Graded SINR Interference Model ”</a>, <em>Proc. 2nd ACM International Workshop on Foundations of Wireless Ad Hoc and Sensor Networking and Computing (FOWANC) held in conjunction with ACM Mobihoc 2009</em>, New Orleans, LA, May 2009.</td>
</tr>
<tr>
<td>4</td>
<td>Pralhad Deshpande, Anand Kashyap, Chul Sung, Samir R. Das, <a href="pdfs/2009-mobisys.pdf"> "Predictive Methods for Improved Vehicular WiFi Access"</a>, <em>Proc. 7th ACM International Conference on Mobile Systems, Applications, and Services (ACM MOBISYS 2009)</em>, Krakao, Poland, June 2009.</td>
</tr>
<tr>
<td>5</td>
<td>Ritesh Maheshwari, Jing Cao, Samir R. Das, <a href="pdfs/2009-INFOCOM.pdf" title="http://www.wings.cs.sunysb.edu/pubs/wifi-modeling.pdf" rel="nofollow">"Physical Interference Modeling for Transmission Scheduling on Commodity WiFi Hardware,"</a> <em>Proc. 28th IEEE International Conference on Computer Communications Mini Conference (IEEE INFOCOM Mini-Conference 2009)</em>, Rio de Janeiro, Brazil, April 2009. </td>
</tr>
<tr>
<td>6</td>
<td>Anand Prabhu Subramanian, Jing Cao, Chul Sung, Samir R. Das, <a href="pdfs/2009-pam.pdf" title="http://www.wings.cs.sunysb.edu/~anandps/pub/anand-pam09.pdf" rel="nofollow"> "Understanding Channel and Interface Heterogeneity in Multi-channel Multi-radio Wireless Mesh Networks,"</a> <em>Proc. 10th Passive and Active Measurement Conference (PAM 2009)</em>, Seoul, South Korea, April 2009. </td>
</tr>
<tr>
<td>7</td>
<td>Zongheng Zhou, Himanshu Gupta, Samir R. Das, <a href="pdfs/2009-sensor.pdf"> “Variable Radii Connected Sensor Cover in Sensor Networks,” <em>ACM Transactions on Sensor Networks, </a> </em> Vol. 5, No. 1, Feb 2009, pages 1-36.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--2008 Papers-->
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#2008" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> 2008
</a>
</h4>
</div>
<div id="2008" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<table class="table table-condensed">
<thead>