forked from karpathy/nipspreview
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpapers.p
5020 lines (5020 loc) · 126 KB
/
papers.p
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
(dp1
I831549441
(I831549441
S'Efficient Color Boundary Detection with Color-Opponent Mechanisms'
p2
S'Kaifu Yang, Shaobing Gao, Chaoyi Li, Yongjie Li'
p3
S'Yang_Efficient_Color_Boundary_2013_CVPR_paper.pdf'
p4
S'boundary detection, natural image, color opponent, biological mechanism, visual system'
p5
tp6
sI275877890
(I275877890
S'Event Retrieval in Large Video Collections with Circulant Temporal Encoding'
p7
S'Jrme Revaud, Matthijs Douze, Cordelia Schmid, Herv Jgou'
p8
S'Revaud_Event_Retrieval_in_2013_CVPR_paper.pdf'
p9
S'large-scale, video retrieval, event retrieval'
p10
tp11
sI739899401
(I739899401
S'Prostate Segmentation in CT Images via Spatial-Constrained Transductive Lasso'
p12
S'Yinghuan Shi, Shu Liao, Yaozong Gao, Daoqiang Zhang, Yang Gao, Dinggang Shen'
p13
S'Shi_Prostate_Segmentation_in_2013_CVPR_paper.pdf'
p14
S''
tp15
sI411527180
(I411527180
S'Analyzing Semantic Segmentation Using Hybrid Human-Machine CRFs'
p16
S'Roozbeh Mottaghi, Sanja Fidler, Jian Yao, Raquel Urtasun, Devi Parikh'
p17
S'Mottaghi_Analyzing_Semantic_Segmentation_2013_CVPR_paper.pdf'
p18
S''
tp19
sI118435854
(I118435854
S'Unsupervised Joint Object Discovery and Segmentation in Internet Images'
p20
S'Michael Rubinstein, Armand Joulin, Johannes Kopf, Ce Liu'
p21
S'Rubinstein_Unsupervised_Joint_Object_2013_CVPR_paper.pdf'
p22
S''
tp23
sI992071696
(I992071696
S'Occlusion Patterns for Object Class Detection'
p24
S'Bojan Pepikj, Michael Stark, Peter Gehler, Bernt Schiele'
p25
S'Pepikj_Occlusion_Patterns_for_2013_CVPR_paper.pdf'
p26
S'object detection, occlusion, DPM'
p27
tp28
sI393127955
(I393127955
S'Template-Based Isometric Deformable 3D Reconstruction with Sampling-Based Focal Length Self-Calibration'
p29
S'Adrien Bartoli, Toby Collins'
p30
S'Bartoli_Template-Based_Isometric_Deformable_2013_CVPR_paper.pdf'
p31
S''
tp32
sI717250586
(I717250586
S'CLAM: Coupled Localization and Mapping with Efficient Outlier Handling'
p33
S'Jonathan Balzer, Stefano Soatto'
p34
S'Balzer_CLAM_Coupled_Localization_2013_CVPR_paper.pdf'
p35
S''
tp36
sI364685347
(I364685347
S"Discriminative Brain Effective Connectivity Analysis for Alzheimer's Disease: A Kernel Learning Approach upon Sparse Gaussian Bayesian Network"
p37
S'Luping Zhou, Lei Wang, Lingqiao Liu, Philip Ogunbona, Dinggang Shen'
p38
S'Zhou_Discriminative_Brain_Effective_2013_CVPR_paper.pdf'
p39
S"Discriminative learning, sparse Bayesian Network, Brain connectivity analysis, Alzheimer's Disease"
p40
tp41
sI116703282
(I116703282
S'A Minimum Error Vanishing Point Detection Approach for Uncalibrated Monocular Images of Man-Made Environments'
p42
S'Yiliang Xu, Sangmin Oh, Anthony Hoogs'
p43
S'Xu_A_Minimum_Error_2013_CVPR_paper.pdf'
p44
S''
tp45
sI386949172
(I386949172
S'Designing Category-Level Attributes for Discriminative Visual Recognition'
p46
S'Felix X. Yu, Liangliang Cao, Rogerio S. Feris, John R. Smith, Shih-Fu Chang'
p47
S'Yu_Designing_Category-Level_Attributes_2013_CVPR_paper.pdf'
p48
S'attribute, object recognition, attribute design, discriminative attribute, automatic attribute design, cross-category knowledge transfer, zero-shot learning'
p49
tp50
sI675192889
(I675192889
S'Learning Discriminative Illumination and Filters for Raw Material Classification with Optimal Projections of Bidirectional Texture Functions'
p51
S'Chao Liu, Geifei Yang, Jinwei Gu'
p52
S'Liu_Learning_Discriminative_Illumination_2013_CVPR_paper.pdf'
p53
S''
tp54
sI168654913
(I168654913
S'Learning and Calibrating Per-Location Classifiers for Visual Place Recognition'
p55
S'Petr Gront, Guillaume Obozinski, Josef Sivic, Tom Pajdla'
p56
S'Gronat_Learning_and_Calibrating_2013_CVPR_paper.pdf'
p57
S'Visual place recognition, classifier calibration'
p58
tp59
sI113244227
(I113244227
S'Articulated and Restricted Motion Subspaces and Their Signatures'
p60
S'Bastien Jacquet, Roland Angst, Marc Pollefeys'
p61
S'Jacquet_Articulated_and_Restricted_2013_CVPR_paper.pdf'
p62
S'Motion subspaces, Factorization, Signature'
p63
tp64
sI735576133
(I735576133
S'Modeling Actions through State Changes'
p65
S'Alireza Fathi, James M. Rehg'
p66
S'Fathi_Modeling_Actions_through_2013_CVPR_paper.pdf'
p67
S'Action Recognition, State, Object, Smi-Supervised Learning, Egocentric'
p68
tp69
sI820953158
(I820953158
S'Human Pose Estimation Using a Joint Pixel-wise and Part-wise Formulation'
p70
S'ubor Ladick, Philip H.S. Torr, Andrew Zisserman'
p71
S'Ladicky_Human_Pose_Estimation_2013_CVPR_paper.pdf'
p72
S'Pose Estimation, Pictorial Structures, Conditional Random Fields'
p73
tp74
sI541786187
(I541786187
S'Cartesian K-Means'
p75
S'Mohammad Norouzi, David J. Fleet'
p76
S'Norouzi_Cartesian_K-Means_2013_CVPR_paper.pdf'
p77
S'quantization, product quantization, nearest neighbor search, approximate nearest neighbor search, euclidean nearest neighbor search, hashing, retrieval, large-scale, codebook, learning, cartesian, bag of words'
p78
tp79
sI860802506
(I860802506
S'Weakly-Supervised Dual Clustering for Image Semantic Segmentation'
p80
S'Yang Liu, Jing Liu, Zechao Li, Jinhui Tang, Hanqing Lu'
p81
S'Liu_Weakly-Supervised_Dual_Clustering_2013_CVPR_paper.pdf'
p82
S'Image Semantic Segmentation, Weakly-Supervised'
p83
tp84
sI734603349
(I734603349
S'K-Means Hashing: An Affinity-Preserving Quantization Method for Learning Binary Compact Codes'
p85
S'Kaiming He, Fang Wen, Jian Sun'
p86
S'He_K-Means_Hashing_An_2013_CVPR_paper.pdf'
p87
S'hash, binary embedding, nearest neighbor search'
p88
tp89
sI143153242
(I143153242
S'Augmenting CRFs with Boltzmann Machine Shape Priors for Image Labeling'
p90
S'Andrew Kae, Kihyuk Sohn, Honglak Lee, Erik Learned-Miller'
p91
S'Kae_Augmenting_CRFs_with_2013_CVPR_paper.pdf'
p92
S'attributes, segmentation, face processing, deep learning'
p93
tp94
sI988564838
(I988564838
S'Reconstructing Loopy Curvilinear Structures Using Integer Programming'
p95
S'Engin Tretken, Fethallah Benmansour, Bjoern Andres, Hanspeter Pfister, Pascal Fua'
p96
S'Turetken_Reconstructing_Loopy_Curvilinear_2013_CVPR_paper.pdf'
p97
S''
tp98
sI550948966
(I550948966
S'Reconstructing Gas Flows Using Light-Path Approximation'
p99
S'Yu Ji, Jinwei Ye, Jingyi Yu'
p100
S'Ji_Reconstructing_Gas_Flows_2013_CVPR_paper.pdf'
p101
S''
tp102
sI656404586
(I656404586
S'Improved Image Set Classification via Joint Sparse Approximated Nearest Subspaces'
p103
S'Shaokang Chen, Conrad Sanderson, Mehrtash T. Harandi, Brian C. Lovell'
p104
S'Chen_Improved_Image_Set_2013_CVPR_paper.pdf'
p105
S'Joint Sparse Representation, Grassmann Manifold, Adaptive Clustering, Multi-model Image Set Matching'
p106
tp107
sI562147435
(I562147435
S'Rolling Shutter Camera Calibration'
p108
S'Luc Oth, Paul Furgale, Laurent Kneip, Roland Siegwart'
p109
S'Oth_Rolling_Shutter_Camera_2013_CVPR_paper.pdf'
p110
S'rolling shutter camera, calibration, continuous-time estimation'
p111
tp112
sI952769191
(I952769191
S'As-Projective-As-Possible Image Stitching with Moving DLT'
p113
S'Julio Zaragoza, Tat-Jun Chin, Michael S. Brown, David Suter'
p114
S'Zaragoza_As-Projective-As-Possible_Image_Stitching_2013_CVPR_paper.pdf'
p115
S'Image Stitching, DLT, Moving Least Squares'
p116
tp117
sI326332528
(I326332528
S'Video Object Segmentation through Spatially Accurate and Temporally Dense Extraction of Primary Object Regions'
p118
S'Dong Zhang, Omar Javed, Mubarak Shah'
p119
S'Zhang_Video_Object_Segmentation_2013_CVPR_paper.pdf'
p120
S'Computer Vision, Video Segmentation, Object Segmentation'
p121
tp122
sI524357745
(I524357745
S'Efficient Maximum Appearance Search for Large-Scale Object Detection'
p123
S'Qiang Chen, Zheng Song, Rogerio Feris, Ankur Datta, Liangliang Cao, Zhongyang Huang, Shuicheng Yan'
p124
S'Chen_Efficient_Maximum_Appearance_2013_CVPR_paper.pdf'
p125
S''
tp126
sI513585268
(I513585268
S'A Joint Model for 2D and 3D Pose Estimation from a Single Image'
p127
S'Edgar Simo-Serra, Ariadna Quattoni, Carme Torras, Francesc Moreno-Noguer'
p128
S'Simo-Serra_A_Joint_Model_2013_CVPR_paper.pdf'
p129
S''
tp130
sI728086645
(I728086645
S'Large Displacement Optical Flow from Nearest Neighbor Fields'
p131
S'Zhuoyuan Chen, Hailin Jin, Zhe Lin, Scott Cohen, Ying Wu'
p132
S'Chen_Large_Displacement_Optical_2013_CVPR_paper.pdf'
p133
S'Optical Flow, PatchMatch, Randomized Algorithm, Motion Segmentation'
p134
tp135
sI818663542
(I818663542
S'Least Soft-Threshold Squares Tracking'
p136
S'Dong Wang, Huchuan Lu, Ming-Hsuan Yang'
p137
S'Wang_Least_Soft-Threshold_Squares_2013_CVPR_paper.pdf'
p138
S', Object Tracking'
p139
tp140
sI291063934
(I291063934
S'Exploring Implicit Image Statistics for Visual Representativeness Modeling'
p141
S'Xiaoshuai Sun, Xin-Jing Wang, Hongxun Yao, Lei Zhang'
p142
S'Sun_Exploring_Implicit_Image_2013_CVPR_paper.pdf'
p143
S''
tp144
sI711102591
(I711102591
S'Single-Pedestrian Detection Aided by Multi-pedestrian Detection'
p145
S'Wanli Ouyang, Xiaogang Wang'
p146
S'Ouyang_Single-Pedestrian_Detection_Aided_2013_CVPR_paper.pdf'
p147
S'Pedestrian Detection, object detection, human detection, part based model, deformable model'
p148
tp149
sI995104897
(I995104897
S'Robust Real-Time Tracking of Multiple Objects by Volumetric Mass Densities'
p150
S'Horst Possegger, Sabine Sternig, Thomas Mauthner, Peter M. Roth, Horst Bischof'
p151
S'Possegger_Robust_Real-Time_Tracking_2013_CVPR_paper.pdf'
p152
S'Tracking, Multiple Object, Multiple Camera, Occupancy Volume'
p153
tp154
sI204056708
(I204056708
S'Multipath Sparse Coding Using Hierarchical Matching Pursuit'
p155
S'Liefeng Bo, Xiaofeng Ren, Dieter Fox'
p156
S'Bo_Multipath_Sparse_Coding_2013_CVPR_paper.pdf'
p157
S'Object Recognition, Sparse Coding, Feature Learning, Deep Learning'
p158
tp159
sI878264455
(I878264455
S'Computing Diffeomorphic Paths for Large Motion Interpolation'
p160
S'Dohyung Seo, Jeffrey Ho, Baba C. Vemuri'
p161
S'Seo_Computing_Diffeomorphic_Paths_2013_CVPR_paper.pdf'
p162
S''
tp163
sI818638987
(I818638987
S'A Convex Regularize for Reducing Color Artifact in Color Image Recovery'
p164
S'Shunsuke Ono, Isao Yamada'
p165
S'Ono_A_Convex_Regularize_2013_CVPR_paper.pdf'
p166
S'Color image recovery, color lines, convex optimization'
p167
tp168
sI500551833
(I500551833
S'Hallucinated Humans as the Hidden Context for Labeling 3D Scenes'
p169
S'Yun Jiang, Hema Koppula, Ashutosh Saxena'
p170
S'Jiang_Hallucinated_Humans_as_2013_CVPR_paper.pdf'
p171
S'scene labeling, hallucinated humans'
p172
tp173
sI957718688
(I957718688
S'MODEC: Multimodal Decomposable Models for Human Pose Estimation'
p174
S'Ben Sapp, Ben Taskar'
p175
S'Sapp_MODEC_Multimodal_Decomposable_2013_CVPR_paper.pdf'
p176
S''
tp177
sI861007336
(I861007336
S'Spatiotemporal Deformable Part Models for Action Detection'
p178
S'Yicong Tian, Rahul Sukthankar, Mubarak Shah'
p179
S'Tian_Spatiotemporal_Deformable_Part_2013_CVPR_paper.pdf'
p180
S''
tp181
sI456671398
(I456671398
S'Uncalibrated Photometric Stereo for Unknown Isotropic Reflectances'
p182
S'Feng Lu, Yasuyuki Matsushita, Imari Sato, Takahiro Okabe, Yoichi Sato'
p183
S'Lu_Uncalibrated_Photometric_Stereo_2013_CVPR_paper.pdf'
p184
S''
tp185
sI795455655
(I795455655
S'Real-Time Model-Based Rigid Object Pose Estimation and Tracking Combining Dense and Sparse Visual Cues'
p186
S'Karl Pauwels, Leonardo Rubio, Javier Daz, Eduardo Ros'
p187
S'Pauwels_Real-Time_Model-Based_Rigid_2013_CVPR_paper.pdf'
p188
S'real-time, model-based, optical flow, stereo, SIFT, 6DOF pose estimation, tracking, ICP, graphics processing unit, benchmark'
p189
tp190
sI121372841
(I121372841
S'Subcategory-Aware Object Classification'
p191
S'Jian Dong, Wei Xia, Qiang Chen, Jianshi Feng, Zhongyang Huang, Shuicheng Yan'
p192
S'Dong_Subcategory-Aware_Object_Classification_2013_CVPR_paper.pdf'
p193
S'Subcategory Mining, Classification, Ambiguity Modeling'
p194
tp195
sI884902058
(I884902058
S'A Sentence Is Worth a Thousand Pixels'
p196
S'Sanja Fidler, Abhishek Sharma, Raquel Urtasun'
p197
S'Fidler_A_Sentence_Is_2013_CVPR_paper.pdf'
p198
S'Scene understanding, Images and text, Holistic scene models'
p199
tp200
sI610558128
(I610558128
S'Detecting Changes in 3D Structure of a Scene from Multi-view Images Captured by a Vehicle-Mounted Camera'
p201
S'Ken Sakurada, Takayuki Okatani, Koichiro Deguchi'
p202
S'Sakurada_Detecting_Changes_in_2013_CVPR_paper.pdf'
p203
S''
tp204
sI665979057
(I665979057
S'Discrete MRF Inference of Marginal Densities for Non-uniformly Discretized Variable Space'
p205
S'Masaki Saito, Takayuki Okatani, Koichiro Deguchi'
p206
S'Saito_Discrete_MRF_Inference_2013_CVPR_paper.pdf'
p207
S'Markov Random Fields, mean field approximation, belief propagation, marginal density'
p208
tp209
sI221554035
(I221554035
S'Composite Statistical Inference for Semantic Segmentation'
p210
S'Fuxin Li, Joao Carreira, Guy Lebanon, Cristian Sminchisescu'
p211
S'Li_Composite_Statistical_Inference_2013_CVPR_paper.pdf'
p212
S'composite statistical inference, composite likelihood, semantic segmentation, recombination of segments'
p213
tp214
sI738726068
(I738726068
S'Learning without Human Scores for Blind Image Quality Assessment'
p215
S'Wufeng Xue, Lei Zhang, Xuanqin Mou'
p216
S'Xue_Learning_without_Human_2013_CVPR_paper.pdf'
p217
S'clustering, qualiyt aware, bind image quality assessment'
p218
tp219
sI42600631
(I42600631
S'Graph-Based Discriminative Learning for Location Recognition'
p220
S'Song Cao, Noah Snavely'
p221
S'Cao_Graph-Based_Discriminative_Learning_2013_CVPR_paper.pdf'
p222
S'image graph, location recognition, discriminative learning'
p223
tp224
sI916009145
(I916009145
S'Capturing Layers in Image Collections with Componential Models: From the Layered Epitome to the Componential Counting Grid'
p225
S'Alessandro Perina, Nebojsa Jojic'
p226
S'Perina_Capturing_Layers_in_2013_CVPR_paper.pdf'
p227
S'Bag of Words, Epitome, Scene Understanding, Generative Model, Place Recognition'
p228
tp229
sI88275132
(I88275132
S'Minimum Uncertainty Gap for Robust Visual Tracking'
p230
S'Junseok Kwon, Kyoung Mu Lee'
p231
S'Kwon_Minimum_Uncertainty_Gap_2013_CVPR_paper.pdf'
p232
S''
tp233
sI581468351
(I581468351
S'Monocular Template-Based 3D Reconstruction of Extensible Surfaces with Local Linear Elasticity'
p234
S'Abed Malti, Richard Hartley, Adrien Bartoli, Jae-Hak Kim'
p235
S'Malti_Monocular_Template-Based_3D_2013_CVPR_paper.pdf'
p236
S''
tp237
sI177125574
(I177125574
S'Manhattan Junction Catalogue for Spatial Reasoning of Indoor Scenes'
p238
S'Srikumar Ramalingam, Jaishanker K. Pillai, Arpit Jain, Yuichi Taguchi'
p239
S'Ramalingam_Manhattan_Junction_Catalogue_2013_CVPR_paper.pdf'
p240
S'single view 3D reconstruction, line drawing, junction detection, higher order CRF, structured SVM'
p241
tp242
sI118485193
(I118485193
S'Depth Acquisition from Density Modulated Binary Patterns'
p243
S'Zhe Yang, Zhiwei Xiong, Yueyi Zhang, Jiao Wang, Feng Wu'
p244
S'Yang_Depth_Acquisition_from_2013_CVPR_paper.pdf'
p245
S'Depth acquisition, binary pattern, density modulation, block matching, phase shifting'
p246
tp247
sI177813706
(I177813706
S'FrameBreak: Dramatic Image Extrapolation by Guided Shift-Maps'
p248
S'Yinda Zhang, Jianxiong Xiao, James Hays, Ping Tan'
p249
S'Zhang_FrameBreak_Dramatic_Image_2013_CVPR_paper.pdf'
p250
S'image extrapolation, panorama, guided shift-map'
p251
tp252
sI81324240
(I81324240
S'Learning Compact Binary Codes for Visual Tracking'
p253
S'Xi Li, Chunhua Shen, Anthony Dick, Anton van_den_Hengel'
p254
S'Li_Learning_Compact_Binary_2013_CVPR_paper.pdf'
p255
S'Visual Tracking, appearance model, hashing, hypergraph, SVM'
p256
tp257
sI727924945
(I727924945
S'Classification of Tumor Histology via Morphometric Context'
p258
S'Hang Chang, Alexander Borowsky, Paul Spellman, Bahram Parvin'
p259
S'Chang_Classification_of_Tumor_2013_CVPR_paper.pdf'
p260
S''
tp261
sI219881689
(I219881689
S'Cumulative Attribute Space for Age and Crowd Density Estimation'
p262
S'Ke Chen, Shaogang Gong, Tao Xiang, Chen Change Loy'
p263
S'Chen_Cumulative_Attribute_Space_2013_CVPR_paper.pdf'
p264
S'Cumulative attributes, Age estimation, Crowd density estimation'
p265
tp266
sI602910945
(I602910945
S'Kernel Methods on the Riemannian Manifold of Symmetric Positive Definite Matrices'
p267
S'Sadeep Jayasumana, Richard Hartley, Mathieu Salzmann, Hongdong Li, Mehrtash Harandi'
p268
S'Jayasumana_Kernel_Methods_on_2013_CVPR_paper.pdf'
p269
S'Riemannian manifolds, RKHS, Hilbert space embedding, Symmetric positive definite matrices, kernel methods, positive definite kernels'
p270
tp271
sI600260836
(I600260836
S'Dense Object Reconstruction with Semantic Priors'
p272
S'Sid Yingze Bao, Manmohan Chandraker, Yuanqing Lin, Silvio Savarese'
p273
S'Bao_Dense_Object_Reconstruction_2013_CVPR_paper.pdf'
p274
S''
tp275
sI588048614
(I588048614
S'Spatio-temporal Depth Cuboid Similarity Feature for Activity Recognition Using Depth Camera'
p276
S'Lu Xia, J.K. Aggarwal'
p277
S'Xia_Spatio-temporal_Depth_Cuboid_2013_CVPR_paper.pdf'
p278
S'Spatio temporal interest point, depth image, activity recognition, Kinect'
p279
tp280
sI497078508
(I497078508
S'Tag Taxonomy Aware Dictionary Learning for Region Tagging'
p281
S'Jingjing Zheng, Zhuolin Jiang'
p282
S'Zheng_Tag_Taxonomy_Aware_2013_CVPR_paper.pdf'
p283
S''
tp284
sI3135729
(I3135729
S'Five Shades of Grey for Fast and Reliable Camera Pose Estimation'
p285
S'Adam Herout, Istvn Szentandrsi, Michal Zachari, Markta Dubsk, Rudolf Kajan'
p286
S'Herout_Five_Shades_of_2013_CVPR_paper.pdf'
p287
S'Fiduciary Markers, Uniform Marker Field, Checkerboard Detection, Camera Pose Estimation, Augmented Reality, De-Bruijn Tori, Perfect Maps, Visually Appealing Markers'
p288
tp289
sI11313394
(I11313394
S'Social Role Discovery in Human Events'
p290
S'Vignesh Ramanathan, Bangpeng Yao, Li Fei-Fei'
p291
S'Ramanathan_Social_Role_Discovery_2013_CVPR_paper.pdf'
p292
S''
tp293
sI541532406
(I541532406
S'Simultaneous Super-Resolution of Depth and Images Using a Single Camera'
p294
S'Hee Seok Lee, Kuoung Mu Lee'
p295
S'Lee_Simultaneous_Super-Resolution_of_2013_CVPR_paper.pdf'
p296
S'Dense 3D reconstruction, Image super-resolution, Visual SLAM'
p297
tp298
sI895850743
(I895850743
S'Learning Separable Filters'
p299
S'Roberto Rigamonti, Amos Sironi, Vincent Lepetit, Pascal Fua'
p300
S'Rigamonti_Learning_Separable_Filters_2013_CVPR_paper.pdf'
p301
S''
tp302
sI389744892
(I389744892
S'Rotation, Scaling and Deformation Invariant Scattering for Texture Discrimination'
p303
S'Laurent Sifre, Stphane Mallat'
p304
S'Sifre_Rotation_Scaling_and_2013_CVPR_paper.pdf'
p305
S'scattering, invariant, affine, texture, classification, deep, neural, network, wavelet, roto-translation, rotation, translation, scaling, shearing'
p306
tp307
sI871721219
(I871721219
S'Dictionary Learning from Ambiguously Labeled Data'
p308
S'Yi-Chen Chen, Vishal M. Patel, Jaishanker K. Pillai, Rama Chellappa, P. Jonathon Phillips'
p309
S'Chen_Dictionary_Learning_from_2013_CVPR_paper.pdf'
p310
S'Ambiguously labeled learning, dictionary-based learning'
p311
tp312
sI78551304
(I78551304
S'SLAM++: Simultaneous Localisation and Mapping at the Level of Objects'
p313
S'Renato F. Salas-Moreno, Richard A. Newcombe, Hauke Strasdat, Paul H.J. Kelly, Andrew J. Davison'
p314
S'Salas-Moreno_SLAM_Simultaneous_Localisation_2013_CVPR_paper.pdf'
p315
S'SLAM, objects, object recognition, object-oriented, GPGPU, scene understanding, real-time, augmented reality, ICP, KinectFusion'
p316
tp317
sI212848913
(I212848913
S'Correspondence-Less Non-rigid Registration of Triangular Surface Meshes'
p318
S'Zsolt Snta, Zoltan Kato'
p319
S'Santa_Correspondence-Less_Non-rigid_Registration_2013_CVPR_paper.pdf'
p320
S'Registration, Thin Plate Spline, Sufrace Mesh, 3D object'
p321
tp322
sI439718165
(I439718165
S'Locally Aligned Feature Transforms across Views'
p323
S'Wei Li, Xiaogang Wang'
p324
S'Li_Locally_Aligned_Feature_2013_CVPR_paper.pdf'
p325
S''
tp326
sI139487514
(I139487514
S'Detecting and Naming Actors in Movies Using Generative Appearance Models'
p327
S'Vineet Gandhi, Remi Ronfard'
p328
S'Gandhi_Detecting_and_Naming_2013_CVPR_paper.pdf'
p329
S'Human detection and identification'
p330
tp331
sI707430684
(I707430684
S'City-Scale Change Detection in Cadastral 3D Models Using Images'
p332
S'Aparna Taneja, Luca Ballan, Marc Pollefeys'
p333
S'Taneja_City-Scale_Change_Detection_2013_CVPR_paper.pdf'
p334
S'Change Detection, 3D modeling, Large scale computer vision application'
p335
tp336
sI475437344
(I475437344
S'Fast Patch-Based Denoising Using Approximated Patch Geodesic Paths'
p337
S'Xiaogang Chen, Sing Bing Kang, Jie Yang, Jingyi Yu'
p338
S'Chen_Fast_Patch-Based_Denoising_2013_CVPR_paper.pdf'
p339
S''
tp340
sI349311267
(I349311267
S'Semi-supervised Node Splitting for Random Forest Construction'
p341
S'Xiao Liu, Mingli Song, Dacheng Tao, Zicheng Liu, Luming Zhang, Chun Chen, Jiajun Bu'
p342
S'Liu_Semi-supervised_Node_Splitting_2013_CVPR_paper.pdf'
p343
S'semi-supervised learning, node splitting, random forest'
p344
tp345
sI398252329
(I398252329
S'Robust Multi-resolution Pedestrian Detection in Traffic Scenes'
p346
S'Junjie Yan, Xucong Zhang, Zhen Lei, Shengcai Liao, Stan Z. Li'
p347
S'Yan_Robust_Multi-resolution_Pedestrian_2013_CVPR_paper.pdf'
p348
S'Pedestrian Detection, Multi-Resolution, Multi-task Learning, DPM'
p349
tp350
sI618238257
(I618238257
S'GRASP Recurring Patterns from a Single View'
p351
S'Jingchen Liu, Yanxi Liu'
p352
S'Liu_GRASP_Recurring_Patterns_2013_CVPR_paper.pdf'
p353
S'recurring pattern, unsupervised object discovery'
p354
tp355
sI585711927
(I585711927
S'Background Modeling Based on Bidirectional Analysis'
p356
S'Atsushi Shimada, Hajime Nagahara, Rin-ichiro Taniguchi'
p357
S'Shimada_Background_Modeling_Based_2013_CVPR_paper.pdf'
p358
S''
tp359
sI320766264
(I320766264
S'Query Adaptive Similarity for Large Scale Object Retrieval'
p360
S'Danfeng Qin, Christian Wengert, Luc Van_Gool'
p361
S'Qin_Query_Adaptive_Similarity_2013_CVPR_paper.pdf'
p362
S'Object Retrieval, Query Adaptive Similarity, Feature-Feature Similarity, Negative Examples, Probabilistic Framework'
p363
tp364
sI286751033
(I286751033
S'A Genetic Algorithm-Based Solver for Very Large Jigsaw Puzzles'
p365
S'Dror Sholomon, Omid David, Nathan S. Netanyahu'
p366
S'Sholomon_A_Genetic_Algorithm-Based_2013_CVPR_paper.pdf'
p367
S'Genetic Algorithms, Jigsaw Puzzle'
p368
tp369
sI495317312
(I495317312
S'Bottom-Up Segmentation for Top-Down Detection'
p370
S'Sanja Fidler, Roozbeh Mottaghi, Alan Yuille, Raquel Urtasun'
p371
S'Fidler_Bottom-Up_Segmentation_for_2013_CVPR_paper.pdf'
p372
S'Object detection, object class recognition, object segmentation'
p373
tp374
sI268689736
(I268689736
S'Statistical Textural Distinctiveness for Salient Region Detection in Natural Images'
p375
S'Christian Scharfenberger, Alexander Wong, Khalil Fergani, John S. Zelek, David A. Clausi'
p376
S'Scharfenberger_Statistical_Textural_Distinctiveness_2013_CVPR_paper.pdf'
p377
S'Statistical textural distinctiveness, saliency computation, sparse texture model, low level image processing'
p378
tp379
sI605428056
(I605428056
S'Lp-Norm IDF for Large Scale Image Search'
p380
S'Liang Zheng, Shengjin Wang, Ziqiong Liu, Qi Tian'
p381
S'Zheng_Lp-Norm_IDF_for_2013_CVPR_paper.pdf'
p382
S''
tp383
sI628638045
(I628638045
S'Single Image Calibration of Multi-axial Imaging Systems'
p384
S'Amit Agrawal, Srikumar Ramalingam'
p385
S'Agrawal_Single_Image_Calibration_2013_CVPR_paper.pdf'
p386
S'calibration, catadioptric, spherical mirror, wide-angle, axial'
p387
tp388
sI132577635
(I132577635
S'Label-Embedding for Attribute-Based Classification'
p389
S'Zeynep Akata, Florent Perronnin, Zaid Harchaoui, Cordelia Schmid'
p390
S'Akata_Label-Embedding_for_Attribute-Based_2013_CVPR_paper.pdf'
p391
S''
tp392
sI462206694
(I462206694
S'Finding Things: Image Parsing with Regions and Per-Exemplar Detectors'
p393
S'Joseph Tighe, Svetlana Lazebnik'
p394
S'Tighe_Finding_Things_Image_2013_CVPR_paper.pdf'
p395
S'semantic segmentation, image parsing, parsing, computer vision, recognition'
p396
tp397
sI857467245
(I857467245
S'Part Discovery from Partial Correspondence'
p398
S'Subhransu Maji, Gregory Shakhnarovich'
p399
S'Maji_Part_Discovery_from_2013_CVPR_paper.pdf'
p400
S''
tp401
sI653369177
(I653369177
S'Fast Convolutional Sparse Coding'
p402
S'Hilton Bristow, Anders Eriksson, Simon Lucey'
p403
S'Bristow_Fast_Convolutional_Sparse_2013_CVPR_paper.pdf'
p404
S'ADMM, sparse coding, fourier, convolution, deep learning'
p405
tp406
sI79995249
(I79995249
S'Learning Locally-Adaptive Decision Functions for Person Verification'
p407
S'Zhen Li, Shiyu Chang, Feng Liang, Thomas S. Huang, Liangliang Cao, John R. Smith'
p408
S'Li_Learning_Locally-Adaptive_Decision_2013_CVPR_paper.pdf'
p409
S'Person Verification, Face Verification, Pedestrian Re-identification'
p410
tp411
sI54616440
(I54616440
S'A Fully-Connected Layered Model of Foreground and Background Flow'
p412
S'Deqing Sun, Jonas Wulff, Erik B. Sudderth, Hanspeter Pfister, Michael J. Black'
p413
S'Sun_A_Fully-Connected_Layered_2013_CVPR_paper.pdf'
p414
S''
tp415
sI11985275
(I11985275
S'Perceptual Organization and Recognition of Indoor Scenes from RGB-D Images'
p416
S'Saurabh Gupta, Pablo Arbelez, Jitendra Malik'
p417
S'Gupta_Perceptual_Organization_and_2013_CVPR_paper.pdf'
p418
S'RGBD Segmentation, RGBD Recognition'
p419
tp420
sI643508613
(I643508613
S'Joint 3D Scene Reconstruction and Class Segmentation'
p421
S'Christian Hne, Christopher Zach, Andrea Cohen, Roland Angst, Marc Pollefeys'
p422
S'Hane_Joint_3D_Scene_2013_CVPR_paper.pdf'
p423
S''
tp424
sI505446790
(I505446790
S'Determining Motion Directly from Normal Flows Upon the Use of a Spherical Eye Platform'
p425
S'Tak-Wai Hui, Ronald Chung'
p426
S'Hui_Determining_Motion_Directly_2013_CVPR_paper.pdf'
p427
S''
tp428
sI936617415
(I936617415
S'Texture Enhanced Image Denoising via Gradient Histogram Preservation'
p429
S'Wangmeng Zuo, Lei Zhang, Chunwei Song, David Zhang'
p430
S'Zuo_Texture_Enhanced_Image_2013_CVPR_paper.pdf'
p431
S''
tp432
sI821604747
(I821604747
S'Robust Estimation of Nonrigid Transformation for Point Set Registration'
p433
S'Jiayi Ma, Ji Zhao, Jinwen Tian, Zhuowen Tu, Alan L. Yuille'
p434
S'Ma_Robust_Estimation_of_2013_CVPR_paper.pdf'
p435
S'L2E, registration, outlier, nonrigid, regularization'
p436