forked from talengu/paper_seacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpami_papers.txt
6601 lines (6601 loc) · 508 KB
/
pami_papers.txt
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
PAMI,,2022,State of the Journal Editorial.
PAMI,,2022,Editorial.
PAMI,,2022,A Comprehensive and Modularized Statistical Framework for Gradient Norm Equality in Deep Neural Networks.
PAMI,,2022,A Fast Binary Quadratic Programming Solver Based on Stochastic Neighborhood Search.
PAMI,,2022,A General Differentiable Mesh Renderer for Image-Based 3D Reasoning.
PAMI,,2022,A Geometrical Perspective on Image Style Transfer With Adversarial Learning.
PAMI,,2022,Average Top-k Aggregate Loss for Supervised Learning.
PAMI,,2022,Ball $k$k-Means: Fast Adaptive Clustering With No Bounds.
PAMI,,2022,BDCN: Bi-Directional Cascade Network for Perceptual Edge Detection.
PAMI,,2022,Deep Photometric Stereo Networks for Determining Surface Normal and Reflectances.
PAMI,,2022,Deep Photometric Stereo for Non-Lambertian Surfaces.
PAMI,,2022,DeepSPIO: Super Paramagnetic Iron Oxide Particle Quantification Using Deep Learning in Magnetic Resonance Imaging.
PAMI,,2022,Event-Based Vision: A Survey.
PAMI,,2022,GarNet++: Improving Fast and Accurate Static 3D Cloth Draping by Curvature Loss.
PAMI,,2022,Homography-Based Minimal-Case Relative Pose Estimation With Known Gravity Direction.
PAMI,,2022,Improving Generative Adversarial Networks With Local Coordinate Coding.
PAMI,,2022,Improving Machine Vision Using Human Perceptual Representations: The Case of Planar Reflection Symmetry for Object Classification.
PAMI,,2022,Index Networks.
PAMI,,2022,Joint Camera Spectral Response Selection and Hyperspectral Image Recovery.
PAMI,,2022,Label Independent Memory for Semi-Supervised Few-Shot Video Classification.
PAMI,,2022,Learning Meta-Distance for Sequences by Learning a Ground Metric via Virtual Sequence Regression.
PAMI,,2022,Learning Representations for Facial Actions From Unlabeled Videos.
PAMI,,2022,MRA-Net: Improving VQA Via Multi-Modal Relation Attention Network.
PAMI,,2022,Multiview Clustering: A Scalable and Parameter-Free Bipartite Graph Fusion Method.
PAMI,,2022,On Learning Disentangled Representations for Gait Recognition.
PAMI,,2022,Real-Time High Speed Motion Prediction Using Fast Aperture-Robust Event-Driven Visual Flow.
PAMI,,2022,RGB-D SLAM in Dynamic Environments Using Point Correlations.
PAMI,,2022,Robust Bi-Stochastic Graph Regularized Matrix Factorization for Data Clustering.
PAMI,,2022,Scalable and Practical Natural Gradient for Large-Scale Deep Learning.
PAMI,,2022,Sharing Matters for Generalization in Deep Metric Learning.
PAMI,,2022,SimVODIS: Simultaneous Visual Odometry, Object Detection, and Instance Segmentation.
PAMI,,2022,Space-Time Memory Networks for Video Object Segmentation With User Guidance.
PAMI,,2022,Tasks Integrated Networks: Joint Detection and Retrieval for Image Search.
PAMI,,2022,Towards Age-Invariant Face Recognition.
PAMI,,2022,Tracking the Adaptation and Compensation Processes of Patients' Brain Arterial Network to an Evolving Glioblastoma.
PAMI,,2022,U2Fusion: A Unified Unsupervised Image Fusion Network.
PAMI,,2022,Unsupervised 3D Reconstruction and Grouping of Rigid and Non-Rigid Categories.
PAMI,,2022,Unsupervised Heterogeneous Coupling Learning for Categorical Representation.
PAMI,,2022,AlignSeg: Feature-Aligned Segmentation Networks.
PAMI,,2021,3D Rigid Motion Segmentation with Mixed and Unknown Number of Models.
PAMI,,2021,A Framework of Composite Functional Gradient Methods for Generative Adversarial Models.
PAMI,,2021,A General Decoupled Learning Framework for Parameterized Image Operators.
PAMI,,2021,A Microfacet-Based Model for Photometric Stereo with General Isotropic Reflectance.
PAMI,,2021,Bayesian Low-Tubal-Rank Robust Tensor Factorization with Multi-Rank Determination.
PAMI,,2021,Blind Deblurring of Barcodes via Kullback-Leibler Divergence.
PAMI,,2021,Community Detection Using Restrained Random-Walk Similarity.
PAMI,,2021,Deep Affinity Network for Multiple Object Tracking.
PAMI,,2021,Distributed Variational Representation Learning.
PAMI,,2021,Multiset Feature Learning for Highly Imbalanced Data Classification.
PAMI,,2021,On Learning 3D Face Morphable Model from In-the-Wild Images.
PAMI,,2021,OpenPose: Realtime Multi-Person 2D Pose Estimation Using Part Affinity Fields.
PAMI,,2021,Recipe1M+: A Dataset for Learning Cross-Modal Embeddings for Cooking Recipes and Food Images.
PAMI,,2021,Relative Saliency and Ranking: Models, Metrics, Data and Benchmarks.
PAMI,,2021,Revisiting Video Saliency Prediction in the Deep Learning Era.
PAMI,,2021,Robust Low-Rank Tensor Recovery with Rectification and Alignment.
PAMI,,2021,Rotation Averaging with the Chordal Distance: Global Minimizers and Strong Duality.
PAMI,,2021,RotationNet for Joint Object Categorization and Unsupervised Pose Estimation from Multi-View Images.
PAMI,,2021,Simultaneous Fidelity and Regularization Learning for Image Restoration.
PAMI,,2021,Stereo Matching Using Multi-Level Cost Volume and Multi-Scale Feature Constancy.
PAMI,,2021,The Perils and Pitfalls of Block Design for EEG Classification Experiments.
PAMI,,2021,Towards Safe Weakly Supervised Learning.
PAMI,,2021,Variational Context: Exploiting Visual and Textual Context for Grounding Referring Expressions.
PAMI,,2021,Visual Tracking via Dynamic Memory Networks.
PAMI,,2021,Absolute Pose Estimation of Central Cameras Using Planar Regions.
PAMI,,2021,DAC-SDC Low Power Object Detection Challenge for UAV Applications.
PAMI,,2021,Deep Differentiable Random Forests for Age Estimation.
PAMI,,2021,Discriminative Video Representation Learning Using Support Vector Classifiers.
PAMI,,2021,Dual Adversarial Transfer for Sequence Labeling.
PAMI,,2021,Fast Exact Evaluation of Univariate Kernel Sums.
PAMI,,2021,Faster First-Order Methods for Stochastic Non-Convex Optimization on Riemannian Manifolds.
PAMI,,2021,Graph Embedding Using Frequency Filtering.
PAMI,,2021,Inferring Latent Domains for Unsupervised Deep Domain Adaptation.
PAMI,,2021,Learning Continuous Face Age Progression: A Pyramid of GANs.
PAMI,,2021,Learning Energy-Based Spatial-Temporal Generative ConvNets for Dynamic Patterns.
PAMI,,2021,Mask TextSpotter: An End-to-End Trainable Neural Network for Spotting Text with Arbitrary Shapes.
PAMI,,2021,Matrix Completion with Deterministic Sampling: Theories and Methods.
PAMI,,2021,Neural Image Compression for Gigapixel Histopathology Image Analysis.
PAMI,,2021,Parallel and Scalable Heat Methods for Geodesic Distance Computation.
PAMI,,2021,Pattern of Local Gravitational Force (PLGF): A Novel Local Image Descriptor.
PAMI,,2021,Polyhedral Conic Classifiers for Computer Vision Applications and Open Set Recognition.
PAMI,,2021,Reconstruct as Far as You Can: Consensus of Non-Rigid Reconstruction from Feasible Regions.
PAMI,,2021,Reconstruction of Geometric and Optical Parameters of Non-Planar Objects with Thin Film.
PAMI,,2021,Res2Net: A New Multi-Scale Backbone Architecture.
PAMI,,2021,SafePredict: A Meta-Algorithm for Machine Learning That Uses Refusals to Guarantee Correctness.
PAMI,,2021,Saliency Prediction in the Deep Learning Era: Successes and Limitations.
PAMI,,2021,Selfie Video Stabilization.
PAMI,,2021,Switchable Normalization for Learning-to-Normalize Deep Representation.
PAMI,,2021,Virtual Point Removal for Large-Scale 3D Point Clouds with Multiple Glass Planes.
PAMI,,2021,Matching Seqlets: An Unsupervised Approach for Locality Preserving Sequence Matching.
PAMI,,2021,A Graph-Based Approach for Making Consensus-Based Decisions in Image Search and Person Re-Identification.
PAMI,,2021,A Review of Domain Adaptation without Target Labels.
PAMI,,2021,Adversarial Distillation for Learning with Privileged Provisions.
PAMI,,2021,Approximate Graph Laplacians for Multimodal Data Clustering.
PAMI,,2021,Are Large-Scale 3D Models Really Necessary for Accurate Visual Localization?
PAMI,,2021,Complex-Valued Disparity: Unified Depth Model of Depth from Stereo, Depth from Focus, and Depth from Defocus Based on the Light Field Gradient.
PAMI,,2021,Deterministic Approximate Methods for Maximum Consensus Robust Fitting.
PAMI,,2021,Harmonized Multimodal Learning with Gaussian Process Latent Variable Models.
PAMI,,2021,High-Dimensional Dense Residual Convolutional Neural Network for Light Field Reconstruction.
PAMI,,2021,Interpretable Visual Question Answering by Reasoning on Dependency Trees.
PAMI,,2021,Learning Part-based Convolutional Features for Person Re-Identification.
PAMI,,2021,Loss Decomposition and Centroid Estimation for Positive and Unlabeled Learning.
PAMI,,2021,MEMC-Net: Motion Estimation and Motion Compensation Driven Neural Network for Video Interpolation and Enhancement.
PAMI,,2021,MFQE 2.0: A New Approach for Multi-Frame Quality Enhancement on Compressed Video.
PAMI,,2021,MTFH: A Matrix Tri-Factorization Hashing Framework for Efficient Cross-Modal Retrieval.
PAMI,,2021,Nonlinear Regression via Deep Negative Correlation Learning.
PAMI,,2021,On the Global Geometry of Sphere-Constrained Sparse Blind Deconvolution.
PAMI,,2021,Sequence-to-Segments Networks for Detecting Segments in Videos.
PAMI,,2021,SEWA DB: A Rich Database for Audio-Visual Emotion and Sentiment Research in the Wild.
PAMI,,2021,Surface-Aware Blind Image Deblurring.
PAMI,,2021,Topology-Aware Non-Rigid Point Cloud Registration.
PAMI,,2021,Video Anomaly Detection with Sparse Coding Inspired Deep Neural Networks.
PAMI,,2021,3D Fingerprint Recognition based on Ridge-Valley-Guided 3D Reconstruction and 3D Topology Polymer Feature Extraction.
PAMI,,2021,A Differential Approach for Gaze Estimation.
PAMI,,2021,Adversarial Attack Type I: Cheat Classifiers by Significant Changes.
PAMI,,2021,Hierarchical Long Short-Term Concurrent Memory for Human Interaction Recognition.
PAMI,,2021,State of the Journal Editorial.
PAMI,,2021,Adversarial Margin Maximization Networks.
PAMI,,2021,Affine Invariants of Vector Fields.
PAMI,,2021,Appearance and Pose-Conditioned Human Image Generation Using Deformable GANs.
PAMI,,2021,Assessing Transferability From Simulation to Reality for Reinforcement Learning.
PAMI,,2021,Bayesian Joint Matrix Decomposition for Data Integration with Heterogeneous Noise.
PAMI,,2021,Bilinear Image Translation for Temporal Analysis of Photo Collections.
PAMI,,2021,Corner Detection Using Second-Order Generalized Gaussian Directional Derivative Representations.
PAMI,,2021,Deep Depth from Uncalibrated Small Motion Clip.
PAMI,,2021,Effects of Image Degradation and Degradation Removal to CNN-Based Image Classification.
PAMI,,2021,Exploring Explicit Domain Supervision for Latent Space Disentanglement in Unpaired Image-to-Image Translation.
PAMI,,2021,Forecasting People Trajectories and Head Poses by Jointly Reasoning on Tracklets and Vislets.
PAMI,,2021,Ideals of the Multiview Variety.
PAMI,,2021,InLoc: Indoor Visual Localization with Dense Matching and View Synthesis.
PAMI,,2021,Interpreting the Rhetoric of Visual Advertisements.
PAMI,,2021,Joint Embedding of Graphs.
PAMI,,2021,Large Scale Shadow Annotation and Detection Using Lazy Annotation and Stacked CNNs.
PAMI,,2021,Orthogonal Deep Neural Networks.
PAMI,,2021,Semi-Supervised Semantic Segmentation With High- and Low-Level Consistency.
PAMI,,2021,Sinusoidal Sampling Enhanced Compressive Camera for High Speed Imaging.
PAMI,,2021,SpaRTA Tracking Across Occlusions via Partitioning of 3D Clouds of Points.
PAMI,,2021,Visual Semantic Information Pursuit: A Survey.
PAMI,,2021,Weakly-Supervised Learning of Category-Specific 3D Object Shapes.
PAMI,,2021,A Sparse Sampling-Based Framework for Semantic Fast-Forward of First-Person Videos.
PAMI,,2021,Deep Multi-View Enhancement Hashing for Image Retrieval.
PAMI,,2021,Gliding Vertex on the Horizontal Bounding Box for Multi-Oriented Object Detection.
PAMI,,2021,Ordered or Orderless: A Revisit for Video Based Person Re-Identification.
PAMI,,2021,AD-VAT+: An Asymmetric Dueling Mechanism for Learning and Understanding Visual Active Tracking.
PAMI,,2021,Cascade R-CNN: High Quality Object Detection and Instance Segmentation.
PAMI,,2021,DBF: Dynamic Belief Fusion for Combining Multiple Object Detectors.
PAMI,,2021,Dynamical Hyperparameter Optimization via Deep Reinforcement Learning in Tracking.
PAMI,,2021,Exploring Discriminative Word-Level Domain Contexts for Multi-Domain Neural Machine Translation.
PAMI,,2021,Generalized Separable Nonnegative Matrix Factorization.
PAMI,,2021,GOT-10k: A Large High-Diversity Benchmark for Generic Object Tracking in the Wild.
PAMI,,2021,Image-Based 3D Object Reconstruction: State-of-the-Art and Trends in the Deep Learning Era.
PAMI,,2021,Learning to Localize Sound Sources in Visual Scenes: Analysis and Applications.
PAMI,,2021,On Symbiosis of Attribute Prediction and Semantic Segmentation.
PAMI,,2021,Ordinal Multi-Task Part Segmentation With Recurrent Prior Generation.
PAMI,,2021,Person Re-Identification With Deep Kronecker-Product Matching and Group-Shuffling Random Walk.
PAMI,,2021,Quicker ADC : Unlocking the Hidden Potential of Product Quantization With SIMD.
PAMI,,2021,Scalar Quantization as Sparse Least Square Optimization.
PAMI,,2021,Structure From Motion on XSlit Cameras.
PAMI,,2021,Superpixel Soup: Monocular Dense 3D Reconstruction of a Complex Dynamic Scene.
PAMI,,2021,Tensor Low-Rank Representation for Data Recovery and Clustering.
PAMI,,2021,Text-Guided Neural Network Training for Image Recognition in Natural Scenes and Medicine.
PAMI,,2021,Using Statistical Measures and Machine Learning for Graph Reduction to Solve Maximum Weight Clique Problems.
PAMI,,2021,Variational Bayesian Inference for Audio-Visual Tracking of Multiple Speakers.
PAMI,,2021,Vision Models for Wide Color Gamut Imaging in Cinema.
PAMI,,2021,What is a Tabby? Interpretable Model Decisions by Learning Attribute-Based Classification Criteria.
PAMI,,2021,Learning From Large-Scale Noisy Web Data With Ubiquitous Reweighting for Image Classification.
PAMI,,2021,Automatic Detection of Pain from Facial Expressions: A Survey.
PAMI,,2021,A Lightweight Neural Network for Monocular View Generation With Occlusion Handling.
PAMI,,2021,A Memory- and Accuracy-Aware Gaussian Parameter-Based Stereo Matching Using Confidence Measure.
PAMI,,2021,A Performance Evaluation of Correspondence Grouping Methods for 3D Rigid Data Matching.
PAMI,,2021,Anytime Recognition with Routing Convolutional Networks.
PAMI,,2021,Deep Clustering: On the Link Between Discriminative Models and K-Means.
PAMI,,2021,Deep Non-Negative Matrix Factorization Architecture Based on Underlying Basis Images Learning.
PAMI,,2021,Deep Regionlets: Blended Representation and Deep Learning for Generic Object Detection.
PAMI,,2021,Direction Concentration Learning: Enhancing Congruency in Machine Learning.
PAMI,,2021,Estimating Feature-Label Dependence Using Gini Distance Statistics.
PAMI,,2021,High Speed and High Dynamic Range Video with an Event Camera.
PAMI,,2021,Learning a Fixed-Length Fingerprint Representation.
PAMI,,2021,Learning Regional Attraction for Line Segment Detection.
PAMI,,2021,On the Importance of Visual Context for Data Augmentation in Scene Understanding.
PAMI,,2021,Person Re-Identification by Contour Sketch Under Moderate Clothing Change.
PAMI,,2021,Self-Paced Collaborative and Adversarial Network for Unsupervised Domain Adaptation.
PAMI,,2021,Single Day Outdoor Photometric Stereo.
PAMI,,2021,Time-Resolved Far Infrared Light Transport Decomposition for Thermal Photometric Stereo.
PAMI,,2021,Towards Robust Discriminative Projections Learning via Non-Greedy $\ell _{2, 1}$ℓ2, 1-Norm MinMax.
PAMI,,2021,Visual Scanpath Prediction Using IOR-ROI Recurrent Mixture Density Network.
PAMI,,2021,Adversarial Metric Attack and Defense for Person Re-Identification.
PAMI,,2021,Comparing Graph Clusterings: Set Partition Measures vs. Graph-Aware Measures.
PAMI,,2021,Enhanced Tensor RPCA and its Application.
PAMI,,2021,NWPU-Crowd: A Large-Scale Benchmark for Crowd Counting and Localization.
PAMI,,2021,Robust Multi-Task Learning With Flexible Manifold Constraint.
PAMI,,2021,SensitiveNets: Learning Agnostic Representations with Application to Face Images.
PAMI,,2021,Spherical Principal Curves.
PAMI,,2021,Correction to "Nonlinear Regression via Deep Negative Correlation Learning".
PAMI,,2021,Guest Editorial: Introduction to the Special Section on Computational Photography.
PAMI,,2021,Learning Optimal Wavefront Shaping for Multi-Channel Imaging.
PAMI,,2021,Exploiting Wavelength Diversity for High Resolution Time-of-Flight 3D Imaging.
PAMI,,2021,High Resolution, Deep Imaging Using Confocal Time-of-Flight Diffuse Optical Tomography.
PAMI,,2021,Non-Rigid Shape From Water.
PAMI,,2021,SASSI - Super-Pixelated Adaptive Spatio-Spectral Imaging.
PAMI,,2021,Designing Display Pixel Layouts for Under-Panel Cameras.
PAMI,,2021,Non-line-of-Sight Imaging via Neural Transient Fields.
PAMI,,2021,A Bayesian Formulation of Coherent Point Drift.
PAMI,,2021,An Accurate and Efficient Voting Scheme for a Maximally All-Inlier 3D Correspondence Set.
PAMI,,2021,Automated Extraction of Mutual Independence Patterns Using Bayesian Comparison of Partition Models.
PAMI,,2021,BlockQNN: Efficient Block-Wise Neural Network Architecture Generation.
PAMI,,2021,Deep Residual Correction Network for Partial Domain Adaptation.
PAMI,,2021,Dense Cross-Modal Correspondence Estimation With the Deep Self-Correlation Descriptor.
PAMI,,2021,Domain Stylization: A Fast Covariance Matching Framework Towards Domain Adaptation.
PAMI,,2021,Explicit Filterbank Learning for Neural Image Style Transfer and Image Processing.
PAMI,,2021,LayoutGAN: Synthesizing Graphic Layouts With Vector-Wireframe Adversarial Networks.
PAMI,,2021,Novelty Detection and Online Learning for Chunk Data Streams.
PAMI,,2021,Paying Attention to Video Object Pattern Understanding.
PAMI,,2021,Perceptual Texture Similarity Estimation: An Evaluation of Computational Features.
PAMI,,2021,Physics-Based Generative Adversarial Models for Image Restoration and Beyond.
PAMI,,2021,Real-Time Nonparametric Anomaly Detection in High-Dimensional Settings.
PAMI,,2021,Residual Dense Network for Image Restoration.
PAMI,,2021,Semi-Supervised Multi-View Deep Discriminant Representation Learning.
PAMI,,2021,Zero and Few Shot Learning With Semantic Feature Synthesis and Competitive Learning.
PAMI,,2021,A Bayesian Approach to Recurrence in Neural Networks.
PAMI,,2021,A Generalized Earley Parser for Human Activity Parsing and Prediction.
PAMI,,2021,A Lightweight Optical Flow CNN - Revisiting Data Fidelity and Regularization.
PAMI,,2021,ChannelNets: Compact and Efficient Convolutional Neural Networks via Channel-Wise Convolutions.
PAMI,,2021,Deep CNNs Meet Global Covariance Pooling: Better Representation and Generalization.
PAMI,,2021,DENAO: Monocular Depth Estimation Network With Auxiliary Optical Flow.
PAMI,,2021,Depth Sensing by Near-Infrared Light Absorption in Water.
PAMI,,2021,DSNet: Joint Semantic Learning for Object Detection in Inclement Weather Conditions.
PAMI,,2021,Efficient and Effective Regularized Incomplete Multi-View Clustering.
PAMI,,2021,From Points to Parts: 3D Object Detection From Point Cloud With Part-Aware and Part-Aggregation Network.
PAMI,,2021,Laplacian Coordinates: Theory and Methods for Seeded Image Segmentation.
PAMI,,2021,LCBM: A Multi-View Probabilistic Model for Multi-Label Classification.
PAMI,,2021,Learning Compressible 360$^{\circ }$∘ Video Isomers.
PAMI,,2021,Learning on Hypergraphs With Sparsity.
PAMI,,2021,Learning to Adapt Invariance in Memory for Person Re-Identification.
PAMI,,2021,Locate, Size, and Count: Accurately Resolving People in Dense Crowds via Detection.
PAMI,,2021,Multi-Task Deep Learning for Real-Time 3D Human Pose Estimation and Action Recognition.
PAMI,,2021,Relationship-Embedded Representation Learning for Grounding Referring Expressions.
PAMI,,2021,Rolling Shutter Homography and its Applications.
PAMI,,2021,Self-Supervised Multi-View Person Association and its Applications.
PAMI,,2021,sMRT: Multi-Resident Tracking in Smart Homes With Sensor Vectorization.
PAMI,,2021,Underwater Single Image Color Restoration Using Haze-Lines and a New Quantitative Dataset.
PAMI,,2021,Variational Level Set Evolution for Non-Rigid 3D Reconstruction From a Single Depth Camera.
PAMI,,2021,A Unified Approach to Kinship Verification.
PAMI,,2021,Acceleration of Non-Rigid Point Set Registration With Downsampling and Gaussian Process Regression.
PAMI,,2021,Learning Saliency From Single Noisy Labelling: A Robust Model Fitting Perspective.
PAMI,,2021,Multi-Task Head Pose Estimation in-the-Wild.
PAMI,,2021,Blur-Invariant Similarity Measurement of Images.
PAMI,,2021,Guest Editorial: Automated Machine Learning.
PAMI,,2021,You Only Search Once: Single Shot Neural Architecture Search via Direct Sparse Optimization.
PAMI,,2021,DATA: Differentiable ArchiTecture Approximation With Distribution Guided Sampling.
PAMI,,2021,One-Shot Neural Architecture Search: Maximising Diversity to Overcome Catastrophic Forgetting.
PAMI,,2021,MIGO-NAS: Towards Fast and Generalizable Neural Architecture Search.
PAMI,,2021,Partially-Connected Neural Architecture Search for Reduced Computational Redundancy.
PAMI,,2021,Neural Architecture Transfer.
PAMI,,2021,FNA++: Fast Network Adaptation via Parameter Remapping and Architecture Search.
PAMI,,2021,NAS-FAS: Static-Dynamic Central Difference Network Search for Face Anti-Spoofing.
PAMI,,2021,Additive Tree-Structured Conditional Parameter Spaces in Bayesian Optimization: A Novel Covariance Function and a Fast Implementation.
PAMI,,2021,AutoML for Multi-Label Classification: Overview and Empirical Evaluation.
PAMI,,2021,Predicting Machine Learning Pipeline Runtimes in the Context of Automated Machine Learning.
PAMI,,2021,Adaptation Strategies for Automated Machine Learning on Evolving Data.
PAMI,,2021,Auto-Pytorch: Multi-Fidelity MetaLearning for Efficient and Robust AutoDL.
PAMI,,2021,Evolving Fully Automated Machine Learning via Life-Long Knowledge Anchors.
PAMI,,2021,Winning Solutions and Post-Challenge Analyses of the ChaLearn AutoDL Challenge 2019.
PAMI,,2021,Bias in Cross-Entropy-Based Training of Deep Survival Networks.
PAMI,,2021,Comprehensive Instructional Video Analysis: The COIN Dataset and Performance Evaluation.
PAMI,,2021,Deeply Supervised Discriminative Learning for Adversarial Defense.
PAMI,,2021,Eigendecomposition-Free Training of Deep Networks for Linear Least-Square Problems.
PAMI,,2021,Feature-Aware Uniform Tessellations on Video Manifold for Content-Sensitive Supervoxels.
PAMI,,2021,Gaussian Graphical Model Exploration and Selection in High Dimension Low Sample Size Setting.
PAMI,,2021,Hardness-Aware Deep Metric Learning.
PAMI,,2021,Point Set Registration for 3D Range Scans Using Fuzzy Cluster-Based Metric and Efficient Global Optimization.
PAMI,,2021,Semi-Supervised Clustering With Constraints of Different Types From Multiple Information Sources.
PAMI,,2021,SibNet: Sibling Convolutional Encoder for Video Captioning.
PAMI,,2021,Erratum to "A Bayesian Formulation of Coherent Point Drift".
PAMI,,2021,A Dual Camera System for High Spatiotemporal Resolution Video Acquisition.
PAMI,,2021,An End-to-End Learning Framework for Video Compression.
PAMI,,2021,Adversarial Attacks on Time Series.
PAMI,,2021,Camera Pose Estimation Using First-Order Curve Differential Geometry.
PAMI,,2021,Deep Convolutional Neural Network for Multi-Modal Image Restoration and Fusion.
PAMI,,2021,Deep High-Resolution Representation Learning for Visual Recognition.
PAMI,,2021,Deep Learning for Image Super-Resolution: A Survey.
PAMI,,2021,Imbalance Problems in Object Detection: A Review.
PAMI,,2021,Interpretable CNNs for Object Classification.
PAMI,,2021,Learning Channel-Wise Interactions for Binary Convolutional Neural Networks.
PAMI,,2021,Learning Content-Weighted Deep Image Compression.
PAMI,,2021,Line Drawings for Face Portraits From Photos Using Global and Local Structure Based GANs.
PAMI,,2021,Learning to Model Relationships for Zero-Shot Video Classification.
PAMI,,2021,Low-Tubal-Rank Plus Sparse Tensor Recovery With Prior Subspace Information.
PAMI,,2021,Minimizing Negative Transfer of Knowledge in Multivariate Gaussian Processes: A Scalable and Regularized Approach.
PAMI,,2021,Model Study of Transient Imaging With Multi-Frequency Time-of-Flight Sensors.
PAMI,,2021,Multilinear Modelling of Faces and Expressions.
PAMI,,2021,Optimizing Regularized Cholesky Score for Order-Based Learning of Bayesian Networks.
PAMI,,2021,Multiview Feature Selection for Single-View Classification.
PAMI,,2021,Partial Multi-Label Learning via Credible Label Elicitation.
PAMI,,2021,Pixel2Mesh: 3D Mesh Model Generation via Image Guided Deformation.
PAMI,,2021,Recent Advances in Open Set Recognition: A Survey.
PAMI,,2021,Show, Match and Segment: Joint Weakly Supervised Learning of Semantic Matching and Object Co-Segmentation.
PAMI,,2021,Unifying Offline and Online Multi-Graph Matching via Finding Shortest Paths on Supergraph.
PAMI,,2021,Spherical Kernel for Efficient Graph Convolution on 3D Point Clouds.
PAMI,,2021,Supervision by Registration and Triangulation for Landmark Detection.
PAMI,,2021,Visibility-Aware Point-Based Multi-View Stereo Network.
PAMI,,2021,TE141K: Artistic Text Benchmark for Text Effect Transfer.
PAMI,,2021,The Mutex Watershed and its Objective: Efficient, Parameter-Free Graph Partitioning.
PAMI,,2021,3D Hand Pose Estimation Using Synthetic Data and Weakly Labeled RGB Images.
PAMI,,2021,A New Approach to Robust Estimation of Parametric Structures.
PAMI,,2021,Active Image Synthesis for Efficient Labeling.
PAMI,,2021,AP-Loss for Accurate One-Stage Object Detection.
PAMI,,2021,Chart Mining: A Survey of Methods for Automated Chart Analysis.
PAMI,,2021,Contextual Translation Embedding for Visual Relationship Detection and Scene Graph Generation.
PAMI,,2021,Decoding Brain Representations by Multimodal Learning of Neural Activity and Visual Features.
PAMI,,2021,End-to-End Learning for Omnidirectional Stereo Matching With Uncertainty Prior.
PAMI,,2021,Extraction of an Explanatory Graph to Interpret a CNN.
PAMI,,2021,Heterogeneous Few-Shot Model Rectification With Semantic Mapping.
PAMI,,2021,Integrating Multiple Receptive Fields Through Grouped Active Convolution.
PAMI,,2021,Intrinsic Grassmann Averages for Online Linear, Robust and Nonlinear Subspace Learning.
PAMI,,2021,Maximum Density Divergence for Domain Adaptation.
PAMI,,2021,Minimal Solvers for Rectifying From Radially-Distorted Conjugate Translations.
PAMI,,2021,Mining Interpretable AOG Representations From Convolutional Networks via Active Question Answering.
PAMI,,2021,Normalizing Flows: An Introduction and Review of Current Methods.
PAMI,,2021,Norm-Preservation: Why Residual Networks Can Become Extremely Deep?
PAMI,,2021,Plane Segmentation Based on the Optimal-Vector-Field in LiDAR Point Clouds.
PAMI,,2021,RefineFace: Refinement Neural Network for High Performance Face Detection.
PAMI,,2021,Rolling-Unrolling LSTMs for Action Anticipation from First-Person Video.
PAMI,,2021,Self-Supervised Visual Feature Learning With Deep Neural Networks: A Survey.
PAMI,,2021,Single Image Deraining: From Model-Based to Data-Driven and Beyond.
PAMI,,2021,SurfaceNet+: An End-to-end 3D Neural Network for Very Sparse Multi-View Stereopsis.
PAMI,,2021,Task-Feature Collaborative Learning with Application to Personalized Attribute Prediction.
PAMI,,2021,The Bayesian Cut.
PAMI,,2021,The EPIC-KITCHENS Dataset: Collection, Challenges and Baselines.
PAMI,,2021,Towards a Complete 3D Morphable Model of the Human Head.
PAMI,,2021,Unpaired Person Image Generation With Semantic Parsing Transformation.
PAMI,,2021,Wavefront Marching Methods: A Unified Algorithm to Solve Eikonal and Static Hamilton-Jacobi Equations.
PAMI,,2021,Discriminative Triad Matching and Reconstruction for Weakly Referring Expression Grounding.
PAMI,,2021,Guided Zoom: Zooming into Network Evidence to Refine Fine-Grained Model Decisions.
PAMI,,2021,Editorial: Introduction to the Special Section on CVPR2019 Best Papers.
PAMI,,2021,Vision-Language Navigation Policy Learning and Adaptation.
PAMI,,2021,A Style-Based Generator Architecture for Generative Adversarial Networks.
PAMI,,2021,MannequinChallenge: Learning the Depths of Moving People by Watching Frozen People.
PAMI,,2021,Accelerated Variance Reduction Stochastic ADMM for Large-Scale Machine Learning.
PAMI,,2021,Attention-Based Dropout Layer for Weakly Supervised Single Object Localization and Semantic Segmentation.
PAMI,,2021,Bridging the Gap Between Computational Photography and Visual Recognition.
PAMI,,2021,CrossNet++: Cross-Scale Large-Parallax Warping for Reference-Based Super-Resolution.
PAMI,,2021,Deep Autoencoding Topic Model With Scalable Hybrid Bayesian Inference.
PAMI,,2021,Deep Back-ProjectiNetworks for Single Image Super-Resolution.
PAMI,,2021,Deep Learning for 3D Point Clouds: A Survey.
PAMI,,2021,Deep Non-Rigid Structure From Motion With Missing Data.
PAMI,,2021,Evaluation of Saccadic Scanpath Prediction: Subjective Assessment Database and Recurrent Neural Network Based Metric.
PAMI,,2021,Infinite Feature Selection: A Graph-based Feature Filtering Approach.
PAMI,,2021,Kernel k-Groups via Hartigan's Method.
PAMI,,2021,Large Graph Clustering With Simultaneous Spectral Embedding and Discretization.
PAMI,,2021,MultiDIAL: Domain Alignment Layers for (Multisource) Unsupervised Domain Adaptation.
PAMI,,2021,Multi-View Representation Learning With Deep Gaussian Processes.
PAMI,,2021,On Connections Between Regularizations for Improving DNN Robustness.
PAMI,,2021,Progressive Cross-Stream Cooperation in Spatial and Temporal Domain for Action Localization.
PAMI,,2021,Video Snapshot: Single Image Motion Expansion via Invertible Motion Embedding.
PAMI,,2021,Learning Rates for Stochastic Gradient Descent With Nonconvex Objectives.
PAMI,,2021,Topology-Aware Graph Pooling Networks.
PAMI,,2021,Unique Geometry and Texture From Corresponding Image Patches.
PAMI,,2020,A Novel Geometric Framework on Gram Matrix Trajectories for Human Behavior Understanding.
PAMI,,2020,Approximate Fisher Information Matrix to Characterize the Training of Deep Neural Networks.
PAMI,,2020,Cooperative Training of Descriptor and Generator Networks.
PAMI,,2020,Detecting Coherent Groups in Crowd Scenes by Multiview Clustering.
PAMI,,2020,Discrete-Continuous Transformation Matching for Dense Semantic Correspondence.
PAMI,,2020,Efficient Inter-Geodesic Distance Computation and Fast Classical Scaling.
PAMI,,2020,Generalized Latent Multi-View Subspace Clustering.
PAMI,,2020,Hyperspectral Recovery from RGB Images using Gaussian Processes.
PAMI,,2020,iDeLog: Iterative Dual Spatial and Kinematic Extraction of Sigma-Lognormal Parameters.
PAMI,,2020,Learning Compact Features for Human Activity Recognition Via Probabilistic First-Take-All.
PAMI,,2020,Motion Segmentation & Multiple Object Tracking by Correlation Co-Clustering.
PAMI,,2020,Neural Machine Translation with Deep Attention.
PAMI,,2020,Numerical Quadrature for Probabilistic Policy Search.
PAMI,,2020,PCL: Proposal Cluster Learning for Weakly Supervised Object Detection.
PAMI,,2020,Persistence Paths and Signature Features in Topological Data Analysis.
PAMI,,2020,Person Recognition in Personal Photo Collections.
PAMI,,2020,Pictionary-Style Word Guessing on Hand-Drawn Object Sketches: Dataset, Analysis and Deep Network Models.
PAMI,,2020,Semi-Calibrated Photometric Stereo.
PAMI,,2020,Bayesian Neural Networks with Weight Sharing Using Dirichlet Processes.
PAMI,,2020,State of the Journal Editorial.
PAMI,,2020,Capturing the Geometry of Object Categories from Video Supervision.
PAMI,,2020,Deep Metric Learning with BIER: Boosting Independent Embeddings Robustly.
PAMI,,2020,Distributed Very Large Scale Bundle Adjustment by Global Camera Consensus.
PAMI,,2020,First-Person Activity Forecasting from Video with Online Inverse Reinforcement Learning.
PAMI,,2020,Focal Loss for Dense Object Detection.
PAMI,,2020,Globally-Optimal Inlier Set Maximisation for Camera Pose and Correspondence Estimation.
PAMI,,2020,Hierarchical Binary CNNs for Landmark Localization with Limited Resources.
PAMI,,2020,High-Fidelity Monocular Face Reconstruction Based on an Unsupervised Model-Based Face Autoencoder.
PAMI,,2020,Leader-Based Multi-Scale Attention Deep Architecture for Person Re-Identification.
PAMI,,2020,Mask R-CNN.
PAMI,,2020,Object Detection from Scratch with Deep Supervision.
PAMI,,2020,Open Set Domain Adaptation for Image and Action Recognition.
PAMI,,2020,Revisiting Projective Structure from Motion: A Robust and Efficient Incremental Solution.
PAMI,,2020,Unsupervised Generation of Free-Form and Parameterized Avatars.
PAMI,,2020,Inverse Visual Question Answering: A New Benchmark and VQA Diagnosis Tool.
PAMI,,2020,SPFTN: A Joint Learning Framework for Localizing and Segmenting Objects in Weakly Labeled Videos.
PAMI,,2020,Approximate Sparse Multinomial Logistic Regression for Classification.
PAMI,,2020,Feature Boosting Network For 3D Pose Estimation.
PAMI,,2020,Moments in Time Dataset: One Million Videos for Event Understanding.
PAMI,,2020,A Comprehensive Database for Benchmarking Imaging Systems.
PAMI,,2020,ADMM-CSNet: A Deep Learning Approach for Image Compressive Sensing.
PAMI,,2020,Adversarial Action Prediction Networks.
PAMI,,2020,Context-Aware Query Selection for Active Learning in Event Recognition.
PAMI,,2020,Deep Neural Network Compression by In-Parallel Pruning-Quantization.
PAMI,,2020,Deep Variational and Structural Hashing.
PAMI,,2020,Face-from-Depth for Head Pose Estimation on Depth Images.
PAMI,,2020,Flexible High-Dimensional Unsupervised Learning with Missing Data.
PAMI,,2020,Force from Motion: Decoding Control Force of Activity in a First-Person Video.
PAMI,,2020,Image and Sentence Matching via Semantic Concepts and Order Learning.
PAMI,,2020,Incremental Learning Through Deep Adaptation.
PAMI,,2020,Joint Face Alignment and 3D Face Reconstruction with Application to Face Recognition.
PAMI,,2020,Learning Reasoning-Decision Networks for Robust Face Alignment.
PAMI,,2020,Mutually Guided Image Filtering.
PAMI,,2020,Photometric Stereo in Participating Media Using an Analytical Solution for Shape-Dependent Forward Scatter.
PAMI,,2020,Single Image Dehazing Using Haze-Lines.
PAMI,,2020,The Lovász Hinge: A Novel Convex Surrogate for Submodular Losses.
PAMI,,2020,The Whole Is More Than Its Parts? From Explicit to Implicit Pose Normalization.
PAMI,,2020,A Hybrid RNN-HMM Approach for Weakly Supervised Temporal Action Segmentation.
PAMI,,2020,Automated Video Face Labelling for Films and TV Material.
PAMI,,2020,Baselines Extraction from Curved Document Images via Slope Fields Recovery.
PAMI,,2020,Deep Self-Evolution Clustering.
PAMI,,2020,Efficient and Robust Approximate Nearest Neighbor Search Using Hierarchical Navigable Small World Graphs.
PAMI,,2020,Extracting Geometric Structures in Images with Delaunay Point Processes.
PAMI,,2020,Group Maximum Differentiation Competition: Model Comparison with Few Samples.
PAMI,,2020,Hierarchical Bayesian Inverse Lighting of Portraits with a Virtual Light Stage.
PAMI,,2020,Hierarchical Fully Convolutional Network for Joint Atrophy Localization and Alzheimer's Disease Diagnosis Using Structural MRI.
PAMI,,2020,On Detection of Faint Edges in Noisy Images.
PAMI,,2020,Perspective-Adaptive Convolutions for Scene Parsing.
PAMI,,2020,Tensor Robust Principal Component Analysis with a New Tensor Nuclear Norm.
PAMI,,2020,Tracking-by-Fusion via Gaussian Process Regression Extended to Transfer Learning.
PAMI,,2020,Unsupervised Person Re-Identification by Deep Asymmetric Metric Embedding.
PAMI,,2020,Visibility Graphs for Image Processing.
PAMI,,2020,Weighted Manifold Alignment using Wave Kernel Signatures for Aligning Medical Image Datasets.
PAMI,,2020,Denoising Autoencoders for Overgeneralization in Neural Networks.
PAMI,,2020,Efficient Graph Cut Optimization for Full CRFs with Quantized Edges.
PAMI,,2020,Learning Raw Image Reconstruction-Aware Deep Image Compressors.
PAMI,,2020,Guest Editorial: Image and Video Inpainting and Denoising.
PAMI,,2020,Adversarial Cross-Spectral Face Completion for NIR-VIS Face Recognition.
PAMI,,2020,Recurrent Temporal Aggregation Framework for Deep Video Inpainting.
PAMI,,2020,A Temporally-Aware Interpolation Network for Video Frame Inpainting.
PAMI,,2020,3D Human Pose Machines with Self-Supervised Learning.
PAMI,,2020,Fast Cross-Validation for Kernel-Based Algorithms.
PAMI,,2020,Heterogeneous Recommendation via Deep Low-Rank Sparse Collective Factorization.
PAMI,,2020,Hierarchical LSTMs with Adaptive Attention for Visual Captioning.
PAMI,,2020,Large-Scale Urban Reconstruction with Tensor Clustering and Global Boundary Refinement.
PAMI,,2020,LCR-Net++: Multi-Person 2D and 3D Pose Detection in Natural Images.
PAMI,,2020,Light Field Super-Resolution Using a Low-Rank Prior and Deep Convolutional Neural Networks.
PAMI,,2020,Minimal Case Relative Pose Computation Using Ray-Point-Ray Features.
PAMI,,2020,Multiple Kernel $k$k-Means with Incomplete Kernels.
PAMI,,2020,Online Meta Adaptation for Fast Video Object Segmentation.
PAMI,,2020,Pixel Transposed Convolutional Networks.
PAMI,,2020,RefineNet: Multi-Path Refinement Networks for Dense Prediction.
PAMI,,2020,Shared Multi-View Data Representation for Multi-Domain Event Detection.
PAMI,,2020,Structured Label Inference for Visual Understanding.
PAMI,,2020,Object Detection in Videos by High Quality Object Linking.
PAMI,,2020,Significance of Softmax-Based Features in Comparison to Distance Metric Learning-Based Features.
PAMI,,2020,Providing a Single Ground-Truth for Illuminant Estimation for the ColorChecker Dataset.
PAMI,,2020,A Disocclusion Inpainting Framework for Depth-Based View Synthesis.
PAMI,,2020,Absent Multiple Kernel Learning Algorithms.
PAMI,,2020,End-to-End Active Object Tracking and Its Real-World Deployment via Reinforcement Learning.
PAMI,,2020,Generic Primitive Detection in Point Clouds Using Novel Minimal Quadric Fits.
PAMI,,2020,Hierarchical Surface Prediction.
PAMI,,2020,Hyperbolic Wasserstein Distance for Shape Indexing.
PAMI,,2020,Joint Rain Detection and Removal from a Single Image with Contextualized Deep Networks.
PAMI,,2020,Measuring Shapes with Desired Convex Polygons.
PAMI,,2020,Models Matter, So Does Training: An Empirical Study of CNNs for Optical Flow Estimation.
PAMI,,2020,Progressive Representation Adaptation for Weakly Supervised Object Localization.
PAMI,,2020,Rolling Shutter Camera Absolute Pose.
PAMI,,2020,Skeleton-Based Online Action Prediction Using Scale Selection Network.
PAMI,,2020,Structured Low-Rank Matrix Factorization: Global Optimality, Algorithms, and Applications.
PAMI,,2020,Training Faster by Separating Modes of Variation in Batch-Normalized Models.
PAMI,,2020,Unsupervised Video Matting via Sparse and Low-Rank Representation.
PAMI,,2020,Joint Segmentation and Path Classification of Curvilinear Structures.
PAMI,,2020,Learning Local Metrics and Influential Regions for Classification.
PAMI,,2020,Multilabel Deep Visual-Semantic Embedding.
PAMI,,2020,Subspace Clustering via Good Neighbors.
PAMI,,2020,Guest Editors' Introduction to the Special Section on Computational Photography.
PAMI,,2020,Distance Surface for Event-Based Optical Flow.
PAMI,,2020,Deep Slow Motion Video Reconstruction With Hybrid Imaging System.
PAMI,,2020,Neural Opacity Point Cloud.
PAMI,,2020,Differential 3D Facial Recognition: Adding 3D to Your State-of-the-Art 2D Method.
PAMI,,2020,Shape and Reflectance Reconstruction Using Concentric Multi-Spectral Light Field.
PAMI,,2020,SweepCam - Depth-Aware Lensless Imaging Using Programmable Masks.
PAMI,,2020,PhlatCam: Designed Phase-Mask Based Thin Lensless Camera.
PAMI,,2020,One-Bit Time-Resolved Imaging.
PAMI,,2020,Neural Sensors: Learning Pixel Exposures for HDR Imaging and Video Compressive Sensing With Programmable Sensors.
PAMI,,2020,Adversarial Learning of Structure-Aware Fully Convolutional Networks for Landmark Localization.
PAMI,,2020,Ambiguity-Free Radiometric Calibration for Internet Photo Collections.
PAMI,,2020,Hiding Images within Images.
PAMI,,2020,Learning Multiple Local Metrics: Global Consideration Helps.
PAMI,,2020,Logistic Regression Confined by Cardinality-Constrained Sample and Feature Selection.
PAMI,,2020,Online Nearest Neighbor Search Using Hamming Weight Trees.
PAMI,,2020,Optimal Transport in Reproducing Kernel Hilbert Spaces: Theory and Applications.
PAMI,,2020,Synthesizing Supervision for Learning Deep Saliency Network without Human Annotation.
PAMI,,2020,Unsupervised Tracklet Person Re-Identification.
PAMI,,2020,Asymmetric Mapping Quantization for Nearest Neighbor Search.
PAMI,,2020,Border-Peeling Clustering.
PAMI,,2020,Ranking-Preserving Cross-Source Learning for Image Retargeting Quality Assessment.
PAMI,,2020,A Continuation Method for Graph Matching Based Feature Correspondence.
PAMI,,2020,A Curriculum Domain Adaptation Approach to the Semantic Segmentation of Urban Scenes.
PAMI,,2020,A Simple and Fast Algorithm for L1-Norm Kernel PCA.
PAMI,,2020,Back to the Future: Radial Basis Function Network Revisited.
PAMI,,2020,Contactless Biometric Identification Using 3D Finger Knuckle Patterns.
PAMI,,2020,Defocus Blur Detection via Multi-Stream Bottom-Top-Bottom Network.
PAMI,,2020,Generalized Feedback Loop for Joint Hand-Object Pose Estimation.
PAMI,,2020,Inferring Salient Objects from Human Fixations.
PAMI,,2020,Learning of Gaussian Processes in Distributed and Communication Limited Systems.
PAMI,,2020,Learning to Index for Nearest Neighbor Search.
PAMI,,2020,Motion-Guided Cascaded Refinement Network for Video Object Segmentation.
PAMI,,2020,On Multi-Layer Basis Pursuit, Efficient Algorithms and Convolutional Neural Networks.
PAMI,,2020,Recognizing Material Properties from Images.
PAMI,,2020,ROAM: A Rich Object Appearance Model with Application to Rotoscoping.
PAMI,,2020,Squeeze-and-Excitation Networks.
PAMI,,2020,Tensor Graphical Model: Non-Convex Optimization and Statistical Inference.
PAMI,,2020,Towards Efficient U-Nets: A Coupled and Quantized Approach.
PAMI,,2020,Unsupervised Learning of a Hierarchical Spiking Neural Network for Optical Flow Estimation: From Events to Global Motion Perception.
PAMI,,2020,A Comprehensive Analysis of Deep Regression.
PAMI,,2020,A Novel Dynamic Model Capturing Spatial and Temporal Patterns for Facial Expression Analysis.
PAMI,,2020,Absolute Cluster Validity.
PAMI,,2020,Age from Faces in the Deep Learning Revolution.
PAMI,,2020,Aggregated Wasserstein Distance and State Registration for Hidden Markov Models.
PAMI,,2020,Can We See More? Joint Frontalization and Hallucination of Unaligned Tiny Faces.
PAMI,,2020,Defining Image Memorability Using the Visual Memory Schema.
PAMI,,2020,Hierarchical Gaussian Descriptors with Application to Person Re-Identification.
PAMI,,2020,Learning Complexity-Aware Cascades for Pedestrian Detection.
PAMI,,2020,Learning More Universal Representations for Transfer-Learning.
PAMI,,2020,Learning Representations for Neural Network-Based Classification Using the Information Bottleneck Principle.
PAMI,,2020,Multi-Source Causal Feature Selection.
PAMI,,2020,On Perfect Clustering of High Dimension, Low Sample Size Data.
PAMI,,2020,Properties of Mean Shift.
PAMI,,2020,The Gap of Semantic Parsing: A Survey on Automatic Math Word Problem Solvers.
PAMI,,2020,Weakly Supervised Learning with Multi-Stream CNN-LSTM-HMMs to Discover Sequential Parallelism in Sign Language Videos.
PAMI,,2020,Bound and Conquer: Improving Triangulation by Enforcing Consistency.
PAMI,,2020,Guest Editors' Introduction to the Special Issue on RGB-D Vision: Methods and Applications.
PAMI,,2020,Intel® RealSense™ SR300 Coded Light Depth Camera.
PAMI,,2020,Snapshot Compressive ToF+Spectral Imaging via Optimized Color-Coded Apertures.
PAMI,,2020,Learning Depth with Convolutional Spatial Propagation Network.
PAMI,,2020,Progressive Fusion for Unsupervised Binocular Depth Estimation Using Cycled Networks.
PAMI,,2020,Unsupervised Domain Adaptation for Depth Prediction from Images.
PAMI,,2020,Semi-Supervised Adversarial Monocular Depth Estimation.
PAMI,,2020,Confidence Propagation through CNNs for Guided Sparse Depth Regression.
PAMI,,2020,Learned Dynamic Guidance for Depth Image Reconstruction.
PAMI,,2020,Photometric Depth Super-Resolution.
PAMI,,2020,Real-Time RGB-D Camera Pose Estimation in Novel Scenes Using a Relocalisation Cascade.
PAMI,,2020,Unsupervised Deep Visual-Inertial Odometry with Online Error Correction for RGB-D Imagery.
PAMI,,2020,SurfelMeshing: Online Surfel-Based Mesh Reconstruction.
PAMI,,2020,UnstructuredFusion: Realtime 4D Geometry and Texture Reconstruction Using Commercial RGBD Cameras.
PAMI,,2020,DoubleFusion: Real-Time Capture of Human Performances with Inner Body Shapes from a Single Depth Sensor.
PAMI,,2020,Learning and Tracking the 3D Body Shape of Freely Moving Infants from RGB-D sequences.
PAMI,,2020,Robust RGB-D Face Recognition Using Attribute-Aware Loss.
PAMI,,2020,Local-LDA: Open-Ended Learning of Latent Topics for 3D Object Recognition.
PAMI,,2020,Learning with Privileged Information via Adversarial Discriminative Modality Distillation.
PAMI,,2020,Sparse Coding of Shape Trajectories for Facial Expression and Action Recognition.
PAMI,,2020,Joint Task-Recursive Learning for RGB-D Scene Understanding.
PAMI,,2020,Every Pixel Counts ++: Joint Learning of Geometry and Motion with 3D Holistic Understanding.
PAMI,,2020,Zig-Zag Network for Semantic Segmentation of RGB-D Images.
PAMI,,2020,Globally Optimal Inlier Set Maximization for Atlanta World Understanding.
PAMI,,2020,Clouds of Oriented Gradients for 3D Detection of Objects, Surfaces, and Indoor Scene Layouts.
PAMI,,2020,NTU RGB+D 120: A Large-Scale Benchmark for 3D Human Activity Understanding.
PAMI,,2020,The ApolloScape Open Dataset for Autonomous Driving and Its Application.
PAMI,,2020,Detailed Surface Geometry and Albedo Recovery from RGB-D Video under Natural Illumination.
PAMI,,2020,A Functional Representation for Graph Matching.
PAMI,,2020,Context Based Emotion Recognition Using EMOTIC Dataset.
PAMI,,2020,DART: Distribution Aware Retinal Transform for Event-Based Cameras.
PAMI,,2020,Deep Imbalanced Learning for Face Recognition and Attribute Prediction.
PAMI,,2020,Direction-Aware Spatial Context Features for Shadow Detection and Removal.
PAMI,,2020,Face Hallucination by Attentive Sequence Optimization with Reinforcement Learning.
PAMI,,2020,$\mathbb {H}$H-Patches: A Benchmark and Evaluation of Handcrafted and Learned Local Descriptors.
PAMI,,2020,Learning Low-Dimensional Temporal Representations with Latent Alignments.
PAMI,,2020,Learning Visual Instance Retrieval from Failure: Efficient Online Local Metric Adaptation from Negative Samples.
PAMI,,2020,Local-Aggregation Graph Networks.
PAMI,,2020,Matched Filters for Noisy Induced Subgraph Detection.
PAMI,,2020,MOSES: A Streaming Algorithm for Linear Dimensionality Reduction.
PAMI,,2020,Recomputation of the Dense Layers for Performance Improvement of DCNN.
PAMI,,2020,Semantic Face Hallucination: Super-Resolving Very Low-Resolution Face Images with Supplementary Attributes.
PAMI,,2020,Toward Bridging the Simulated-to-Real Gap: Benchmarking Super-Resolution on Real Data.
PAMI,,2020,Multivariate Extension of Matrix-Based Rényi's $\alpha$α-Order Entropy Functional.
PAMI,,2020,CoRRN: Cooperative Reflection Removal Network.
PAMI,,2020,Gravitational Laws of Focus of Attention.
PAMI,,2020,Guided Attention Inference Network.
PAMI,,2020,Local Deformable 3D Reconstruction with Cartan's Connections.
PAMI,,2020,On the Convergence of Learning-Based Iterative Methods for Nonconvex Inverse Problems.
PAMI,,2020,On the Robustness of Semantic Segmentation Models to Adversarial Attacks.
PAMI,,2020,One Shot Segmentation: Unifying Rigid Detection and Non-Rigid Segmentation Using Elastic Regularization.
PAMI,,2020,Real-World Image Denoising with Deep Boosting.
PAMI,,2020,Reconstruct and Represent Video Contents for Captioning via Reinforcement Learning.
PAMI,,2020,Semantic Fisher Scores for Task Transfer: Using Objects to Classify Scenes.
PAMI,,2020,Trace Quotient with Sparsity Priors for Learning Low Dimensional Image Representations.
PAMI,,2020,Vocabulary-Informed Zero-Shot and Open-Set Learning.
PAMI,,2019,State of the Journal.
PAMI,,2019,Atomic Representation-Based Classification: Theory, Algorithm, and Applications.
PAMI,,2019,Color Homography: Theory and Applications.
PAMI,,2019,CROification: Accurate Kernel Classification with the Efficiency of Sparse Linear SVM.
PAMI,,2019,Dependence Models for Searching Text in Document Images.
PAMI,,2019,Directional 3D Wavelet Transform Based on Gaussian Mixtures for the Analysis of 3D Ultrasound Ovarian Volumes.
PAMI,,2019,Face Alignment in Full Pose Range: A 3D Total Solution.
PAMI,,2019,From Images to 3D Shape Attributes.
PAMI,,2019,Head and Body Orientation Estimation Using Convolutional Random Projection Forests.
PAMI,,2019,HyperFace: A Deep Multi-Task Learning Framework for Face Detection, Landmark Localization, Pose Estimation, and Gender Recognition.
PAMI,,2019,Kernel Clustering: Density Biases and Solutions.
PAMI,,2019,Large-Scale Image Geo-Localization Using Dominant Sets.
PAMI,,2019,MPIIGaze: Real-World Dataset and Deep Appearance-Based Gaze Estimation.
PAMI,,2019,Multi-Scale Deep Reinforcement Learning for Real-Time 3D-Landmark Detection in CT Scans.
PAMI,,2019,Panoptic Studio: A Massively Multiview System for Social Interaction Capture.
PAMI,,2019,Probabilistic Dimensionality Reduction via Structure Learning.
PAMI,,2019,Revisiting Superquadric Fitting: A Numerically Stable Formulation.
PAMI,,2019,The Atlas Structure of Images.
PAMI,,2019,Truncated Cauchy Non-Negative Matrix Factorization.
PAMI,,2019,A Benchmark Dataset and Evaluation for Non-Lambertian and Uncalibrated Photometric Stereo.
PAMI,,2019,Analysis of Spatio-Temporal Representations for Robust Footstep Recognition with Deep Residual Neural Networks.
PAMI,,2019,Depth from a Light Field Image with Learning-Based Matching Costs.
PAMI,,2019,Disambiguating Visual Verbs.
PAMI,,2019,Dynamic Structure Embedded Online Multiple-Output Regression for Streaming Data.
PAMI,,2019,Exploiting Negative Evidence for Deep Latent Structured Models.
PAMI,,2019,None
PAMI,,2019,Learning Multi-Task Correlation Particle Filters for Visual Tracking.
PAMI,,2019,Learning Pose-Aware Models for Pose-Invariant Face Recognition in the Wild.
PAMI,,2019,Learning Two-Branch Neural Networks for Image-Text Matching Tasks.
PAMI,,2019,Metric Learning for Multi-Output Tasks.
PAMI,,2019,Multimodal Machine Learning: A Survey and Taxonomy.
PAMI,,2019,Multivariate Regression with Gross Errors on Manifold-Valued Data.
PAMI,,2019,Online Localization and Prediction of Actions and Interactions.
PAMI,,2019,Robust Structural Sparse Tracking.
PAMI,,2019,Subspace Clustering by Block Diagonal Representation.
PAMI,,2019,Upper and Lower Tight Error Bounds for Feature Omission with an Extension to Context Reduction.
PAMI,,2019,Semi-Supervised Discriminative Classification Robust to Sample-Outliers and Feature-Noises.
PAMI,,2019,A Systematic Evaluation and Benchmark for Person Re-Identification: Features, Metrics, and Datasets.
PAMI,,2019,Constant-Time Calculation of Zernike Moments for Detection with Rotational Invariance.
PAMI,,2019,Empirical Bayesian Light-Field Stereo Matching by Robust Pseudo Random Field Modeling.
PAMI,,2019,Evaluating the Group Detection Performance: The GRODE Metrics.
PAMI,,2019,FCSS: Fully Convolutional Self-Similarity for Dense Semantic Correspondence.
PAMI,,2019,Hierarchical Scene Parsing by Weakly Supervised Learning with Image Descriptions.
PAMI,,2019,Improving Shadow Suppression for Illumination Robust Face Recognition.
PAMI,,2019,Learning Hyperedge Replacement Grammars for Graph Generation.
PAMI,,2019,Mixed Supervised Object Detection with Robust Objectness Transfer.
PAMI,,2019,Recurrent Face Aging with Hierarchical AutoRegressive Memory.
PAMI,,2019,Recursive Nearest Agglomeration (ReNA): Fast Clustering for Approximation of Structured Signals.
PAMI,,2019,Robust and Globally Optimal Manhattan Frame Estimation in Near Real Time.
PAMI,,2019,Searching for Representative Modes on Hypergraphs for Robust Geometric Model Fitting.
PAMI,,2019,Self Paced Deep Learning for Weakly Supervised Object Detection.
PAMI,,2019,SurfCut: Surfaces of Minimal Paths from Topological Structures.
PAMI,,2019,What Do Different Evaluation Metrics Tell Us About Saliency Models?
PAMI,,2019,Compressive Binary Patterns: Designing a Robust Binary Face Descriptor with Random-Field Eigenfilters.
PAMI,,2019,HARD-PnP: PnP Optimization Using a Hybrid Approximate Representation.
PAMI,,2019,Accurate 3D Reconstruction from Small Motion Clip for Rolling Shutter Cameras.
PAMI,,2019,Automated Latent Fingerprint Recognition.
PAMI,,2019,Beyond Sharing Weights for Deep Domain Adaptation.
PAMI,,2019,Deeply Supervised Salient Object Detection with Short Connections.
PAMI,,2019,Discriminative Optimization: Theory and Applications to Computer Vision.
PAMI,,2019,From Social to Individuals: A Parsimonious Path of Multi-Level Models for Crowdsourced Preference Aggregation.
PAMI,,2019,High-Speed Hyperspectral Video Acquisition By Combining Nyquist and Compressive Sampling.
PAMI,,2019,Look into Person: Joint Body Parsing & Pose Estimation Network and a New Benchmark.
PAMI,,2019,Memory Efficient Max Flow for Multi-Label Submodular MRFs.
PAMI,,2019,MonoCap: Monocular Human Motion Capture using a CNN Coupled with a Geometric Prior.
PAMI,,2019,Multi-Task Structure-Aware Context Modeling for Robust Keypoint-Based Object Tracking.
PAMI,,2019,Non-Negative Matrix Factorizations for Multiplex Network Analysis.
PAMI,,2019,Ordinal Constraint Binary Coding for Approximate Nearest Neighbor Search.
PAMI,,2019,Real-Time 3D Hand Pose Estimation with 3D Convolutional Neural Networks.
PAMI,,2019,Robust Spatio-Temporal Clustering and Reconstruction of Multiple Deformable Bodies.
PAMI,,2019,Semi-Supervised Video Object Segmentation with Super-Trajectories.
PAMI,,2019,Towards Personalized Image Captioning via Multimodal Memory Networks.
PAMI,,2019,Transferring Knowledge Fragments for Learning Distance Metric from a Heterogeneous Domain.
PAMI,,2019,Aggregating Randomized Clustering-Promoting Invariant Projections for Domain Adaptation.
PAMI,,2019,A Graph Based Image Interpretation Method Using A Priori Qualitative Inclusion and Photometric Relationships.
PAMI,,2019,Anchor-Free Correlated Topic Modeling.
PAMI,,2019,Deep Mixture of Diverse Experts for Large-Scale Visual Recognition.
PAMI,,2019,Detecting Regions of Maximal Divergence for Spatio-Temporal Anomaly Detection.
PAMI,,2019,Efficient Registration of High-Resolution Feature Enhanced Point Clouds.
PAMI,,2019,Hedging Deep Features for Visual Tracking.
PAMI,,2019,Hyperspectral Light Field Stereo Matching.
PAMI,,2019,Image Projective Invariants.
PAMI,,2019,Learning Support Correlation Filters for Visual Tracking.
PAMI,,2019,Online Data Thinning via Multi-Subspace Tracking.
PAMI,,2019,On the Reconstruction of Face Images from Deep Face Templates.
PAMI,,2019,Patchmatch-Based Robust Stereo Matching Under Radiometric Changes.
PAMI,,2019,Regularized Diffusion Process on Bidirectional Context for Object Retrieval.
PAMI,,2019,Robust 3D Human Pose Estimation from Single Images or Video Sequences.
PAMI,,2019,Visual Dialog.
PAMI,,2019,What Makes Objects Similar: A Unified Multi-Metric Learning Approach.
PAMI,,2019,Recurrent Shape Regression.
PAMI,,2019,A Fast Frequent Directions Algorithm for Low Rank Approximation.
PAMI,,2019,CNN-Based Real-Time Dense Face Reconstruction with Inverse-Rendered Photo-Realistic Face Images.
PAMI,,2019,Composite Quantization.
PAMI,,2019,Density-Preserving Hierarchical EM Algorithm: Simplifying Gaussian Mixture Models for Approximate Inference.
PAMI,,2019,Dynamic Clustering Algorithms via Small-Variance Analysis of Markov Chain Mixture Models.
PAMI,,2019,Egocentric Meets Top-View.
PAMI,,2019,Imbalanced Deep Learning by Minority Class Incremental Rectification.
PAMI,,2019,Joint Active Learning with Feature Selection via CUR Matrix Decomposition.
PAMI,,2019,Learning and Selecting Confidence Measures for Robust Stereo Matching.
PAMI,,2019,Learning to Deblur Images with Exemplars.
PAMI,,2019,Monocular Depth Estimation Using Multi-Scale Continuous CRFs as Sequential Deep Networks.
PAMI,,2019,Occlusion-Aware Method for Temporally Consistent Superpixels.
PAMI,,2019,Physically-Based Simulation of Cosmetics via Intrinsic Image Decomposition with Facial Priors.
PAMI,,2019,Piecewise Flat Embedding for Image Segmentation.
PAMI,,2019,Super-Fine Attributes with Crowd Prototyping.
PAMI,,2019,Unsupervised Deep Learning of Compact Binary Descriptors.
PAMI,,2019,Video Object Segmentation without Temporal Information.
PAMI,,2019,A Deep Network Solution for Attention and Aesthetics Aware Photo Cropping.
PAMI,,2019,Content Aware Image Pre-Compensation.
PAMI,,2019,DeepIGeoS: A Deep Interactive Geodesic Framework for Medical Image Segmentation.
PAMI,,2019,Differential Geometry in Edge Detection: Accurate Estimation of Position, Orientation and Curvature.
PAMI,,2019,Efficient Learning-Free Keyword Spotting.
PAMI,,2019,End-to-End Policy Learning for Active Visual Categorization.
PAMI,,2019,Error Backprojection Algorithms for Non-Line-of-Sight Imaging.
PAMI,,2019,Feedback Convolutional Neural Network for Visual Localization and Segmentation.
PAMI,,2019,Few-Example Object Detection with Model Communication.
PAMI,,2019,Fine-Tuning CNN Image Retrieval with No Human Annotation.
PAMI,,2019,Large Scale Image Segmentation with Structured Loss Based Deep Learning for Connectome Reconstruction.
PAMI,,2019,Light Field Reconstruction Using Convolutional Network on EPI and Extended Applications.
PAMI,,2019,None
PAMI,,2019,Pólya Urn Latent Dirichlet Allocation: A Doubly Sparse Massively Parallel Sampler.
PAMI,,2019,Predicting the Driver's Focus of Attention: The DR(eye)VE Project.
PAMI,,2019,Salient Object Detection with Recurrent Fully Convolutional Networks.
PAMI,,2019,Unifying Visual Attribute Learning with Object Recognition in a Multiplicative Framework.
PAMI,,2019,Wasserstein CNN: Learning Invariant Features for NIR-VIS Face Recognition.
PAMI,,2019,Binary Multi-View Clustering.
PAMI,,2019,Anticipating Where People will Look Using Adversarial Networks.
PAMI,,2019,A Region-Based Gauss-Newton Approach to Real-Time Monocular Multiple Object Tracking.
PAMI,,2019,Calibrating Classification Probabilities with Shape-Restricted Polynomial Regression.
PAMI,,2019,Deep Supervision with Intermediate Concepts.
PAMI,,2019,EuroCity Persons: A Novel Benchmark for Person Detection in Traffic Scenes.
PAMI,,2019,Exploiting Unlabeled Data in CNNs by Self-Supervised Learning to Rank.
PAMI,,2019,Flow Fields: Dense Correspondence Fields for Highly Accurate Large Displacement Optical Flow Estimation.
PAMI,,2019,Focal Visual-Text Attention for Memex Question Answering.
PAMI,,2019,Joint Image Filtering with Deep Convolutional Networks.
PAMI,,2019,Learning Deep Binary Descriptor with Multi-Quantization.
PAMI,,2019,Richer Convolutional Features for Edge Detection.
PAMI,,2019,StackGAN++: Realistic Image Synthesis with Stacked Generative Adversarial Networks.
PAMI,,2019,View Adaptive Neural Networks for High Performance Skeleton-Based Human Action Recognition.
PAMI,,2019,Virtual Adversarial Training: A Regularization Method for Supervised and Semi-Supervised Learning.
PAMI,,2019,Visibility Constrained Generative Model for Depth-Based 3D Facial Pose Tracking.
PAMI,,2019,Advances in Variational Inference.
PAMI,,2019,Social Anchor-Unit Graph Regularized Tensor Completion for Large-Scale Image Retagging.
PAMI,,2019,ASTER: An Attentional Scene Text Recognizer with Flexible Rectification.
PAMI,,2019,Bearing-Based Network Localizability: A Unifying View.
PAMI,,2019,Deep Collaborative Embedding for Social Image Understanding.
PAMI,,2019,Distance Encoded Product Quantization for Approximate K-Nearest Neighbor Search in High-Dimensional Space.
PAMI,,2019,Distributed Multi-Agent Gaussian Regression via Finite-Dimensional Approximations.
PAMI,,2019,Image Deblurring with a Class-Specific Prior.
PAMI,,2019,Interpreting Deep Visual Representations via Network Dissection.
PAMI,,2019,On Detection, Data Association and Segmentation for Multi-Target Tracking.
PAMI,,2019,Opening the Black Box: Hierarchical Sampling Optimization for Hand Pose Estimation.
PAMI,,2019,Safe Classification with Augmented Features.
PAMI,,2019,Salient Subsequence Learning for Time Series Clustering.
PAMI,,2019,Scattering Networks for Hybrid Representation Learning.
PAMI,,2019,Solving Square Jigsaw Puzzle by Hierarchical Loop Constraints.
PAMI,,2019,Visual Dynamics: Stochastic Future Generation via Layered Cross Convolutional Networks.
PAMI,,2019,Zero-Shot Learning - A Comprehensive Evaluation of the Good, the Bad and the Ugly.
PAMI,,2019,A Kronecker Product Model for Repeated Pattern Detection on 2D Urban Images.
PAMI,,2019,Outlier Detection for Robust Multi-Dimensional Scaling.
PAMI,,2019,PsyPhy: A Psychophysics Driven Evaluation Framework for Visual Recognition.
PAMI,,2019,Guest Editors' Introduction to the Special Section on Compact and Efficient Feature Representation and Learning in Computer Vision.
PAMI,,2019,Runtime Network Routing for Efficient Image Classification.
PAMI,,2019,Denoising Prior Driven Deep Neural Network for Image Restoration.
PAMI,,2019,Two-Stream Region Convolutional 3D Network for Temporal Activity Detection.
PAMI,,2019,Tattoo Image Search at Scale: Joint Detection and Compact Representation Learning.
PAMI,,2019,Side Information for Face Completion: A Robust PCA Approach.
PAMI,,2019,Robust Kronecker Component Analysis.
PAMI,,2019,3D-Aided Dual-Agent GANs for Unconstrained Face Recognition.
PAMI,,2019,Min-Entropy Latent Model for Weakly Supervised Object Detection.
PAMI,,2019,Late Fusion Incomplete Multi-View Clustering.
PAMI,,2019,Hashing with Mutual Information.
PAMI,,2019,Dominant Sets for "Constrained" Image Segmentation.
PAMI,,2019,Generalizable Data-Free Objective for Crafting Universal Adversarial Perturbations.
PAMI,,2019,Label Consistent Matrix Factorization Hashing for Large-Scale Cross-Modal Similarity Search.
PAMI,,2019,Max-Margin Majority Voting for Learning from Crowds.
PAMI,,2019,Packing Convolutional Neural Networks in the Frequency Domain.
PAMI,,2019,RaspiReader: Open Source Fingerprint Reader.
PAMI,,2019,ThiNet: Pruning CNN Filters for a Thinner Net.
PAMI,,2019,A Generic Multi-Projection-Center Model and Calibration Method for Light Field Cameras.
PAMI,,2019,Convolutional Neural Network Architecture for Geometric Matching.
PAMI,,2019,Early Action Prediction by Soft Regression.
PAMI,,2019,Efficient Training for Positive Unlabeled Learning.
PAMI,,2019,Fast and Accurate Image Super-Resolution with Deep Laplacian Pyramid Networks.
PAMI,,2019,Fast Multi-Instance Multi-Label Learning.
PAMI,,2019,Large-Scale Low-Rank Matrix Learning with Nonconvex Regularizers.
PAMI,,2019,Non-Exhaustive, Overlapping Clustering.
PAMI,,2019,Nonlinear Asymmetric Multi-Valued Hashing.
PAMI,,2019,Pixel Objectness: Learning to Segment Generic Objects Automatically in Images and Videos.
PAMI,,2019,Predicting Head Movement in Panoramic Video: A Deep Reinforcement Learning Approach.
PAMI,,2019,Robust Visual Tracking via Hierarchical Convolutional Features.
PAMI,,2019,Semi-Supervised Domain Adaptation by Covariance Matching.
PAMI,,2019,Temporal Segment Networks for Action Recognition in Videos.
PAMI,,2019,Ticker: An Adaptive Single-Switch Text Entry Method for Visually Impaired Users.
PAMI,,2019,Visual Tracking via Dynamic Graph Learning.
PAMI,,2019,Cross-Generation Kinship Verification with Sparse Discriminative Metric.
PAMI,,2019,Active Camera Relocalization from a Single Reference Image without Hand-Eye Calibration.
PAMI,,2019,Anthropomorphic Features for On-Line Signatures.
PAMI,,2019,Dense 3D Object Reconstruction from a Single Depth View.
PAMI,,2019,Discriminant Functional Learning of Color Features for the Recognition of Facial Action Units and Their Intensities.
PAMI,,2019,Estimating the Number of Correct Matches Using Only Spatial Order.
PAMI,,2019,Generative Zero-Shot Learning via Low-Rank Embedded Semantic Dictionary.
PAMI,,2019,Height-from-Polarisation with Unknown Lighting or Albedo.
PAMI,,2019,Holistic CNN Compression via Low-Rank Decomposition with Knowledge Transfer.
PAMI,,2019,Material Classification from Time-of-Flight Distortions.
PAMI,,2019,Motion Segmentation via Generalized Curvatures.
PAMI,,2019,Multivariate Mixture Model for Myocardial Segmentation Combining Multi-Source Images.
PAMI,,2019,On the Effectiveness of Least Squares Generative Adversarial Networks.
PAMI,,2019,Order-Preserving Optimal Transport for Distances between Sequences.
PAMI,,2019,Personalized Saliency and Its Prediction.
PAMI,,2019,Rank Minimization for Snapshot Compressive Imaging.
PAMI,,2019,Representation Learning by Rotating Your Faces.
PAMI,,2019,None
PAMI,,2019,Segmentation of Laser Point Clouds in Urban Areas by a Modified Normalized Cut Method.
PAMI,,2019,Shallowing Deep Networks: Layer-Wise Pruning Based on Feature Representations.
PAMI,,2019,Sparse One-Grab Sampling with Probabilistic Guarantees.
PAMI,,2019,Transferable Representation Learning with Deep Adaptation Networks.
PAMI,,2019,Video Imprint.
PAMI,,2019,Visual Permutation Learning.
PAMI,,2018,State of the Journal.
PAMI,,2018,Active Self-Paced Learning for Cost-Effective and Progressive Face Identification.
PAMI,,2018,Saliency-Aware Video Object Segmentation.
PAMI,,2018,CODE: Coherence Based Decision Boundaries for Feature Correspondence.
PAMI,,2018,Dimensionality Reduction on SPD Manifolds: The Emergence of Geometry-Aware Methods.
PAMI,,2018,Direct Least Square Fitting of Hyperellipsoids.
PAMI,,2018,Discriminative Dimensionality Reduction for Multi-Dimensional Sequences.
PAMI,,2018,Fluid Dynamic Models for Bhattacharyya-Based Discriminant Analysis.
PAMI,,2018,Generative Local Metric Learning for Nearest Neighbor Classification.
PAMI,,2018,Latent-Class Hough Forests for 6 DoF Object Pose Estimation.
PAMI,,2018,Light Field Reconstruction Using Shearlet Transform.
PAMI,,2018,Longitudinal Study of Automatic Face Recognition.
PAMI,,2018,Multi-Dimensional Sparse Models.
PAMI,,2018,Multiresolution Search of the Rigid Motion Space for Intensity-Based Registration.
PAMI,,2018,Robust Guided Image Filtering Using Nonconvex Potentials.
PAMI,,2018,Robust Matrix Factorization by Majorization Minimization.
PAMI,,2018,SymPS: BRDF Symmetry Guided Photometric Stereo for Shape and Light Source Estimation.
PAMI,,2018,The Manhattan Frame Model - Manhattan World Inference in the Space of Surface Normals.
PAMI,,2018,24/7 Place Recognition by View Synthesis.
PAMI,,2018,Boosted Random Ferns for Object Detection.
PAMI,,2018,Clustering Millions of Faces by Identity.
PAMI,,2018,Curvilinear Structure Analysis by Ranking the Orientation Responses of Path Operators.
PAMI,,2018,Deep Unfolding for Topic Models.
PAMI,,2018,Demographic Analysis from Biometric Data: Achievements, Challenges, and New Frontiers.
PAMI,,2018,Exploiting Feature and Class Relationships in Video Categorization with Regularized Deep Neural Networks.
PAMI,,2018,Expression-Invariant Age Estimation Using Structured Learning.
PAMI,,2018,Fast Randomized Singular Value Thresholding for Low-Rank Optimization.
PAMI,,2018,Person Re-Identification by Camera Correlation Aware Feature Augmentation.
PAMI,,2018,Separability-Oriented Subclass Discriminant Analysis.
PAMI,,2018,Shading-Based Surface Detail Recovery Under General Unknown Illumination.
PAMI,,2018,Supervised Learning of Semantics-Preserving Hash via Deep Convolutional Neural Networks.
PAMI,,2018,Template Matching via Densities on the Roto-Translation Group.
PAMI,,2018,Watch-n-Patch: Unsupervised Learning of Actions and Relations.
PAMI,,2018,Algebraic Clustering of Affine Subspaces.
PAMI,,2018,Fast Supervised Discrete Hashing.
PAMI,,2018,Multi-Target Regression via Robust Low-Rank Learning.
PAMI,,2018,Multiview Rectification of Folded Documents.
PAMI,,2018,A Hybrid Shared-Memory Parallel Max-Tree Algorithm for Extreme Dynamic-Range Images.
PAMI,,2018,A Unified Alternating Direction Method of Multipliers by Majorization Minimization.
PAMI,,2018,A Unified Framework for Tracking Based Text Detection and Recognition from Web Videos.
PAMI,,2018,Binary Online Learned Descriptors.
PAMI,,2018,Binary Quadratic Programing for Online Tracking of Hundreds of People in Extremely Crowded Scenes.
PAMI,,2018,Collaborative Active Visual Recognition from Crowds: A Distributed Ensemble Approach.
PAMI,,2018,Confidence-Based Data Association and Discriminative Deep Appearance Learning for Robust Online Multi-Object Tracking.
PAMI,,2018,Direct Sparse Odometry.
PAMI,,2018,Embedding Based on Function Approximation for Large Scale Image Search.
PAMI,,2018,Fast Median Filtering for Phase or Orientation Data.
PAMI,,2018,Intrinsic Manifold SLIC: A Simple and Efficient Method for Computing Content-Sensitive Superpixels.
PAMI,,2018,Learning a Deep Model for Human Action Recognition from Novel Viewpoints.
PAMI,,2018,Leave-One-Out Kernel Optimization for Shadow Detection and Removal.
PAMI,,2018,Progressive Minimal Path Method for Segmentation of 2D and 3D Line Structures.
PAMI,,2018,Single-View 3D Scene Reconstruction and Parsing by Attribute Grammar.
PAMI,,2018,Spectral Learning for Supervised Topic Models.
PAMI,,2018,SVBRDF-Invariant Shape and Reflectance Estimation from a Light-Field Camera.
PAMI,,2018,Reconstructing Evolving Tree Structures in Time Lapse Sequences by Enforcing Time-Consistency.
PAMI,,2018,The Extreme Value Machine.
PAMI,,2018,A Survey on Learning to Hash.
PAMI,,2018,Automatic Camera Calibration Using Multiple Sets of Pairwise Correspondences.
PAMI,,2018,Challenging the Time Complexity of Exact Subgraph Isomorphism for Huge and Dense Graphs with VF3.
PAMI,,2018,Convolutional Oriented Boundaries: From Image Segmentation to High-Level Tasks.
PAMI,,2018,DeepLab: Semantic Image Segmentation with Deep Convolutional Nets, Atrous Convolution, and Fully Connected CRFs.
PAMI,,2018,Drawing and Recognizing Chinese Characters with Recurrent Neural Network.
PAMI,,2018,Generalizing Pooling Functions in CNNs: Mixed, Gated, and Tree.
PAMI,,2018,Learning Trans-Dimensional Random Fields with Applications to Language Modeling.
PAMI,,2018,Mixture of Probabilistic Principal Component Analyzers for Shapes from Point Sets.
PAMI,,2018,Personalized Age Progression with Bi-Level Aging Dictionary Learning.
PAMI,,2018,Probabilistic Elastic Part Model: A Pose-Invariant Representation for Real-World Face Verification.
PAMI,,2018,Rethinking the sGLOH Descriptor.
PAMI,,2018,Retrieval of Sentence Sequences for an Image Stream via Coherence Recurrent Convolutional Networks.
PAMI,,2018,Robust Relative Rotation Averaging.
PAMI,,2018,Towards Reaching Human Performance in Pedestrian Detection.
PAMI,,2018,Towards Robust and Accurate Multi-View and Partially-Occluded Face Alignment.
PAMI,,2018,Trunk-Branch Ensemble Convolutional Neural Networks for Video-Based Face Recognition.
PAMI,,2018,Video Super-Resolution via Bidirectional Recurrent Convolutional Networks.
PAMI,,2018,Guest Editors' Introduction to the Special Section on Learning with Shared Information for Computer Vision and Multimedia Analysis.
PAMI,,2018,Learning Compositional Sparse Bimodal Models.
PAMI,,2018,Deep Multimodal Feature Analysis for Action Recognition in RGB+D Videos.
PAMI,,2018,Hetero-Manifold Regularisation for Cross-Modal Hashing.
PAMI,,2018,BreakingNews: Article Annotation by Image and Text Processing.
PAMI,,2018,Audio-Visual Speaker Diarization Based on Spatiotemporal Bayesian Fusion.
PAMI,,2018,Webly-Supervised Fine-Grained Visual Categorization via Deep Domain Adaptation.
PAMI,,2018,Domain Generalization and Adaptation Using Low Rank Exemplar SVMs.
PAMI,,2018,Deep Canonical Time Warping for Simultaneous Alignment and Representation Learning of Sequences.
PAMI,,2018,Context-Aware Local Binary Feature Learning for Face Recognition.
PAMI,,2018,Collaborative Index Embedding for Image Retrieval.
PAMI,,2018,Multi-Task Learning with Low Rank Attribute Embedding for Multi-Camera Person Re-Identification.
PAMI,,2018,Unsupervised Transfer Learning via Multi-Scale Convolutional Sparse Coding for Biomedical Applications.
PAMI,,2018,A Novel Linelet-Based Representation for Line Segment Detection.
PAMI,,2018,Sequential Optimization for Efficient High-Quality Object Proposal Generation.
PAMI,,2018,SIFT Meets CNN: A Decade Survey of Instance Retrieval.
PAMI,,2018,Shakeout: A New Approach to Regularized Deep Neural Network Training.
PAMI,,2018,3D Object Proposals Using Stereo Imagery for Accurate Object Class Detection.
PAMI,,2018,Efficient 2D and 3D Facade Segmentation Using Auto-Context.
PAMI,,2018,3D Object Localisation from Multi-View Image Detections.
PAMI,,2018,A Bayesian Approach to Policy Recognition and State Representation Learning.
PAMI,,2018,Bilinear Convolutional Neural Networks for Fine-Grained Visual Recognition.
PAMI,,2018,Data Visualization with Structural Control of Global Cohort and Local Data Neighborhoods.
PAMI,,2018,Deformation Based Curved Shape Representation.
PAMI,,2018,Exploring Context with Deep Structured Models for Semantic Segmentation.
PAMI,,2018,Image Captioning and Visual Question Answering Based on Attributes and External Knowledge.
PAMI,,2018,Incorporating Network Built-in Priors in Weakly-Supervised Semantic Segmentation.
PAMI,,2018,Joint Alignment of Multiple Point Sets with Batch and Incremental Expectation-Maximization.
PAMI,,2018,Joint Multi-Leaf Segmentation, Alignment, and Tracking for Fluorescence Plant Videos.
PAMI,,2018,Matching by Monotonic Tone Mapping.
PAMI,,2018,NetVLAD: CNN Architecture for Weakly Supervised Place Recognition.
PAMI,,2018,Places: A 10 Million Image Database for Scene Recognition.
PAMI,,2018,Robust 3D Object Tracking from Monocular Images Using Stable Parts.
PAMI,,2018,Scene Segmentation with DAG-Recurrent Neural Networks.
PAMI,,2018,Gracker: A Graph-Based Planar Object Tracker.
PAMI,,2018,Learning Semantic Part-Based Models from Google Images.
PAMI,,2018,Long-Term Temporal Convolutions for Action Recognition.
PAMI,,2018,Spatiotemporal GMM for Background Subtraction with Superpixel Hierarchy.
PAMI,,2018,Sub-Selective Quantization for Learning Binary Codes in Large-Scale Image Search.
PAMI,,2018,Analysis and Optimization of Loss Functions for Multiclass, Top-k, and Multilabel Classification.
PAMI,,2018,Attribute And-Or Grammar for Joint Parsing of Human Pose, Parts and Attributes.
PAMI,,2018,Collocation for Diffeomorphic Deformations in Medical Image Registration.
PAMI,,2018,Dense 3D Face Correspondence.
PAMI,,2018,ELD-Net: An Efficient Deep Learning Architecture for Accurate Saliency Detection.
PAMI,,2018,Inference-Based Similarity Search in Randomized Montgomery Domains for Privacy-Preserving Biometric Identification.
PAMI,,2018,Joint Semantic and Latent Attribute Modelling for Cross-Class Transfer Learning.
PAMI,,2018,Learning and Inferring "Dark Matter" and Predicting Human Intents and Trajectories in Videos.
PAMI,,2018,Learning from Ambiguously Labeled Face Images.
PAMI,,2018,Maximum Persistency via Iterative Relaxed Inference in Graphical Models.
PAMI,,2018,Multi-Atlas Segmentation Using Partially Annotated Data: Methods and Annotation Strategies.
PAMI,,2018,Multi-Gait Recognition Based on Attribute Discovery.
PAMI,,2018,Proposal Flow: Semantic Correspondences from Object Proposals.
PAMI,,2018,Robust Online Matrix Factorization for Dynamic Background Subtraction.
PAMI,,2018,Semantic Object Segmentation in Tagged Videos via Detection.
PAMI,,2018,The Kendall and Mallows Kernels for Permutations.
PAMI,,2018,Transduction on Directed Graphs via Absorbing Random Walks.
PAMI,,2018,3D Reconstruction in the Presence of Glass and Mirrors by Acoustic and Visual Fusion.
PAMI,,2018,Best-Buddies Similarity - Robust Template Matching Using Mutual Nearest Neighbors.
PAMI,,2018,Deep Learning Markov Random Field for Semantic Segmentation.
PAMI,,2018,Discriminatively Trained Latent Ordinal Model for Video Classification.
PAMI,,2018,Faceness-Net: Face Detection through Deep Facial Part Responses.
PAMI,,2018,Gaussian Process Morphable Models.
PAMI,,2018,Jointly Learning Deep Features, Deformable Parts, Occlusion and Classification for Pedestrian Detection.
PAMI,,2018,Kronecker-Basis-Representation Based Tensor Sparsity and Its Applications to Tensor Recovery.
PAMI,,2018,Learning Spatial-Semantic Context with Fully Convolutional Recurrent Network for Online Handwritten Chinese Text Recognition.
PAMI,,2018,Piecewise-Planar StereoScan: Sequential Structure and Motion Using Plane Primitives.
PAMI,,2018,Reflectance and Natural Illumination from Single-Material Specular Objects Using Deep Learning.
PAMI,,2018,Scalable Joint Models for Reliable Uncertainty-Aware Event Prediction.
PAMI,,2018,Simultaneous Clustering and Model Selection: Algorithm, Theory and Applications.
PAMI,,2018,Simultaneous Local Binary Feature Learning and Encoding for Homogeneous and Heterogeneous Face Recognition.
PAMI,,2018,Tracking-by-Detection of 3D Human Shapes: From Surfaces to Volumes.
PAMI,,2018,Zero-Shot Learning on Semantic Class Prototype Graph.
PAMI,,2018,A Probabilistic Active Learning Algorithm Based on Fisher Information Ratio.
PAMI,,2018,Visual Recognition in RGB Images and Videos by Learning from RGB-D Data.
PAMI,,2018,A Functional Regression Approach to Facial Landmark Tracking.
PAMI,,2018,A Multi-Modal, Discriminative and Spatially Invariant CNN for RGB-D Object Labeling.
PAMI,,2018,Bilinear Factor Matrix Norm Minimization for Robust PCA: Algorithms and Applications.
PAMI,,2018,Colour Constancy Beyond the Classical Receptive Field.
PAMI,,2018,Coresets for Triangulation.
PAMI,,2018,Crafting GBD-Net for Object Detection.
PAMI,,2018,Fixed Points of Belief Propagation - An Analysis via Polynomial Homotopy Continuation.
PAMI,,2018,Force-Based Representation for Non-Rigid Shape and Elastic Model Estimation.
PAMI,,2018,Hierarchical Sparse Representation for Robust Image Registration.
PAMI,,2018,Highly Articulated Kinematic Structure Estimation Combining Motion and Skeleton Information.
PAMI,,2018,Image Visual Realism: From Human Perception to Machine Computation.
PAMI,,2018,Learning from Narrated Instruction Videos.
PAMI,,2018,Probabilistic Framework for the Characterization of Surfaces and Edges in Range Images, with Application to Edge Detection.
PAMI,,2018,Self-Expressive Dictionary Learning for Dynamic 3D Reconstruction.
PAMI,,2018,SimiNet: A Novel Method for Quantifying Brain Network Similarity.
PAMI,,2018,Viewpoint-Consistent 3D Face Alignment.
PAMI,,2018,Bayesian Helmholtz Stereopsis with Integrability Prior.
PAMI,,2018,Foreground Segmentation with Tree-Structured Sparse RPCA.
PAMI,,2018,Sharable and Individual Multi-View Metric Learning.
PAMI,,2018,Characterization of Color Images with Multiscale Monogenic Maxima.
PAMI,,2018,Cross-Modal Scene Networks.
PAMI,,2018,Deblurring Images via Dark Channel Prior.
PAMI,,2018,Deblurring Low-Light Images with Light Streaks.
PAMI,,2018,Discriminative Multiple Instance Hyperspectral Target Characterization.
PAMI,,2018,Dual Sticky Hierarchical Dirichlet Process Hidden Markov Model and Its Application to Natural Language Description of Motions.
PAMI,,2018,Dynamic Video Deblurring Using a Locally Adaptive Blur Model.
PAMI,,2018,Error-Correcting Factorization.
PAMI,,2018,Event-Based, 6-DOF Camera Tracking from Photometric Depth Maps.
PAMI,,2018,FVQA: Fact-Based Visual Question Answering.
PAMI,,2018,Inextensible Non-Rigid Structure-from-Motion by Second-Order Cone Programming.
PAMI,,2018,Isometric Non-Rigid Shape-from-Motion with Riemannian Geometry Solved in Linear Time.
PAMI,,2018,Object Segmentation Ensuring Consistency Across Multi-Viewpoint Images.
PAMI,,2018,Partition Level Constrained Clustering.
PAMI,,2018,Robust Light Field Depth Estimation Using Occlusion-Noise Aware Data Costs.
PAMI,,2018,Zero-Shot Learning Using Synthesised Unseen Visual Data with Diffusion Regularisation.
PAMI,,2018,Face Recognition via Collaborative Representation: Its Discriminant Nature and Superposed Representation.
PAMI,,2018,S-CNN: Subcategory-Aware Convolutional Networks for Object Detection.
PAMI,,2018,Structure-Aware Data Consolidation.
PAMI,,2018,Ghost Numbers.
PAMI,,2018,Response to "Ghost Numbers".
PAMI,,2018,Guest Editorial: The Computational Face.
PAMI,,2018,Two-Stream Transformer Networks for Video-Based Face Alignment.
PAMI,,2018,None
PAMI,,2018,Recurrent Convolutional Shape Regression.
PAMI,,2018,EAC-Net: Deep Nets with Enhancing and Cropping for Facial Action Unit Detection.
PAMI,,2018,Heterogeneous Face Attribute Estimation: A Deep Multi-Task Learning Approach.