forked from talengu/paper_seacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathijcv_papers.txt
2471 lines (2471 loc) · 191 KB
/
ijcv_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
IJCV,,2021,View Transfer on Human Skeleton Pose: Automatically Disentangle the View-Variant and View-Invariant Information for Pose Representation Learning.
IJCV,,2021,Image Matching from Handcrafted to Deep Features: A Survey.
IJCV,,2021,A Camera Model for Line-Scan Cameras with Telecentric Lenses.
IJCV,,2021,Solving Rolling Shutter 3D Vision Problems using Analogies with Non-rigidity.
IJCV,,2021,Temporally Coherent General Dynamic Scene Reconstruction.
IJCV,,2021,Recursive Context Routing for Object Detection.
IJCV,,2021,Scene Text Detection and Recognition: The Deep Learning Era.
IJCV,,2021,Improving Image Description with Auxiliary Modality for Visual Localization in Challenging Conditions.
IJCV,,2021,DeepVS2.0: A Saliency-Structured Deep Learning Method for Predicting Dynamic Visual Attention.
IJCV,,2021,Pixel-Wise Crowd Understanding via Synthetic Data.
IJCV,,2021,Talk2Nav: Long-Range Vision-and-Language Navigation with Dual Attention and Spatial Memory.
IJCV,,2021,Unsupervised Domain Adaptation in the Wild via Disentangling Representation Learning.
IJCV,,2021,Volume Sweeping: Learning Photoconsistency for Multi-View Shape Reconstruction.
IJCV,,2021,Beyond Covariance: SICE and Kernel Based Visual Feature Representation.
IJCV,,2021,JÂA-Net: Joint Facial Action Unit Detection and Face Alignment Via Adaptive Attention.
IJCV,,2021,Rain Rendering for Evaluating and Improving Robustness to Bad Weather.
IJCV,,2021,A Comprehensive Analysis of Weakly-Supervised Semantic Segmentation in Different Image Domains.
IJCV,,2021,Face Image Reflection Removal.
IJCV,,2021,Unsupervised Deep Representation Learning for Real-Time Tracking.
IJCV,,2021,Deep Hashing with Hash-Consistent Large Margin Proxy Embeddings.
IJCV,,2021,LaSOT: A High-quality Large-scale Single Object Tracking Benchmark.
IJCV,,2021,Benchmarking the Robustness of Semantic Segmentation Models with Respect to Common Corruptions.
IJCV,,2021,Fine-Grained Instance-Level Sketch-Based Image Retrieval.
IJCV,,2021,Binarized Neural Architecture Search for Efficient Object Recognition.
IJCV,,2021,Image Matching Across Wide Baselines: From Paper to Practice.
IJCV,,2021,HOTA: A Higher Order Metric for Evaluating Multi-object Tracking.
IJCV,,2021,Deformable Kernel Networks for Joint Image Filtering.
IJCV,,2021,Progressive Multi-granularity Analysis for Video Prediction.
IJCV,,2021,Residual Dual Scale Scene Text Spotting by Fusing Bottom-Up and Top-Down Processing.
IJCV,,2021,Progressive DARTS: Bridging the Optimization Gap for NAS in the Wild.
IJCV,,2021,Entrack: Probabilistic Spherical Regression with Entropy Regularization for Fiber Tractography.
IJCV,,2021,Weakly Supervised Group Mask Network for Object Detection.
IJCV,,2021,AdaFuse: Adaptive Multiview Fusion for Accurate Human Pose Estimation in the Wild.
IJCV,,2021,Viewpoint and Scale Consistency Reinforcement for UAV Vehicle Re-Identification.
IJCV,,2021,Compositional Convolutional Neural Networks: A Robust and Interpretable Model for Object Recognition Under Occlusion.
IJCV,,2021,CDTD: A Large-Scale Cross-Domain Benchmark for Instance-Level Image-to-Image Translation and Domain Adaptive Object Detection.
IJCV,,2021,Deep Nets: What have They Ever Done for Vision?
IJCV,,2021,Correction to: Rooted Spanning Superpixels.
IJCV,,2021,Learning Extremal Representations with Deep Archetypal Analysis.
IJCV,,2021,Reference Pose Generation for Long-term Visual Localization via Learned Features and View Synthesis.
IJCV,,2021,MOTChallenge: A Benchmark for Single-Camera Multiple Target Tracking.
IJCV,,2021,A Benchmark and Evaluation of Non-Rigid Structure from Motion.
IJCV,,2021,Learning to Reconstruct HDR Images from Events, with Applications to Depth and Flow Prediction.
IJCV,,2021,Hierarchical Visual-Textual Knowledge Distillation for Life-Long Correlation Learning.
IJCV,,2021,Adding Knowledge to Unsupervised Algorithms for the Recognition of Intent.
IJCV,,2021,Separating Content from Style Using Adversarial Learning for Recognizing Text in the Wild.
IJCV,,2021,Evaluation of Inpainting and Augmentation for Censored Image Queries.
IJCV,,2021,Rectified Binary Convolutional Networks with Generative Adversarial Learning.
IJCV,,2021,Beyond Brightening Low-light Images.
IJCV,,2021,The MVTec Anomaly Detection Dataset: A Comprehensive Real-World Dataset for Unsupervised Anomaly Detection.
IJCV,,2021,Parallel Single-Pixel Imaging: A General Method for Direct-Global Separation and 3D Shape Reconstruction Under Strong Global Illumination.
IJCV,,2021,AutoDet: Pyramid Network Architecture Search for Object Detection.
IJCV,,2021,Rectifying Pseudo Label Learning via Uncertainty Estimation for Domain Adaptive Semantic Segmentation.
IJCV,,2021,A Shape Transformation-based Dataset Augmentation Framework for Pedestrian Detection.
IJCV,,2021,Excitation Dropout: Encouraging Plasticity in Deep Neural Networks.
IJCV,,2021,Benchmarking Low-Light Image Enhancement and Beyond.
IJCV,,2021,Label-Free Robustness Estimation of Object Detection CNNs for Autonomous Driving Applications.
IJCV,,2021,Incremental Rotation Averaging.
IJCV,,2021,Complete Singularity Analysis for the Perspective-Four-Point Problem.
IJCV,,2021,Unified Quality Assessment of in-the-Wild Videos with Mixed Datasets Training.
IJCV,,2021,Comparison of Full-Reference Image Quality Models for Optimization of Image Processing Systems.
IJCV,,2021,Selective Wavelet Attention Learning for Single Image Deraining.
IJCV,,2021,A Comprehensive Benchmark Analysis of Single Image Deraining: Current Challenges and Future Perspectives.
IJCV,,2021,DeepFlux for Skeleton Detection in the Wild.
IJCV,,2021,Deformable Image Registration Based on Functions of Bounded Generalized Deformation.
IJCV,,2021,Adaptive Channel Selection for Robust Visual Object Tracking with Discriminative Correlation Filters.
IJCV,,2021,Towards Balanced Learning for Instance Recognition.
IJCV,,2021,Letter-Level Online Writer Identification.
IJCV,,2021,Manhattan Room Layout Reconstruction from a Single $360^{\circ }$ Image: A Comparative Study of State-of-the-Art Methods.
IJCV,,2021,ACTNET: End-to-End Learning of Feature Activations and Multi-stream Aggregation for Effective Instance Image Retrieval.
IJCV,,2021,Semantic Hierarchy Emerges in Deep Generative Representations for Scene Synthesis.
IJCV,,2021,LAMP-HQ: A Large-Scale Multi-pose High-Quality Database and Benchmark for NIR-VIS Face Recognition.
IJCV,,2021,Spatial-Temporal Relation Reasoning for Action Prediction in Videos.
IJCV,,2021,Real-Time Semantic Segmentation via Auto Depth, Downsampling Joint Decision and Feature Aggregation.
IJCV,,2021,Visual Interestingness Prediction: A Benchmark Framework and Literature Review.
IJCV,,2021,EfficientPS: Efficient Panoptic Segmentation.
IJCV,,2021,Intra-Camera Supervised Person Re-Identification.
IJCV,,2021,Enhanced 3D Human Pose Estimation from Videos by Using Attention-Based Neural Network with Dilated Convolutions.
IJCV,,2021,An Exploration of Embodied Visual Exploration.
IJCV,,2021,Context-Enhanced Representation Learning for Single Image Deraining.
IJCV,,2021,Mimetics: Towards Understanding Human Actions Out of Context.
IJCV,,2021,Successive Graph Convolutional Network for Image De-raining.
IJCV,,2021,Evaluation Metrics for Conditional Image Generation.
IJCV,,2021,Evaluating Visual Properties via Robust HodgeRank.
IJCV,,2021,You Only Look Yourself: Unsupervised and Untrained Single Image Dehazing Neural Network.
IJCV,,2021,Exposing Semantic Segmentation Failures via Maximum Discrepancy Competition.
IJCV,,2021,Correction to: Parallel Single-Pixel Imaging: A General Method for Direct-Global Separation and 3D Shape Reconstruction Under Strong Global Illumination.
IJCV,,2021,Knowledge Distillation: A Survey.
IJCV,,2021,Learning Deep Patch representation for Probabilistic Graphical Model-Based Face Sketch Synthesis.
IJCV,,2021,Development and Validation of an Unsupervised Feature Learning System for Leukocyte Characterization and Classification: A Multi-Hospital Study.
IJCV,,2021,Vote-Based 3D Object Detection with Context Modeling and SOB-3DNMS.
IJCV,,2021,Guided Attention in CNNs for Occluded Pedestrian Detection and Re-identification.
IJCV,,2021,Visual Structure Constraint for Transductive Zero-Shot Learning in the Wild.
IJCV,,2021,Polysemy Deciphering Network for Robust Human-Object Interaction Detection.
IJCV,,2021,Learning Adaptive Classifiers Synthesis for Generalized Few-Shot Learning.
IJCV,,2021,Object Priors for Classifying and Localizing Unseen Actions.
IJCV,,2021,Exploring the Capacity of an Orderless Box Discretization Network for Multi-orientation Scene Text Detection.
IJCV,,2021,Deep Human-Interaction and Association by Graph-Based Learning for Multiple Object Tracking in the Wild.
IJCV,,2021,Renormalization for Initialization of Rolling Shutter Visual-Inertial Odometry.
IJCV,,2021,Guest Editorial: Special Issue on Performance Evaluation in Computer Vision.
IJCV,,2021,Guest Editorial: Special Issue on "Computer Vision for All Seasons: Adverse Weather and Lighting Conditions".
IJCV,,2021,Segmentation by Continuous Latent Semantic Analysis for Multi-structure Model Fitting.
IJCV,,2021,A Shape-Aware Retargeting Approach to Transfer Human Motion and Appearance in Monocular Videos.
IJCV,,2021,CNN-Based RGB-D Salient Object Detection: Learn, Select, and Fuse.
IJCV,,2021,Quo Vadis, Skeleton Action Recognition?
IJCV,,2021,Continuous 3D Multi-Channel Sign Language Production via Progressive Transformers and Mixture Density Networks.
IJCV,,2021,VPR-Bench: An Open-Source Visual Place Recognition Evaluation Framework with Quantifiable Viewpoint and Appearance Change.
IJCV,,2021,Attention Guided Low-Light Image Enhancement with a Large Scale Low-Light Simulation Dataset.
IJCV,,2021,The Isowarp: The Template-Based Visual Geometry of Isometric Surfaces.
IJCV,,2021,Scale-Aware Domain Adaptive Faster R-CNN.
IJCV,,2021,Unsupervised Domain Adaptation with Background Shift Mitigating for Person Re-Identification.
IJCV,,2021,Synthetic Humans for Action Recognition from Unseen Viewpoints.
IJCV,,2021,Mitigating Demographic Bias in Facial Datasets with Style-Based Multi-attribute Transfer.
IJCV,,2021,Cross-Modal Pyramid Translation for RGB-D Scene Recognition.
IJCV,,2021,Deep CockTail Networks.
IJCV,,2021,Saliency Detection Inspired by Topological Perception Theory.
IJCV,,2021,OCNet: Object Context for Semantic Segmentation.
IJCV,,2021,MADAN: Multi-source Adversarial Domain Aggregation Network for Domain Adaptation.
IJCV,,2021,A Numerical Framework for Elastic Surface Matching, Comparison, and Interpolation.
IJCV,,2021,ShadingNet: Image Intrinsics by Fine-Grained Shading Decomposition.
IJCV,,2021,SODA: Weakly Supervised Temporal Action Localization Based on Astute Background Response and Self-Distillation Learning.
IJCV,,2021,Deep Unsupervised 3D Human Body Reconstruction from a Sparse set of Landmarks.
IJCV,,2021,Multi-level Motion Attention for Human Motion Prediction.
IJCV,,2021,Learning Regression and Verification Networks for Robust Long-term Tracking.
IJCV,,2021,Unsupervised Scale-Consistent Depth Learning from Video.
IJCV,,2021,Learned Collaborative Stereo Refinement.
IJCV,,2021,Tracking by Deblatting.
IJCV,,2021,Semantics-to-Signal Scalable Image Compression with Learned Revertible Representations.
IJCV,,2021,Structure-Measure: A New Way to Evaluate Foreground Maps.
IJCV,,2021,Towards High Performance Human Keypoint Detection.
IJCV,,2021,Learning to Caricature via Semantic Shape Transform.
IJCV,,2021,Shape My Face: Registering 3D Face Scans by Surface-to-Surface Translation.
IJCV,,2021,Learning Adaptive Attribute-Driven Representation for Real-Time RGB-T Tracking.
IJCV,,2021,Correction to: Long-Short Temporal-Spatial Clues Excited Network for Robust Person Re-identification.
IJCV,,2021,Cascaded Split-and-Aggregate Learning with Feature Recombination for Pedestrian Attribute Recognition.
IJCV,,2021,Spectral Shape Recovery and Analysis Via Data-driven Connections.
IJCV,,2021,SDNet: A Versatile Squeeze-and-Decomposition Network for Real-Time Image Fusion.
IJCV,,2021,Pluralistic Free-Form Image Completion.
IJCV,,2021,A Decomposable Winograd Method for N-D Convolution Acceleration in Video Analysis.
IJCV,,2021,Deep Maximum a Posterior Estimator for Video Denoising.
IJCV,,2021,SportsCap: Monocular 3D Human Motion Capture and Fine-Grained Understanding in Challenging Sports Videos.
IJCV,,2021,DLOW: Domain Flow and Applications.
IJCV,,2021,Just Recognizable Distortion for Machine Vision Oriented Image and Video Coding.
IJCV,,2021,Adaptive Dimension-Discriminative Low-Rank Tensor Recovery for Computational Hyperspectral Imaging.
IJCV,,2021,Context and Structure Mining Network for Video Object Detection.
IJCV,,2021,Deep Learning Geometry Compression Artifacts Removal for Video-Based Point Cloud Compression.
IJCV,,2021,A Coarse-to-Fine Framework for Resource Efficient Video Recognition.
IJCV,,2021,Predicting Visual Political Bias Using Webly Supervised Data and an Auxiliary Task.
IJCV,,2021,Guest Editorial: Special Issue: Computer Vision and Pattern Recognition (DAGM GCPR 2019).
IJCV,,2021,3D Scene Reconstruction with an Un-calibrated Light Field Camera.
IJCV,,2021,Hierarchical Conditional Relation Networks for Multimodal Video Question Answering.
IJCV,,2021,BiSeNet V2: Bilateral Network with Guided Aggregation for Real-Time Semantic Segmentation.
IJCV,,2021,FairMOT: On the Fairness of Detection and Re-identification in Multiple Object Tracking.
IJCV,,2021,Assignment Flow for Order-Constrained OCT Segmentation.
IJCV,,2021,The Fishyscapes Benchmark: Measuring Blind Spots in Semantic Segmentation.
IJCV,,2021,Semantic Bottlenecks: Quantifying and Improving Inspectability of Deep Representations.
IJCV,,2021,Norm-Aware Embedding for Efficient Person Search and Tracking.
IJCV,,2021,Computer Vision and Pattern Recognition 2020.
IJCV,,2021,Guest Editorial: Special Issue on Deep Learning for Video Analysis and Compression.
IJCV,,2021,Pixel-in-Pixel Net: Towards Efficient Facial Landmark Detection in the Wild.
IJCV,,2021,Visiting the Invisible: Layer-by-Layer Completed Scene Decomposition.
IJCV,,2021,Hierarchical Domain-Adapted Feature Learning for Video Saliency Prediction.
IJCV,,2021,Dual-Constrained Deep Semi-Supervised Coupled Factorization Network with Enriched Prior.
IJCV,,2021,Deep Trajectory Post-Processing and Position Projection for Single & Multiple Camera Multiple Object Tracking.
IJCV,,2021,Dual-view Snapshot Compressive Imaging via Optical Flow Aided Recurrent Neural Network.
IJCV,,2021,NAS-FCOS: Efficient Search for Object Detection Architectures.
IJCV,,2021,3D-FUTURE: 3D Furniture Shape with TextURE.
IJCV,,2021,DeMoCap: Low-Cost Marker-Based Motion Capture.
IJCV,,2020,ARBEE: Towards Automated Recognition of Bodily Expression of Emotion in the Wild.
IJCV,,2020,Synchronization Problems in Computer Vision with Closed-Form Solutions.
IJCV,,2020,Robust Attentional Aggregation of Deep Feature Sets for Multi-view 3D Reconstruction.
IJCV,,2020,Temporal Action Detection with Structured Segment Networks.
IJCV,,2020,Tracking Persons-of-Interest via Unsupervised Representation Adaptation.
IJCV,,2020,Shape-From-Template with Curves.
IJCV,,2020,Classifier and Exemplar Synthesis for Zero-Shot Learning.
IJCV,,2020,Bi-Real Net: Binarizing Deep Network Towards Real-Network Performance.
IJCV,,2020,Predicting Intentions from Motion: The Subject-Adversarial Adaptation Approach.
IJCV,,2020,Single Image Dehazing via Multi-scale Convolutional Neural Networks with Holistic Edges.
IJCV,,2020,Deep Learning for Generic Object Detection: A Survey.
IJCV,,2020,Semantically Coherent 4D Scene Flow of Dynamic Scenes.
IJCV,,2020,Grad-CAM: Visual Explanations from Deep Networks via Gradient-Based Localization.
IJCV,,2020,None
IJCV,,2020,Semantic Image Networks for Human Action Recognition.
IJCV,,2020,Deep Insights into Convolutional Networks for Video Recognition.
IJCV,,2020,Corner Detection Using Multi-directional Structure Tensor with Multiple Scales.
IJCV,,2020,Recognizing Profile Faces by Imagining Frontal View.
IJCV,,2020,Adaptive Importance Learning for Improving Lightweight Image Super-Resolution Network.
IJCV,,2020,Hallucinating Unaligned Face Images by Multiscale Transformative Discriminative Networks.
IJCV,,2020,SceneFlowFields++: Multi-frame Matching, Visibility Prediction, and Robust Interpolation for Scene Flow Estimation.
IJCV,,2020,Statistical Modeling of Craniofacial Shape and Texture.
IJCV,,2020,Special Issue: Advances in Architectures and Theories for Computer Vision.
IJCV,,2020,Robust Fitting in Computer Vision: Easy or Hard?
IJCV,,2020,Learning SO(3) Equivariant Representations with Spherical CNNs.
IJCV,,2020,EKLT: Asynchronous Photometric Feature Tracking Using Events and Frames.
IJCV,,2020,Correction to: EKLT: Asynchronous Photometric Feature Tracking Using Events and Frames.
IJCV,,2020,Jointly Discovering Visual Objects and Spoken Words from Raw Sensory Input.
IJCV,,2020,CornerNet: Detecting Objects as Paired Keypoints.
IJCV,,2020,DeepIM: Deep Iterative Matching for 6D Pose Estimation.
IJCV,,2020,Differential Scene Flow from Light Field Gradients.
IJCV,,2020,GANimation: One-Shot Anatomically Consistent Facial Animation.
IJCV,,2020,Augmented Autoencoders: Implicit 3D Orientation Learning for 6D Object Detection.
IJCV,,2020,Convolutional Networks with Adaptive Inference Graphs.
IJCV,,2020,Group Normalization.
IJCV,,2020,DeepTAM: Deep Tracking and Mapping with Convolutional Neural Networks.
IJCV,,2020,Editorial: Special Issue on Machine Vision with Deep Learning.
IJCV,,2020,Learning on the Edge: Investigating Boundary Filters in CNNs.
IJCV,,2020,A Simple and Light-Weight Attention Module for Convolutional Neural Networks.
IJCV,,2020,Simultaneous Deep Stereo Matching and Dehazing with Feature Attention.
IJCV,,2020,Pixelated Semantic Colorization.
IJCV,,2020,Learning Single-Image 3D Reconstruction by Generative Modelling of Shape, Pose and Shading.
IJCV,,2020,Modeling Human Motion with Quaternion-Based Neural Networks.
IJCV,,2020,Learning Multi-human Optical Flow.
IJCV,,2020,Text2Sign: Towards Sign Language Production Using Neural Machine Translation and Generative Adversarial Networks.
IJCV,,2020,Guest Editorial: Special Issue on ACCV 2018.
IJCV,,2020,EdgeStereo: An Effective Multi-task Learning Network for Stereo Matching and Edge Detection.
IJCV,,2020,VOSTR: Video Object Segmentation via Transferable Representations.
IJCV,,2020,Minimal Solvers for Rectifying from Radially-Distorted Scales and Change of Scales.
IJCV,,2020,Editor's Note.
IJCV,,2020,KS(conf): A Light-Weight Test if a Multiclass Classifier Operates Outside of Its Specifications.
IJCV,,2020,Correction to: KS(conf): A Light-Weight Test if a Multiclass Classifier Operates Outside of Its Specifications.
IJCV,,2020,End-to-End Learning of Decision Trees and Forests.
IJCV,,2020,3D Fluid Flow Estimation with Integrated Particle Reconstruction.
IJCV,,2020,Scaling up the Randomized Gradient-Free Adversarial Attack Reveals Overestimation of Robustness Using Established Attacks.
IJCV,,2020,Inference, Learning and Attention Mechanisms that Exploit and Preserve Sparsity in CNNs.
IJCV,,2020,Efficient Object Annotation via Speaking and Pointing.
IJCV,,2020,Learning to Draw Sight Lines.
IJCV,,2020,Refractive Two-View Reconstruction for Underwater 3D Vision.
IJCV,,2020,Loss-Sensitive Generative Adversarial Networks on Lipschitz Densities.
IJCV,,2020,The Unmanned Aerial Vehicle Benchmark: Object Detection, Tracking and Baseline.
IJCV,,2020,Special Issue on Deep Learning for Robotic Vision.
IJCV,,2020,Learning 3D Shape Completion Under Weak Supervision.
IJCV,,2020,Curriculum Model Adaptation with Synthetic and Real Data for Semantic Foggy Scene Understanding.
IJCV,,2020,Image-Based Geo-Localization Using Satellite Imagery.
IJCV,,2020,Semi-supervised Semantic Mapping Through Label Propagation with Semantic Texture Meshes.
IJCV,,2020,Self-Supervised Model Adaptation for Multimodal Semantic Segmentation.
IJCV,,2020,SeDAR: Reading Floorplans Like a Human - Using Deep Learning to Enable Human-Inspired Localisation.
IJCV,,2020,Cognitive Mapping and Planning for Visual Navigation.
IJCV,,2020,Deep Multicameral Decoding for Localizing Unoccluded Object Instances from a Single RGB Image.
IJCV,,2020,Model-Based Robot Imitation with Future Image Similarity.
IJCV,,2020,Correction to: Model-Based Robot Imitation with Future Image Similarity.
IJCV,,2020,Special Issue on Generating Realistic Visual Data of Human Behavior.
IJCV,,2020,Adversarial Framework for Unsupervised Learning of Motion Dynamics in Videos.
IJCV,,2020,Realistic Speech-Driven Facial Animation with GANs.
IJCV,,2020,A Weakly Supervised Multi-task Ranking Framework for Actor-Action Semantic Segmentation.
IJCV,,2020,Masked Linear Regression for Learning Local Receptive Fields for Facial Expression Synthesis.
IJCV,,2020,Deep Neural Network Augmentation: Generating Faces for Affect Analysis.
IJCV,,2020,Towards High Fidelity Face Frontalization in the Wild.
IJCV,,2020,Generating Human Action Videos by Coupling 3D Game Engines and Probabilistic Graphical Models.
IJCV,,2020,DGPose: Deep Generative Models for Human Body Analysis.
IJCV,,2020,A Face Fairness Framework for 3D Meshes.
IJCV,,2020,GMS: Grid-Based Motion Statistics for Fast, Ultra-robust Feature Correspondence.
IJCV,,2020,Real-Time Multi-person Motion Capture from Multi-view Video and IMUs.
IJCV,,2020,Representation Learning on Unit Ball with 3D Roto-translational Equivariance.
IJCV,,2020,Scalable Person Re-Identification by Harmonious Attention.
IJCV,,2020,Fine-Grained Person Re-identification.
IJCV,,2020,Siamese Dense Network for Reflection Removal with Flash and No-Flash Image Pairs.
IJCV,,2020,Gated Fusion Network for Degraded Image Super Resolution.
IJCV,,2020,Discriminative Training of Conditional Random Fields with Probably Submodular Constraints.
IJCV,,2020,Weakly-Supervised Semantic Segmentation by Iterative Affinity Learning.
IJCV,,2020,Visual Social Relationship Recognition.
IJCV,,2020,RGB-IR Person Re-identification by Cross-Modality Similarity Preservation.
IJCV,,2020,Bottom-Up Scene Text Detection with Markov Clustering Networks.
IJCV,,2020,Multi-task Generative Adversarial Network for Detecting Small Objects in the Wild.
IJCV,,2020,Exploiting Semantics for Face Image Deblurring.
IJCV,,2020,Is There Anything New to Say About SIFT Matching?
IJCV,,2020,Deep Image Prior.
IJCV,,2020,Light Structure from Pin Motion: Geometric Point Light Source Calibration.
IJCV,,2020,None
IJCV,,2020,Semi-online Multi-people Tracking by Re-identification.
IJCV,,2020,The Open Images Dataset V4.
IJCV,,2020,Enhanced Balanced Min Cut.
IJCV,,2020,Efficient Visual Recognition.
IJCV,,2020,A Survey of Deep Facial Attribute Analysis.
IJCV,,2020,Hardware-Centric AutoML for Mixed-Precision Quantization.
IJCV,,2020,Spatially-Adaptive Filter Units for Compact and Efficient Deep Neural Networks.
IJCV,,2020,HetConv: Beyond Homogeneous Convolution Kernels for Deep CNNs.
IJCV,,2020,Learning an Evolutionary Embedding via Massive Knowledge Distillation.
IJCV,,2020,SSN: Learning Sparse Switchable Normalization via SparsestMax.
IJCV,,2020,Rectified Wing Loss for Efficient and Robust Facial Landmark Localisation with Convolutional Neural Networks.
IJCV,,2020,Multi-task Compositional Network for Visual Relationship Detection.
IJCV,,2020,Disentangled Representation Learning of Makeup Portraits in the Wild.
IJCV,,2020,Fine-Grained Multi-human Parsing.
IJCV,,2020,A General Framework for Deep Supervised Discrete Hashing.
IJCV,,2020,Learning Multifunctional Binary Codes for Personalized Image Retrieval.
IJCV,,2020,Unified Binary Generative Adversarial Network for Image Retrieval and Compression.
IJCV,,2020,Weakly-supervised Semantic Guided Hashing for Social Image Retrieval.
IJCV,,2020,Hadamard Matrix Guided Online Hashing.
IJCV,,2020,Anchor-Based Self-Ensembling for Semi-Supervised Deep Pairwise Hashing.
IJCV,,2020,Product Quantization Network for Fast Visual Search.
IJCV,,2020,Tensorized Multi-view Subspace Representation Learning.
IJCV,,2020,Guest Editorial: Generative Adversarial Networks for Computer Vision.
IJCV,,2020,Discriminative Region Proposal Adversarial Network for High-Quality Image-to-Image Translation.
IJCV,,2020,Handwritten Mathematical Expression Recognition via Paired Adversarial Learning.
IJCV,,2020,DRIT++: Diverse Image-to-Image Translation via Disentangled Representations.
IJCV,,2020,Layout2image: Image Generation from Layout.
IJCV,,2020,Discriminator Feature-Based Inference by Recycling the Discriminator of GANs.
IJCV,,2020,MimicGAN: Robust Projection onto Image Manifolds with Corruption Mimicking.
IJCV,,2020,Pix2Shape: Towards Unsupervised Learning of 3D Scenes from Images Using a View-Based Representation.
IJCV,,2020,Adversarial Confidence Learning for Medical Image Segmentation and Synthesis.
IJCV,,2020,Towards Image-to-Video Translation: A Structure-Aware Approach via Multi-stage Generative Adversarial Networks.
IJCV,,2020,3DFaceGAN: Adversarial Nets for 3D Face Representation, Generation, and Translation.
IJCV,,2020,High-Quality Video Generation from Static Structural Annotations.
IJCV,,2020,Compositional GAN: Learning Image-Conditional Binary Composition.
IJCV,,2020,Train Sparsely, Generate Densely: Memory-Efficient Unsupervised Training of High-Resolution Temporal GAN.
IJCV,,2020,Multimodal Image Synthesis with Conditional Implicit Maximum Likelihood Estimation.
IJCV,,2020,SliderGAN: Synthesizing Expressive Face Images by Sliding 3D Blendshape Parameters.
IJCV,,2020,Inferring 3D Shapes from Image Collections Using Adversarial Networks.
IJCV,,2020,RoCGAN: Robust Conditional GAN.
IJCV,,2020,Semantically Tied Paired Cycle Consistency for Any-Shot Sketch-Based Image Retrieval.
IJCV,,2020,Densifying Supervision for Fine-Grained Visual Comparisons.
IJCV,,2020,GADE: A Generative Adversarial Approach to Density Estimation and its Applications.
IJCV,,2020,Towards Photo-Realistic Facial Expression Manipulation.
IJCV,,2020,CR-Net: A Deep Classification-Regression Network for Multimodal Apparent Personality Analysis.
IJCV,,2020,Necessary and Sufficient Polynomial Constraints on Compatible Triplets of Essential Matrices.
IJCV,,2020,Learning the Clustering of Longitudinal Shape Data Sets into a Mixture of Independent or Branching Trajectories.
IJCV,,2020,Transferrable Feature and Projection Learning with Class Hierarchy for Zero-Shot Learning.
IJCV,,2020,Gradient Shape Model.
IJCV,,2020,Mix and Match Networks: Cross-Modal Alignment for Zero-Pair Image-to-Image Translation.
IJCV,,2020,Learning the spatiotemporal variability in longitudinal shape data sets.
IJCV,,2020,Incorporating Side Information by Adaptive Convolution.
IJCV,,2020,Pix2Vox++: Multi-scale Context-aware 3D Object Reconstruction from Single and Multiple Images.
IJCV,,2020,Long-Short Temporal-Spatial Clues Excited Network for Robust Person Re-identification.
IJCV,,2020,Rooted Spanning Superpixels.
IJCV,,2020,Zero-Shot Object Detection: Joint Recognition and Localization of Novel Concepts.
IJCV,,2020,Video Based Face Recognition by Using Discriminatively Learned Convex Models.
IJCV,,2019,Structural Constraint Data Association for Online Multi-object Tracking.
IJCV,,2019,An Approximate Shading Model with Detail Decomposition for Object Relighting.
IJCV,,2019,Combining Multiple Cues for Visual Madlibs Question Answering.
IJCV,,2019,Fast Diffeomorphic Image Registration via Fourier-Approximated Lie Algebras.
IJCV,,2019,From BoW to CNN: Two Decades of Texture Representation for Texture Classification.
IJCV,,2019,Appreciation to IJCV Reviewers of 2018.
IJCV,,2019,Facial Landmark Detection: A Literature Survey.
IJCV,,2019,Complete 3D Scene Parsing from an RGBD Image.
IJCV,,2019,Equivalent Constraints for Two-View Geometry: Pose Solution/Pure Rotation Identification and 3D Reconstruction.
IJCV,,2019,Group Collaborative Representation for Image Set Classification.
IJCV,,2019,Efficiently Annotating Object Images with Absolute Size Information Using Mobile Devices.
IJCV,,2019,Zoom Out-and-In Network with Map Attention Decision for Region Proposal and Object Detection.
IJCV,,2019,Context-Based Path Prediction for Targets with Switching Dynamics.
IJCV,,2019,Pointly-Supervised Action Localization.
IJCV,,2019,Learning to Segment Moving Objects.
IJCV,,2019,Semantic Understanding of Scenes Through the ADE20K Dataset.
IJCV,,2019,Superpixel-Guided Two-View Deterministic Geometric Model Fitting.
IJCV,,2019,Second-order Temporal Pooling for Action Recognition.
IJCV,,2019,Leveraging Prior-Knowledge for Weakly Supervised Object Detection Under a Collaborative Self-Paced Curriculum Learning Framework.
IJCV,,2019,Fusing Visual and Inertial Sensors with Semantics for 3D Human Pose Estimation.
IJCV,,2019,Making the V in VQA Matter: Elevating the Role of Image Understanding in Visual Question Answering.
IJCV,,2019,Robust and Optimal Registration of Image Sets and Structured Scenes via Sum-of-Squares Polynomials.
IJCV,,2019,Deep Appearance Models: A Deep Boltzmann Machine Approach for Face Modeling.
IJCV,,2019,Understanding Image Representations by Measuring Their Equivariance and Equivalence.
IJCV,,2019,Kernel Cuts: Kernel and Spectral Clustering Meet Regularization.
IJCV,,2019,Locality Preserving Matching.
IJCV,,2019,Editorial: Special Issue on Deep Learning for Face Analysis.
IJCV,,2019,Single-Shot Scale-Aware Network for Real-Time Face Detection.
IJCV,,2019,Hierarchical Attention for Part-Aware Face Detection.
IJCV,,2019,Real-Time 3D Head Pose Tracking Through 2.5D Constrained Local Models with Local Neural Fields.
IJCV,,2019,The Menpo Benchmark for Multi-pose 2D and 3D Facial Landmark Localisation and Tracking.
IJCV,,2019,Face Mask Extraction in Video Sequence.
IJCV,,2019,Face-Specific Data Augmentation for Unconstrained Face Recognition.
IJCV,,2019,A Comprehensive Study on Center Loss for Deep Face Recognition.
IJCV,,2019,Large-Scale Bisample Learning on ID Versus Spot Face Recognition.
IJCV,,2019,Learning Discriminative Aggregation Network for Video-Based Face Recognition and Person Re-identification.
IJCV,,2019,Detecting and Mitigating Adversarial Perturbations for Robust Face Recognition.
IJCV,,2019,An Adversarial Neuro-Tensorial Approach for Learning Disentangled Representations.
IJCV,,2019,Wavelet Domain Generative Adversarial Network for Multi-scale Face Hallucination.
IJCV,,2019,Joint Face Hallucination and Deblurring via Structure Generation and Detail Enhancement.
IJCV,,2019,Motion Deblurring of Faces.
IJCV,,2019,Disentangling Geometry and Appearance with Regularised Geometry-Aware Generative Adversarial Networks.
IJCV,,2019,Synthesis of High-Quality Visible Faces from Polarimetric Thermal Faces using Generative Adversarial Networks.
IJCV,,2019,Identity-Preserving Face Recovery from Stylized Portraits.
IJCV,,2019,Blended Emotion in-the-Wild: Multi-label Facial Expression Recognition Using Crowdsourced Annotations and Deep Locality Feature Learning.
IJCV,,2019,Deep Affect Prediction in-the-Wild: Aff-Wild Database and Challenge, Deep Architectures, and Beyond.
IJCV,,2019,Deep, Landmark-Free FAME: Face Alignment, Modeling, and Expression Estimation.
IJCV,,2019,Learning from Longitudinal Face Demonstration - Where Tractable Deep Modeling Meets Inverse Reinforcement Learning.
IJCV,,2019,A Robust Monocular 3D Object Tracking Method Combining Statistical and Photometric Constraints.
IJCV,,2019,Fast Abnormal Event Detection.
IJCV,,2019,An Exact Robust Method to Localize a Known Sphere by Means of One Image.
IJCV,,2019,Blind Image Deblurring via Deep Discriminative Priors.
IJCV,,2019,Online Mutual Foreground Segmentation for Multispectral Stereo Videos.
IJCV,,2019,Rank-1 Tensor Approximation for High-Order Association in Multi-target Tracking.
IJCV,,2019,Exploiting the Anisotropy of Correlation Filter Learning for Visual Tracking.
IJCV,,2019,Video Enhancement with Task-Oriented Flow.
IJCV,,2019,One-Day Outdoor Photometric Stereo Using Skylight Estimation.
IJCV,,2019,Correction to: One-Day Outdoor Photometric Stereo Using Skylight Estimation.
IJCV,,2019,Contrast Invariant SNR and Isotonic Regressions.
IJCV,,2019,Visibility Enhancement by Integrating Refocusing and Direct-Global Separation with Contact Imaging.
IJCV,,2019,Lucid Data Dreaming for Video Object Segmentation.
IJCV,,2019,Predicting How to Distribute Work Between Algorithms and Humans to Segment an Image Batch.
IJCV,,2019,Deep Supervised Hashing for Fast Image Retrieval.
IJCV,,2019,Which and How Many Regions to Gaze: Focus Discriminative Regions for Fine-Grained Visual Categorization.
IJCV,,2019,Deep Learning Approach in Aerial Imagery for Supporting Land Search and Rescue Missions.
IJCV,,2019,Unsupervised Learning of Foreground Object Segmentation.
IJCV,,2019,Multi-target Tracking in Multiple Non-overlapping Cameras Using Fast-Constrained Dominant Sets.
IJCV,,2019,Click Carving: Interactive Object Segmentation in Images and Videos with Point Clicks.
IJCV,,2019,Efficient Feature Matching via Nonnegative Orthogonal Relaxation.
IJCV,,2019,Repetition Estimation.
IJCV,,2019,Video Question Answering with Spatio-Temporal Reasoning.
IJCV,,2019,A Spatiotemporal Convolutional Neural Network for Automatic Pain Intensity Estimation from Facial Dynamics.
IJCV,,2019,Joint Estimation of Camera Orientation and Vanishing Points from an Image Sequence in a Non-Manhattan World.
IJCV,,2019,CU-Net: Component Unmixing Network for Textile Fiber Identification.
IJCV,,2019,What Does 2D Geometric Information Really Tell Us About 3D Face Shape?
IJCV,,2019,Motion-Compensated Spatio-Temporal Filtering for Multi-Image and Multimodal Super-Resolution.
IJCV,,2019,Estimation of 3D Category-Specific Object Structure: Symmetry, Manhattan and/or Multiple Images.
IJCV,,2019,Learning Transparent Object Matting.
IJCV,,2019,Learning Human Pose Models from Synthesized Data for Robust RGB-D Action Recognition.
IJCV,,2019,Tensor Decomposition and Non-linear Manifold Modeling for 3D Head Pose Estimation.
IJCV,,2019,LCEval: Learned Composite Metric for Caption Evaluation.
IJCV,,2019,Special Issue on Machine Vision.
IJCV,,2019,Unsupervised Binary Representation Learning with Deep Variational Networks.
IJCV,,2019,Stochastic Quantization for Learning Accurate Low-Bit Deep Neural Networks.
IJCV,,2019,Slanted Stixels: A Way to Represent Steep Streets.
IJCV,,2019,End-to-End Learning of Latent Deformable Part-Based Representations for Object Detection.
IJCV,,2019,A Differential Approach to Shape from Polarisation: A Level-Set Characterisation.
IJCV,,2019,The Devil is in the Decoder: Classification, Regression and GANs.
IJCV,,2019,Reflectance and Shape Estimation with a Light Field Camera Under Natural Illumination.
IJCV,,2019,Understanding and Improving Kernel Local Descriptors.
IJCV,,2019,Cross-Domain Image Matching with Deep Feature Maps.
IJCV,,2019,Which is the Better Inpainted Image?Training Data Generation Without Any Manual Operations.
IJCV,,2019,You Said That?: Synthesising Talking Faces from Audio.
IJCV,,2019,Learning to Predict 3D Surfaces of Sculptures from Single and Multiple Views.
IJCV,,2018,Learning to Detect Good 3D Keypoints.
IJCV,,2018,Baseline and Triangulation Geometry in a Standard Plenoptic Camera.
IJCV,,2018,Graph-Based Slice-to-Volume Deformable Registration.
IJCV,,2018,Efficient Label Collection for Image Datasets via Hierarchical Clustering.
IJCV,,2018,Attentive Systems: A Survey.
IJCV,,2018,On the Beneficial Effect of Noise in Vertex Localization.
IJCV,,2018,Looking at People Special Issue.
IJCV,,2018,Deep Expectation of Real and Apparent Age from a Single Image Without Facial Landmarks.
IJCV,,2018,Real-Time Accurate 3D Head Tracking and Pose Estimation with Consumer RGB-D Cameras.
IJCV,,2018,Toward Personalized Modeling: Incremental and Ensemble Alignment for Sequential Faces in the Wild.
IJCV,,2018,A Comprehensive Performance Evaluation of Deformable Face Tracking "In-the-Wild".
IJCV,,2018,Large Scale 3D Morphable Models.
IJCV,,2018,Confidence-Weighted Local Expression Predictions for Occlusion Handling in Expression Recognition and Action Unit Detection.
IJCV,,2018,Unconstrained Still/Video-Based Face Verification with Deep Convolutional Neural Networks.
IJCV,,2018,Subjects and Their Objects: Localizing Interactees for a Person-Centric View of Importance.
IJCV,,2018,Space-Time Tree Ensemble for Action Recognition and Localization.
IJCV,,2018,Dynamic Behavior Analysis via Structured Rank Minimization.
IJCV,,2018,Prediction of Manipulation Actions.
IJCV,,2018,Every Moment Counts: Dense Detailed Labeling of Actions in Complex Videos.
IJCV,,2018,Transferring Deep Object and Scene Representations for Event Recognition in Still Images.
IJCV,,2018,Joint Estimation of Human Pose and Conversational Groups from Social Scenes.
IJCV,,2018,Beyond Temporal Pooling: Recurrence and Temporal Convolutions for Gesture Recognition in Video.
IJCV,,2018,Deep Multimodal Fusion: A Hybrid Approach.
IJCV,,2018,Appreciation to IJCV Reviewers of 2017.
IJCV,,2018,Dense Reconstruction of Transparent Objects by Altering Incident Light Paths Through Refraction.
IJCV,,2018,Do Semantic Parts Emerge in Convolutional Neural Networks?
IJCV,,2018,Classification of Multi-class Daily Human Motion using Discriminative Body Parts and Sentence Descriptions.
IJCV,,2018,Visual Tracking via Subspace Learning: A Discriminative Approach.
IJCV,,2018,No-Reference Image Quality Assessment for Image Auto-Denoising.
IJCV,,2018,From Facial Expression Recognition to Interpersonal Relation Prediction.
IJCV,,2018,Defining the Pose of Any 3D Rigid Object and an Associated Distance.
IJCV,,2018,Hallucinating Compressed Face Images.
IJCV,,2018,SDF-2-SDF Registration for Real-Time 3D Reconstruction from RGB-D Data.
IJCV,,2018,RAW Image Reconstruction Using a Self-contained sRGB-JPEG Image with Small Memory Overhead.
IJCV,,2018,Separable Anisotropic Diffusion.
IJCV,,2018,Discriminative Correlation Filter Tracker with Channel and Spatial Reliability.
IJCV,,2018,Label Propagation with Ensemble of Pairwise Geometric Relations: Towards Robust Large-Scale Retrieval of Object Instances.
IJCV,,2018,Predicting Foreground Object Ambiguity and Efficiently Crowdsourcing the Segmentation(s).
IJCV,,2018,Scale-Free Registrations in 3D: 7 Degrees of Freedom with Fourier Mellin SOFT Transforms.
IJCV,,2018,Hierarchical Cellular Automata for Visual Saliency.
IJCV,,2018,Adaptive Correlation Filters with Long-Term and Short-Term Memory for Object Tracking.
IJCV,,2018,Cluster Sparsity Field: An Internal Hyperspectral Imagery Prior for Reconstruction.
IJCV,,2018,Robust Detection and Affine Rectification of Planar Homogeneous Texture for Scene Understanding.
IJCV,,2018,Semi-supervised Region Metric Learning for Person Re-identification.
IJCV,,2018,Multi-label Learning with Missing Labels Using Mixed Dependency Graphs.
IJCV,,2018,Correction to: Lie-X: Depth Image Based Articulated Object Pose Estimation, Tracking, and Action Recognition on Lie Groups.
IJCV,,2018,The Reasonable Effectiveness of Synthetic Visual Data.
IJCV,,2018,Sim4CV: A Photo-Realistic Simulator for Computer Vision Applications.
IJCV,,2018,Configurable 3D Scene Synthesis and 2D Image Rendering with Per-pixel Ground Truth Using Stochastic Grammars.
IJCV,,2018,What Makes Good Synthetic Training Data for Learning Disparity and Optical Flow Estimation?
IJCV,,2018,Augmented Reality Meets Computer Vision: Efficient Data Generation for Urban Driving Scenes.
IJCV,,2018,Semantic Foggy Scene Understanding with Synthetic Data.
IJCV,,2018,Image-Based Synthesis for Deep 3D Human Pose Estimation.
IJCV,,2018,3D Interpreter Networks for Viewer-Centered Wireframe Modeling.
IJCV,,2018,Synthesizing a Scene-Specific Pedestrian Detector and Pose Estimator for Static Video Surveillance - Can We Learn Pedestrian Detectors and Pose Estimators Without Real Data?
IJCV,,2018,Virtual Training for a Real Application: Accurate Object-Robot Relative Localization Without Calibration.
IJCV,,2018,Editor's Note: Special Issue on Novel Representations and Learning Methods in Computer Vision.
IJCV,,2018,Focal Flow: Velocity and Depth from Differential Defocus Through Motion.
IJCV,,2018,Top-Down Neural Attention by Excitation Backprop.
IJCV,,2018,RED-Net: A Recurrent Encoder-Decoder Network for Video-Based Face Alignment.
IJCV,,2018,Learning Sight from Sound: Ambient Sound Provides Supervision for Visual Learning.
IJCV,,2018,None
IJCV,,2018,On Unifying Multi-view Self-Representations for Clustering by Tensor Multi-rank Minimization.
IJCV,,2018,Depth-Based Hand Pose Estimation: Methods, Data, and Challenges.
IJCV,,2018,Artistic Style Transfer for Videos and Spherical Images.
IJCV,,2018,Elastic Alignment of Triangular Surface Meshes.
IJCV,,2018,Joint Contour Filtering.
IJCV,,2018,Editorial: Special Issue on Machine Vision.
IJCV,,2018,Occlusion-Aware 3D Morphable Models and an Illumination Prior for Face Image Analysis.
IJCV,,2018,Person Re-identification in Identity Regression Space.
IJCV,,2018,Deep Sign: Enabling Robust Statistical Continuous Sign Language Recognition via Hybrid CNN-HMMs.
IJCV,,2018,Learning Latent Representations of 3D Human Pose with Deep Neural Networks.
IJCV,,2018,Combining Shape from Shading and Stereo: A Joint Variational Method for Estimating Depth, Illumination and Albedo.
IJCV,,2018,Feedback and Surround Modulated Boundary Detection.
IJCV,,2018,Real-Time Intensity-Image Reconstruction for Event Cameras Using Manifold Regularisation.
IJCV,,2018,EMVS: Event-Based Multi-View Stereo - 3D Reconstruction with an Event Camera in Real-Time.
IJCV,,2018,Describing Upper-Body Motions Based on Labanotation for Learning-from-Observation Robots.
IJCV,,2017,Appreciation to IJCV Reviewers of 2016.
IJCV,,2017,Spatially Coherent Interpretations of Videos Using Pattern Theory.
IJCV,,2017,A Unified Framework for Compositional Fitting of Active Appearance Models.
IJCV,,2017,Learning a Distance Metric from Relative Comparisons between Quadruplets of Images.
IJCV,,2017,Hollywood 3D: What are the Best 3D Features for Action Recognition?
IJCV,,2017,Fast-Match: Fast Affine Template Matching.
IJCV,,2017,Image Annotation by Propagating Labels from Semantic Neighbourhoods.
IJCV,,2017,Convolutional Patch Representations for Image Retrieval: An Unsupervised Approach.
IJCV,,2017,A Discrete MRF Framework for Integrated Multi-Atlas Registration and Segmentation.
IJCV,,2017,Weighted Nuclear Norm Minimization and Its Applications to Low Level Vision.
IJCV,,2017,Minimal Basis Subspace Representation: A Unified Framework for Rigid and Non-rigid Motion Segmentation.
IJCV,,2017,MultiCol Bundle Adjustment: A Generic Method for Pose Estimation, Simultaneous Self-Calibration and Reconstruction for Arbitrary Multi-Camera Systems.
IJCV,,2017,Large-Scale Gaussian Process Inference with Generalized Histogram Intersection Kernels for Visual Recognition Tasks.
IJCV,,2017,A Portable Bio-Inspired Architecture for Efficient Robotic Vergence Control.
IJCV,,2017,Behavior Discovery and Alignment of Articulated Object Classes from Unstructured Video.
IJCV,,2017,Subspace Procrustes Analysis.
IJCV,,2017,Mining Mid-level Visual Patterns with Deep CNN Activations.
IJCV,,2017,GRMA: Generalized Range Move Algorithms for the Efficient Optimization of MRFs.
IJCV,,2017,2D Sub-pixel Point Spread Function Measurement Using a Virtual Point-Like Source.
IJCV,,2017,On the Existence of Epipolar Matrices.
IJCV,,2017,Refining Geometry from Depth Sensors using IR Shading Images.
IJCV,,2017,Fast Algorithms for Fitting Active Appearance Models to Unconstrained Images.
IJCV,,2017,Active Rectification of Curved Document Images Using Structured Beams.
IJCV,,2017,Generalizing the Prediction Sum of Squares Statistic and Formula, Application to Linear Fractional Image Warp and Surface Fitting.
IJCV,,2017,Semantic Decomposition and Recognition of Long and Complex Manipulation Action Sequences.
IJCV,,2017,Partially Camouflaged Object Tracking using Modified Probabilistic Neural Network and Fuzzy Energy based Active Contour.
IJCV,,2017,Maximum-Margin Structured Learning with Deep Networks for 3D Human Pose Estimation.
IJCV,,2017,Free-Hand Sketch Synthesis with Deformable Stroke Models.
IJCV,,2017,Guest Editorial: Machine Vision Applications.
IJCV,,2017,Domain Adaptation for Automatic OLED Panel Defect Detection Using Adaptive Support Vector Data Description.
IJCV,,2017,Automatic Sleep System Recommendation by Multi-modal RBG-Depth-Pressure Anthropometric Analysis.
IJCV,,2017,Adaptive Spatial-Spectral Dictionary Learning for Hyperspectral Image Restoration.
IJCV,,2017,A Practical and Highly Optimized Convolutional Neural Network for Classifying Traffic Signs in Real-Time.
IJCV,,2017,Robust Statistical Frontalization of Human and Animal Faces.
IJCV,,2017,Growing Regression Tree Forests by Classification for Continuous Object Pose Estimation.
IJCV,,2017,Multi-Camera Multi-Target Tracking with Space-Time-View Hyper-graph.
IJCV,,2017,Complex Activity Recognition Via Attribute Dynamics.
IJCV,,2017,Combining Local-Physical and Global-Statistical Models for Sequential Deformable Shape from Motion.
IJCV,,2017,3D Human Pose Tracking Priors using Geodesic Mixture Models.
IJCV,,2017,Recognition, Tracking, and Optimisation.
IJCV,,2017,Sketch-a-Net: A Deep Neural Network that Beats Humans.
IJCV,,2017,Deep Perceptual Mapping for Cross-Modal Face Recognition.
IJCV,,2017,Latent Structure Preserving Hashing.
IJCV,,2017,Global Minimum for a Finsler Elastica Minimal Path Approach.
IJCV,,2017,Learning Optimal Parameters for Multi-target Tracking with Contextual Interactions.
IJCV,,2017,Spatiotemporal Deformable Prototypes for Motion Anomaly Detection.
IJCV,,2017,Applying Detection Proposals to Visual Tracking for Scale and Aspect Ratio Adaptability.
IJCV,,2017,Automated Visual Fin Identification of Individual Great White Sharks.
IJCV,,2017,Guest Editorial: Image and Language Understanding.
IJCV,,2017,VQA: Visual Question Answering - www.visualqa.org.
IJCV,,2017,Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations.
IJCV,,2017,Flickr30k Entities: Collecting Region-to-Phrase Correspondences for Richer Image-to-Sentence Models.
IJCV,,2017,Movie Description.
IJCV,,2017,A Comprehensive and Versatile Camera Model for Cameras with Tilt Lenses.
IJCV,,2017,Markov Chain Monte Carlo for Automated Face Image Analysis.
IJCV,,2017,Particle-SfT: A Provably-Convergent, Fast Shape-from-Template Algorithm.
IJCV,,2017,Parametric Surface Representation with Bump Image for Dense 3D Modeling Using an RBG-D Camera.
IJCV,,2017,Towards Reversal-Invariant Image Representation.
IJCV,,2017,Salient Object Detection: A Discriminative Regional Feature Integration Approach.
IJCV,,2017,Generating Fluttering Patterns with Low Autocorrelation for Coded Exposure Imaging.
IJCV,,2017,Structured Learning of Binary Codes with Column Generation for Optimizing Ranking Measures.
IJCV,,2017,Transductive Zero-Shot Action Recognition by Word-Vector Embedding.
IJCV,,2017,Visual Object Detection Using Cascades of Binary and One-Class Classifiers.
IJCV,,2017,Max-Margin Heterogeneous Information Machine for RGB-D Action Recognition.
IJCV,,2017,A Branch-and-Bound Framework for Unsupervised Common Event Discovery.
IJCV,,2017,Exemplar-Guided Similarity Learning on Polynomial Kernel Feature Map for Person Re-identification.
IJCV,,2017,Directed Acyclic Graph Continuous Max-Flow Image Segmentation for Unconstrained Label Orderings.
IJCV,,2017,Iterative Multiplicative Filters for Data Labeling.
IJCV,,2017,Lie-X: Depth Image Based Articulated Object Pose Estimation, Tracking, and Action Recognition on Lie Groups.
IJCV,,2017,Empowering Simple Binary Classifiers for Image Set Based Face Recognition.
IJCV,,2017,Crowd Behavior Analysis via Curl and Divergence of Motion Trajectories.
IJCV,,2017,Editorial Note.
IJCV,,2017,A TV Prior for High-Quality Scalable Multi-View Stereo Reconstruction.
IJCV,,2017,Colour Helmholtz Stereopsis for Reconstruction of Dynamic Scenes with Arbitrary Unknown Reflectance.
IJCV,,2017,Trajectory-Based Place-Recognition for Efficient Large Scale Localization.
IJCV,,2017,Structure from Motion with Line Segments Under Relaxed Endpoint Constraints.
IJCV,,2017,Real-Time Tracking of Single and Multiple Objects from Depth-Colour Imagery Using 3D Signed Distance Functions.
IJCV,,2017,Multi-view Performance Capture of Surface Details.
IJCV,,2017,DeepProposals: Hunting Objects and Actions by Cascading Deep Convolutional Layers.
IJCV,,2017,LRA: Local Rigid Averaging of Stretchable Non-rigid Shapes.
IJCV,,2017,SDE: A Novel Selective, Discriminative and Equalizing Feature Representation for Visual Recognition.
IJCV,,2017,Salient Object Subitizing.
IJCV,,2017,Pose-Invariant Face Alignment via CNN-Based Dense 3D Model Fitting.
IJCV,,2017,Joint Image Denoising and Disparity Estimation via Stereo Structure PCA and Noise-Tolerant Cost.
IJCV,,2017,Auto-Calibrated Gaze Estimation Using Human Gaze Patterns.
IJCV,,2017,End-to-End Learning of Deep Visual Representations for Image Retrieval.
IJCV,,2017,Modeling Multi-object Configurations via Medial/Skeletal Linking Structures.
IJCV,,2017,A Closed-Form Focus Profile Model for Conventional Digital Cameras.
IJCV,,2017,Tubelets: Unsupervised Action Proposals from Spatiotemporal Super-Voxels.
IJCV,,2017,Sentence Directed Video Object Codiscovery.
IJCV,,2017,Discriminatively Learned Hierarchical Rank Pooling Networks.
IJCV,,2017,Zero-Shot Visual Recognition via Bidirectional Latent Embedding.
IJCV,,2017,The TPS Direct Transport: A New Method for Transporting Deformations in the Size-and-Shape Space.
IJCV,,2017,Uncovering the Temporal Context for Video Question Answering.
IJCV,,2017,Guest Editorial: Best Papers from ICCV 2015.
IJCV,,2017,Holistically-Nested Edge Detection.
IJCV,,2017,Mutual-Structure for Joint Filtering.
IJCV,,2017,Depth Sensing Using Geometrically Constrained Polarization Normals.
IJCV,,2017,3D Time-Lapse Reconstruction from Internet Photos.
IJCV,,2017,Automatic Registration of Images to Untextured Geometry Using Average Shading Gradients.
IJCV,,2017,Global, Dense Multiscale Reconstruction for a Billion Points.
IJCV,,2017,How Good Is My Test Data? Introducing Safety Analysis for Computer Vision.
IJCV,,2017,Ask Your Neurons: A Deep Learning Approach to Visual Question Answering.
IJCV,,2017,Learning Image Representations Tied to Egomotion from Unlabeled Video.
IJCV,,2016,Reading Text in the Wild with Convolutional Neural Networks.
IJCV,,2016,Estimate Hand Poses Efficiently from Single Depth Images.
IJCV,,2016,When the a contrario approach becomes generative.
IJCV,,2016,A Comprehensive Performance Evaluation of 3D Local Feature Descriptors.
IJCV,,2016,Unsupervised Feature Learning for Dense Correspondences Across Scenes.
IJCV,,2016,A Bayesian Approach to Multi-view 4D Modeling.
IJCV,,2016,A Joint Gaussian Process Model for Active Visual Recognition with Expertise Estimation in Crowdsourcing.
IJCV,,2016,Geometry-Based Symbolic Approximation for Fast Sequence Matching on Manifolds.
IJCV,,2016,Ray Saliency: Bottom-Up Visual Saliency for a Rotating and Zooming Camera.
IJCV,,2016,Covariant Image Representation with Applications to Classification Problems in Medical Imaging.
IJCV,,2016,Guest Editorial: Large Scale Visual Media Geo-Localization.
IJCV,,2016,Image Based Geo-localization in the Alps.
IJCV,,2016,Geo-localization using Volumetric Representations of Overhead Imagery.
IJCV,,2016,Image Search with Selective Match Kernels: Aggregation Across Single and Multiple Images.
IJCV,,2016,Erratum to: Image Search with Selective Match Kernels: Aggregation Across Single and Multiple Images.
IJCV,,2016,Automatic Geolocation Correction of Satellite Imagery.
IJCV,,2016,Integrating Geometrical Context for Semantic Labeling of Indoor Scenes using RGBD Images.
IJCV,,2016,Multi-Cue Illumination Estimation via a Tree-Structured Group Joint Sparse Representation.
IJCV,,2016,Online Approximate Model Representation Based on Scale-Normalized and Fronto-Parallel Appearance.
IJCV,,2016,Hierarchical Geodesic Models in Diffeomorphisms.
IJCV,,2016,Visual Saliency Detection Using Group Lasso Regularization in Videos of Natural Scenes.
IJCV,,2016,Vanishing Point Estimation and Line Classification in a Manhattan World with a Unifying Camera Model.
IJCV,,2016,Local Variation as a Statistical Hypothesis Test.
IJCV,,2016,Data-Dependent Higher-Order Clique Selection for Artery-Vein Segmentation by Energy Minimization.
IJCV,,2016,A Logarithmic Image Prior for Blind Deconvolution.
IJCV,,2016,ROML: A Robust Feature Correspondence Approach for Matching Objects in A Set of Images.
IJCV,,2016,Midrange Geometric Interactions for Semantic Segmentation - Constraints for Continuous Multi-label Optimization.
IJCV,,2016,Complex Non-rigid 3D Shape Recovery Using a Procrustean Normal Distribution Mixture Model.
IJCV,,2016,Learning from Multiple Sources for Video Summarisation.
IJCV,,2016,Efficient Semidefinite Branch-and-Cut for MAP-MRF Inference.
IJCV,,2016,Learning Grammars for Architecture-Specific Facade Parsing.
IJCV,,2016,Caliber: Camera Localization and Calibration Using Rigidity Constraints.
IJCV,,2016,ATLAS: A Three-Layered Approach to Facade Parsing.
IJCV,,2016,Poselet-Based Contextual Rescoring for Human Pose Estimation via Pictorial Structures.
IJCV,,2016,Deep Filter Banks for Texture Recognition, Description, and Segmentation.
IJCV,,2016,2D-3D Pose Estimation of Heterogeneous Objects Using a Region Based Approach.
IJCV,,2016,Guest Editorial: Human Activity Understanding from 2D and 3D Data.
IJCV,,2016,Kernelized Multiview Projection for Robust Action Recognition.
IJCV,,2016,Exploiting Privileged Information from Web Data for Action and Event Recognition.
IJCV,,2016,Fusing ℝ Features and Local Features with Context-Aware Kernels for Action Recognition.
IJCV,,2016,Capturing Hands in Action Using Discriminative Salient Points and Physics Simulation.
IJCV,,2016,Gaze Estimation in the 3D Space Using RGB-D Sensors - Towards Head-Pose and User Invariance.
IJCV,,2016,Multi-modal RGB-Depth-Thermal Human Body Segmentation.
IJCV,,2016,A Hierarchical Video Description for Complex Activity Understanding.
IJCV,,2016,A Deep Structured Model with Radius-Margin Bound for 3D Human Activity Recognition.
IJCV,,2016,Cyclic Schemes for PDE-Based Image Analysis.
IJCV,,2016,Correctness Prediction, Accuracy Improvement and Generalization of Stereo Matching Using Supervised Learning.
IJCV,,2016,Learning and Calibrating Per-Location Classifiers for Visual Place Recognition.
IJCV,,2016,Similarity Fusion for Visual Tracking.
IJCV,,2016,Bounding Multiple Gaussians Uncertainty with Application to Object Tracking.
IJCV,,2016,Spectral Generalized Multi-dimensional Scaling.
IJCV,,2016,Guest Editorial: Big Data.
IJCV,,2016,SUN Database: Exploring a Large Collection of Scene Categories.
IJCV,,2016,Joint Inference in Weakly-Annotated Image Datasets via Dense Correspondence.
IJCV,,2016,Large Scale Retrieval and Generation of Image Descriptions.
IJCV,,2016,Sparse Output Coding for Scalable Visual Recognition.
IJCV,,2016,Do We Need More Training Data?
IJCV,,2016,Schwarps: Locally Projective Image Warps Based on 2D Schwarzian Derivatives.
IJCV,,2016,Robust Tracking via Locally Structured Representation.
IJCV,,2016,Visualizing Object Detection Features.
IJCV,,2016,Hierarchical Adaptive Structural SVM for Domain Adaptation.
IJCV,,2016,Linear Time Illumination Invariant Stereo Matching.
IJCV,,2016,Pictorial Human Spaces: A Computational Study on the Human Perception of 3D Articulated Poses.
IJCV,,2016,Guest Editorial: Video Recognition.
IJCV,,2016,A Robust and Efficient Video Representation for Action Recognition.
IJCV,,2016,EXMOVES: Mid-level Features for Efficient Action Recognition and Video Analysis.
IJCV,,2016,MoFAP: A Multi-level Representation for Action Recognition.
IJCV,,2016,LIBSVX: A Supervoxel Library and Benchmark for Early Video Processing.
IJCV,,2016,Circulant Temporal Encoding for Video Retrieval and Temporal Alignment.
IJCV,,2016,First-Person Activity Recognition: Feature, Temporal Structure, and Prediction.
IJCV,,2016,Learning Relevance Restricted Boltzmann Machine for Unstructured Group Activity and Event Understanding.
IJCV,,2016,Recognizing Fine-Grained and Composite Activities Using Hand-Centric Features and Script Data.
IJCV,,2016,Accurate Image Search with Multi-Scale Contextual Evidences.
IJCV,,2016,Learning Mutual Visibility Relationship for Pedestrian Detection with a Deep Model.
IJCV,,2016,Multiple Granularity Modeling: A Coarse-to-Fine Framework for Fine-grained Action Analysis.
IJCV,,2016,Measuring Visual Surprise Jointly from Intrinsic and Extrinsic Contexts for Image Saliency Estimation.
IJCV,,2016,Recognizing an Action Using Its Name: A Knowledge-Based Approach.
IJCV,,2016,Foveated Nonlocal Self-Similarity.
IJCV,,2016,Learning Dictionary of Discriminative Part Detectors for Image Categorization and Cosegmentation.
IJCV,,2016,Trinocular Geometry Revisited.
IJCV,,2016,Large-Scale Data for Multiple-View Stereopsis.
IJCV,,2016,Shape Retrieval of Non-rigid 3D Human Models.
IJCV,,2016,Convex Low Rank Approximation.
IJCV,,2016,Detection of Co-salient Objects by Looking Deep and Wide.
IJCV,,2016,Visualizing Deep Convolutional Neural Networks Using Natural Pre-images.
IJCV,,2016,Occlusion-Aware Stereo Matching.
IJCV,,2016,A Riemannian Bayesian Framework for Estimating Diffusion Tensor Images.
IJCV,,2016,DeepMatching: Hierarchical Deformable Dense Matching.
IJCV,,2016,Multiview Differential Geometry of Curves.
IJCV,,2015,Affine Invariant Geometry for Non-rigid Shapes.
IJCV,,2015,Efficient Learning of Linear Predictors for Template Tracking.
IJCV,,2015,Personalized Graphical Models for Anatomical Landmark Localization in Whole-Body Medical Images.
IJCV,,2015,Learning Collective Crowd Behaviors with Dynamic Pedestrian-Agents.
IJCV,,2015,3DNN: 3D Nearest Neighbor.
IJCV,,2015,The Pascal Visual Object Classes Challenge: A Retrospective.
IJCV,,2015,An Elastic Deformation Field Model for Object Detection and Tracking.
IJCV,,2015,Learning Complementary Saliency Priors for Foreground Object Segmentation in Complex Scenes.
IJCV,,2015,Robust Visual Tracking Via Consistent Low-Rank Sparse Learning.
IJCV,,2015,Local Alignments for Fine-Grained Categorization.
IJCV,,2015,Locally Orderless Tracking.
IJCV,,2015,Pose Adaptive Motion Feature Pooling for Human Action Analysis.
IJCV,,2015,Confidence Sets for Fine-Grained Categorization and Plant Species Identification.
IJCV,,2015,Order Statistics of RANSAC and Their Practical Application.
IJCV,,2015,SEEDS: Superpixels Extracted Via Energy-Driven Sampling.
IJCV,,2015,Practical Matrix Completion and Corruption Recovery Using Proximal Alternating Robust Subspace Minimization.
IJCV,,2015,Mapping Appearance Descriptors on 3D Body Models for People Re-identification.
IJCV,,2015,Neither Global Nor Local: Regularized Patch-Based Representation for Single Sample Per Person Face Recognition.
IJCV,,2015,Combination of Piecewise-Geodesic Paths for Interactive Segmentation.
IJCV,,2015,Monocular Extraction of 2.1D Sketch Using Constrained Convex Optimization.
IJCV,,2015,Robust Temporally Coherent Laplacian Protrusion Segmentation of 3D Articulated Bodies.
IJCV,,2015,Utilizing Local Phase Information to Remove Rain from Video.
IJCV,,2015,Continuous Action Recognition Based on Sequence Alignment.
IJCV,,2015,Tractable Algorithms for Robust Model Estimation.
IJCV,,2015,Erratum to: Continuous Action Recognition Based on Sequence Alignment.
IJCV,,2015,Guest Editorial: Scene Understanding.
IJCV,,2015,Indoor Scene Understanding with RGB-D Images: Bottom-up Segmentation, Object Detection and Semantic Segmentation.
IJCV,,2015,Scene Parsing with Object Instance Inference Using Regions and Per-exemplar Detectors.
IJCV,,2015,Labeling Complete Surfaces in Scene Understanding.
IJCV,,2015,Towards Scene Understanding with Detailed 3D Object Representations.
IJCV,,2015,Indoor Scene Understanding with Geometric and Semantic Contexts.
IJCV,,2015,Scene Understanding by Reasoning Stability and Safety.
IJCV,,2015,Graph-Based Discriminative Learning for Location Recognition.
IJCV,,2015,Combinatorial Resampling Particle Filter: An Effective and Efficient Method for Articulated Object Tracking.
IJCV,,2015,Distances and Means of Direct Similarities.
IJCV,,2015,Constant Time Median and Bilateral Filtering.
IJCV,,2015,Sequential Monte Carlo for Maximum Weight Subgraphs with Application to Solving Image Jigsaw Puzzles.
IJCV,,2015,Efficient Focus Sampling Through Depth-of-Field Calibration.
IJCV,,2015,Rationalizing Efficient Compositional Image Alignment - The Constant Jacobian Gauss-Newton Optimization Algorithm.
IJCV,,2015,Guest Editorial: Deep Learning.
IJCV,,2015,Stacked Predictive Sparse Decomposition for Classification of Histology Sections.
IJCV,,2015,Heterogeneous Multi-task Learning for Human Pose Estimation with Deep Convolutional Neural Network.
IJCV,,2015,Discriminative Deep Face Shape Model for Facial Point Detection.
IJCV,,2015,Spiking Deep Convolutional Neural Networks for Energy-Efficient Object Recognition.
IJCV,,2015,A Neural Autoregressive Approach to Attention-based Recognition.
IJCV,,2015,An Incremental Procedure for the Lateral Calibration of a Time-of-Flight Camera by One Image of a Flat Surface.
IJCV,,2015,Shape Description and Matching Using Integral Invariants on Eccentricity Transformed Images.
IJCV,,2015,Multi-Class Active Learning by Uncertainty Sampling with Diversity Maximization.
IJCV,,2015,Towards 3D Face Recognition in the Real: A Registration-Free Approach Using Fine-Grained Matching of 3D Keypoint Descriptors.
IJCV,,2015,SPHORB: A Fast and Robust Binary Feature on the Sphere.
IJCV,,2015,Correspondence, Matching and Recognition.
IJCV,,2015,Metric Regression Forests for Correspondence Estimation.
IJCV,,2015,Relatively-Paired Space Analysis: Learning a Latent Common Space From Relatively-Paired Observations.
IJCV,,2015,Label Embedding: A Frugal Baseline for Text Recognition.
IJCV,,2015,A Spline-Based Trajectory Representation for Sensor Fusion and Rolling Shutter Cameras.
IJCV,,2015,Morphologically Invariant Matching of Structures with the Complete Rank Transform.
IJCV,,2015,Efficient Dense Rigid-Body Motion Segmentation and Estimation in RGB-D Video.
IJCV,,2015,Discovering Beautiful Attributes for Aesthetic Image Analysis.
IJCV,,2015,None
IJCV,,2015,Automatic Line Extraction in Uncalibrated Omnidirectional Cameras with Revolution Symmetry.
IJCV,,2015,Predicting Important Objects for Egocentric Video Summarization.
IJCV,,2015,Discovering Attribute Shades of Meaning with the Crowd.
IJCV,,2015,Change-Based Image Cropping with Exclusion and Compositional Features.
IJCV,,2015,Guest Editorial: Sparse Coding.
IJCV,,2015,Learning Sparse FRAME Models for Natural Image Patterns.
IJCV,,2015,Extrinsic Methods for Coding and Dictionary Learning on Grassmann Manifolds.
IJCV,,2015,Structured Overcomplete Sparsifying Transform Learning with Convergence Guarantees and Applications.
IJCV,,2015,Efficient Dictionary Learning with Sparseness-Enforcing Projections.
IJCV,,2015,Toward Fast Transform Learning.
IJCV,,2015,Image Restoration via Simultaneous Sparse Coding: Where Structured Sparsity Meets Gaussian Scale Mixture.
IJCV,,2015,A Bimodal Co-sparse Analysis Model for Image Processing.
IJCV,,2015,Image Deblurring with Coupled Dictionary Learning.
IJCV,,2015,Sparse Illumination Learning and Transfer for Single-Sample Face Recognition with Image Corruption and Misalignment.
IJCV,,2015,Generalized Dictionaries for Multiple Instance Learning.
IJCV,,2015,Dictionary Learning for Fast Classification Based on Soft-thresholding.
IJCV,,2015,Collaborative Linear Coding for Robust Image Classification.
IJCV,,2015,3D Scene Flow Estimation with a Piecewise Rigid Scene Model.
IJCV,,2015,Predicting Entry-Level Categories.
IJCV,,2015,Theory and Practice of Hierarchical Data-driven Descent for Optimal Deformation Estimation.
IJCV,,2015,Diffeomorphic Metric Landmark Mapping Using Stationary Velocity Field Parameterization.
IJCV,,2015,A Generalized Projective Reconstruction Theorem and Depth Constraints for Projective Factorization.
IJCV,,2015,3D Trajectory Reconstruction under Perspective Projection.
IJCV,,2015,DaLI: Deformation and Light Invariant Descriptor.
IJCV,,2015,A Comparative Study of Modern Inference Techniques for Structured Discrete Energy Minimization Problems.
IJCV,,2015,WhittleSearch: Interactive Image Search with Relative Attribute Feedback.
IJCV,,2015,ImageNet Large Scale Visual Recognition Challenge.
IJCV,,2015,Fast Approximations of Shift-Variant Blur.
IJCV,,2015,A Robust Tracking System for Low Frame Rate Video.
IJCV,,2015,Erratum to: A Robust Tracking System for Low Frame Rate Video.
IJCV,,2015,A 3D Scene Registration Method via Covariance Descriptors and an Evolutionary Stable Strategy Game Theory Solver - Fusing Photometric and Shape-Based Features.
IJCV,,2015,SuperCNN: A Superpixelwise Convolutional Neural Network for Salient Object Detection.
IJCV,,2015,Learning Good Regions to Deblur Images.
IJCV,,2014,Appreciation to IJCV Reviewers.
IJCV,,2014,A Comprehensive Survey to Face Hallucination.
IJCV,,2014,Accurate Junction Detection and Characterization in Natural Images.
IJCV,,2014,Detecting parametric objects in large scenes by Monte Carlo sampling.
IJCV,,2014,Spline-Based Hybrid Image Registration using Landmark and Intensity Information based on Matrix-Valued Non-radial Basis Functions.
IJCV,,2014,Sampling Minimal Subsets with Large Spans for Robust Estimation.
IJCV,,2014,Erratum to: Learning Vocabularies over a Fine Quantization.
IJCV,,2014,A Quantitative Analysis of Current Practices in Optical Flow Estimation and the Principles Behind Them.
IJCV,,2014,Closed-Form Solution of Visual-Inertial Structure from Motion.
IJCV,,2014,A Wavelet Perspective on Variational Perceptually-Inspired Color Enhancement.
IJCV,,2014,A Super-Resolution Framework for High-Accuracy Multiview Reconstruction.
IJCV,,2014,Smoke Detection in Video: An Image Separation Approach.
IJCV,,2014,A Multi-View Embedding Space for Modeling Internet Images, Tags, and Their Semantics.
IJCV,,2014,Objects, Actions, Places.
IJCV,,2014,Object and Action Classification with Latent Window Parameters.
IJCV,,2014,Branch&Rank for Efficient Object Detection.
IJCV,,2014,Regressing Local to Global Shape Properties for Online Segmentation and Tracking.
IJCV,,2014,Detecting People Looking at Each Other in Videos.
IJCV,,2014,Generative Methods for Long-Term Place Recognition in Dynamic Scenes.
IJCV,,2014,Active Rare Class Discovery and Classification Using Dirichlet Processes.
IJCV,,2014,Demisting the Hough Transform for 3D Shape Recognition and Registration.
IJCV,,2014,Rotation-Invariant HOG Descriptors Using Fourier Analysis in Polar and Spherical Coordinates.
IJCV,,2014,Hough Pyramid Matching: Speeded-Up Geometry Re-ranking for Large Scale Image Retrieval.
IJCV,,2014,Object Bank: An Object-Level Image Representation for High-Level Visual Recognition.
IJCV,,2014,Probabilistic Joint Image Segmentation and Labeling by Figure-Ground Composition.
IJCV,,2014,Anisotropy Preserving DTI Processing.
IJCV,,2014,A Klein-Bottle-Based Dictionary for Texture Representation.
IJCV,,2014,Guest Editorial: Geometry, Lighting, Motion, and Learning.
IJCV,,2014,A Simple Prior-Free Method for Non-rigid Structure-from-Motion Factorization.
IJCV,,2014,Decomposing Global Light Transport Using Time of Flight Imaging.
IJCV,,2014,A Closed-Form, Consistent and Robust Solution to Uncalibrated Photometric Stereo Via Local Diffuse Reflectance Maxima.
IJCV,,2014,The Shape Boltzmann Machine: A Strong Model of Object Shape.
IJCV,,2014,Face Alignment by Explicit Shape Regression.
IJCV,,2014,Max-Margin Early Event Detectors.
IJCV,,2014,Multi-Target Tracking by Online Learning a CRF Model of Appearance and Motion Patterns.
IJCV,,2014,Activity representation with motion hierarchies.
IJCV,,2014,Visual Saliency with Statistical Priors.
IJCV,,2014,Spectral Log-Demons: Diffeomorphic Image Registration with Very Large Deformations.
IJCV,,2014,Shape from Sharp and Motion-Blurred Image Pair.
IJCV,,2014,Visual Focus of Attention in Non-calibrated Environments using Gaze Estimation.
IJCV,,2014,Editorial: Special Issue on Active and Interactive Methods in Computer Vision.
IJCV,,2014,The Ignorant Led by the Blind: A Hybrid Human-Machine Vision System for Fine-Grained Categorization.
IJCV,,2014,Putting the User in the Loop for Image-Based Modeling.
IJCV,,2014,An Interactive Approach to Solving Correspondence Problems.
IJCV,,2014,The SUN Attribute Database: Beyond Categories for Deeper Scene Understanding.
IJCV,,2014,Part and Attribute Discovery from Relative Annotations.
IJCV,,2014,Large-Scale Live Active Learning: Training Object Detectors with Crawled Data and Crowds.
IJCV,,2014,Iterative Category Discovery via Multiple Kernel Metric Learning.
IJCV,,2014,Active Image Clustering with Pairwise Constraints from Humans.
IJCV,,2014,Collaborative Personalization of Image Enhancement.
IJCV,,2014,A New Approach to Two-View Motion Segmentation Using Global Dimension Minimization.
IJCV,,2014,Mining Mid-level Features for Image Classification.
IJCV,,2014,Unstructured Light Scanning Robust to Indirect Illumination and Depth Discontinuities.
IJCV,,2014,Understanding, Optimising, and Extending Data Compression with Anisotropic Diffusion.
IJCV,,2014,A Shape Reconstructability Measure of Object Part Importance with Applications to Object Detection and Localization.
IJCV,,2014,Erratum to: Interesting Interest Points - A Comparative Study of Interest Point Performance on a Unique Data Set.
IJCV,,2014,Guest Editor's Introduction to the Special Issue on Domain Adaptation for Vision Applications.
IJCV,,2014,Learning Kernels for Unsupervised Domain Adaptation with Applications to Visual Object Recognition.
IJCV,,2014,Asymmetric and Category Invariant Feature Transformations for Domain Adaptation.
IJCV,,2014,Weakly-Supervised Cross-Domain Dictionary Learning for Visual Recognition.
IJCV,,2014,Harnessing Lab Knowledge for Real-World Action Recognition.
IJCV,,2014,Generalized Transfer Subspace Learning Through Low-Rank Constraint.
IJCV,,2014,Domain Adaptation for Face Recognition: Targetize Source Domain Bridged by Common Subspace.
IJCV,,2014,Model-Driven Domain Adaptation on Product Manifolds for Unconstrained Face Recognition.
IJCV,,2014,Domain Adaptation for Structured Regression.
IJCV,,2014,Exploring Transfer Learning Approaches for Head Pose Classification from Multi-view Surveillance Images.
IJCV,,2014,Graph Matching by Simplified Convex-Concave Relaxation Procedure.
IJCV,,2014,SymStereo: Stereo Matching using Induced Symmetry.
IJCV,,2014,Sparse Representation Based Fisher Discrimination Dictionary Learning for Image Classification.
IJCV,,2014,Reduced Analytic Dependency Modeling: Robust Fusion for Visual Recognition.
IJCV,,2014,Infinitesimal Plane-Based Pose Estimation.
IJCV,,2014,Guest Editorial: Tracking, Detection and Segmentation.
IJCV,,2014,PMBP: PatchMatch Belief Propagation for Correspondence Field Estimation.
IJCV,,2014,Mixture of Trees Probabilistic Graphical Model for Video Segmentation.
IJCV,,2014,Learning Discriminative Space-Time Action Parts from Weakly Labelled Videos.
IJCV,,2014,Using Bounded Diameter Minimum Spanning Trees to Build Dense Active Appearance Models.
IJCV,,2014,Detection and Tracking of Occluded People.
IJCV,,2014,Automatic and Efficient Human Pose Estimation for Sign Language Videos.
IJCV,,2014,Editorial note.
IJCV,,2014,Accidental Pinhole and Pinspeck Cameras - Revealing the Scene Outside the Picture.
IJCV,,2014,Computational Schlieren Photography with Light Field Probes.
IJCV,,2014,Ultra-fast Lensless Computational Imaging through 5D Frequency Analysis of Time-resolved Light Transport.
IJCV,,2014,Acquisition of High Spatial and Spectral Resolution Video with a Hybrid Camera System.
IJCV,,2014,Rainbow Flash Camera: Depth Edge Extraction Using Complementary Colors.
IJCV,,2014,Fast Spectral Reflectance Recovery Using DLP Projector.
IJCV,,2014,Deblurring Shaken and Partially Saturated Images.
IJCV,,2014,Exposing Region Splicing Forgeries with Blind Local Noise Estimation.
IJCV,,2014,Contrast Preserving Decolorization with Perception-Based Quality Metrics.
IJCV,,2014,Special Issue on Large-Scale Computer Vision: Geometry, Inference, and Learning.
IJCV,,2014,Reconstructing the World's Museums.
IJCV,,2014,People Watching: Human Actions as a Cue for Single View Geometry.
IJCV,,2014,Photo Sequencing.
IJCV,,2014,Filter-Based Mean-Field Inference for Random Fields with Higher-Order Terms and Product Label-Spaces.
IJCV,,2014,Low-Rank Bilinear Classification: Efficient Convex Optimization and Extensions.
IJCV,,2014,ImageNet Auto-Annotation with Segmentation Propagation.
IJCV,,2013,Appreciation to IJCV Reviewers.
IJCV,,2013,Multi-view Scene Flow Estimation: A View Centered Variational Approach.
IJCV,,2013,Beyond Independence: An Extension of the A Contrario Decision Procedure.
IJCV,,2013,Quasi-Parallax for Nearly Parallel Frontal Eyes - A Possible Role of Binocular Overlap During Rapid Locomotion.
IJCV,,2013,Shape and Refractive Index from Single-View Spectro-Polarimetric Images.
IJCV,,2013,A Computational Learning Theory of Active Object Recognition Under Uncertainty.
IJCV,,2013,Object-Colour Manifold.
IJCV,,2013,Sparse Adaptive Parameterization of Variability in Image Ensembles.
IJCV,,2013,Efficiently Scaling up Crowdsourced Video Annotation - A Set of Best Practices for High Quality, Economical Video Labeling.
IJCV,,2013,Modeling Coverage in Camera Networks: A Survey.
IJCV,,2013,Stratified Generalized Procrustes Analysis.
IJCV,,2013,A Linear Optimal Transportation Framework for Quantifying and Visualizing Variations in Sets of Images.
IJCV,,2013,A Two-Layer Framework for Piecewise Linear Manifold-Based Head Pose Estimation.
IJCV,,2013,Verifying Global Minima for L 2 Minimization Problems in Multiple View Geometry.
IJCV,,2013,Recognizing Interactive Group Activities Using Temporal Interaction Matrices and Their Riemannian Statistics.
IJCV,,2013,Superparsing - Scalable Nonparametric Image Parsing with Superpixels.
IJCV,,2013,Shadow Casting Out Of Plane (SCOOP) Candidates for Human and Vehicle Detection in Aerial Imagery.
IJCV,,2013,Robust Visual Tracking via Structured Multi-Task Sparse Learning.
IJCV,,2013,On Plenoptic Multiplexing and Reconstruction.
IJCV,,2013,Guest Editorial: Human-Computer Interaction: Real-Time Vision Aspects of Natural User Interfaces.
IJCV,,2013,Attention Based Detection and Recognition of Hand Postures Against Complex Backgrounds.
IJCV,,2013,Exploring the Trade-off Between Accuracy and Observational Latency in Action Recognition.
IJCV,,2013,Random Forests for Real Time 3D Face Analysis.
IJCV,,2013,Improving Head Movement Tolerance of Cross-Ratio Based Eye Trackers.
IJCV,,2013,Using Segmented 3D Point Clouds for Accurate Likelihood Approximation in Human Pose Tracking.
IJCV,,2013,Euler Principal Component Analysis.
IJCV,,2013,Virtual Volumetric Graphics on Commodity Displays Using 3D Viewer Tracking.
IJCV,,2013,Guest Editorial: 3D Imaging, Processing and Modelling.
IJCV,,2013,Depth from Refraction Using a Transparent Medium with Unknown Pose and Refractive Index.
IJCV,,2013,A 3D Imaging Framework Based on High-Resolution Photometric-Stereo and Low-Resolution Depth.
IJCV,,2013,A Practical Approach to 3D Scanning in the Presence of Interreflections, Subsurface Scattering and Defocus.
IJCV,,2013,GD&T-Based Characterization of Short-Range Non-contact 3D Imaging Systems.
IJCV,,2013,A Theory of Minimal 3D Point to 3D Plane Registration and Its Generalization.
IJCV,,2013,Fully Automatic Registration of Image Sets on Approximate Geometry.
IJCV,,2013,Online Detection of Repeated Structures in Point Clouds of Urban Scenes for Compression and Registration.
IJCV,,2013,A Scale Independent Selection Process for 3D Object Recognition in Cluttered Scenes.
IJCV,,2013,A Machine-Learning Approach to Keypoint Detection and Landmarking on 3D Meshes.
IJCV,,2013,A Performance Evaluation of Volumetric 3D Interest Point Detectors.
IJCV,,2013,Performance Evaluation of 3D Keypoint Detectors.
IJCV,,2013,Feature-Preserved 3D Canonical Form.
IJCV,,2013,Direct Model-Based Tracking of 3D Object Deformations in Depth and Color Video.
IJCV,,2013,Global Non-rigid Alignment of Surface Sequences.
IJCV,,2013,Consistent Binocular Depth and Scene Flow with Chained Temporal Profiles.
IJCV,,2013,Depth Mapping for Stereoscopic Videos.
IJCV,,2013,Structure-Sensitive Superpixels via Geodesic Distance.
IJCV,,2013,Toward a Comprehensive Framework for the Spatiotemporal Statistical Analysis of Longitudinal Shape Data.
IJCV,,2013,Dense Trajectories and Motion Boundary Descriptors for Action Recognition.
IJCV,,2013,Divergence-Free Wavelets and High Order Regularization.
IJCV,,2013,A Sequential Topic Model for Mining Recurrent Activities from Long Term Video Logs.
IJCV,,2013,A Variational Model for Gradient-Based Video Editing.
IJCV,,2013,Learning Vocabularies over a Fine Quantization.
IJCV,,2013,Novel Representations, Methods, and Algorithms in Computer Vision.
IJCV,,2013,Error-Tolerant Image Compositing.
IJCV,,2013,Ambrosio-Tortorelli Segmentation of Stochastic Images: Model Extensions, Theoretical Investigations and Numerical Methods.
IJCV,,2013,Inference Methods for CRFs with Co-occurrence Statistics.
IJCV,,2013,Adaptive Non-rigid Registration and Structure from Motion from Image Trajectories.
IJCV,,2013,Multilinear Factorizations for Multi-Camera Rigid Structure from Motion Problems.
IJCV,,2013,Rotation Averaging.
IJCV,,2013,Exhaustive and Efficient Constraint Propagation: A Graph-Based Learning Approach and Its Applications.
IJCV,,2013,Training Effective Node Classifiers for Cascade Classification.
IJCV,,2013,Recognizing Materials Using Perceptually Inspired Features.
IJCV,,2013,Self-Calibration Under the Cayley Framework.
IJCV,,2013,Linearized Alternating Direction Method with Adaptive Penalty and Warm Starts for Fast Solving Transform Invariant Low-Rank Textures.
IJCV,,2013,SLEDGE: Sequential Labeling of Image Edges for Boundary Detection.
IJCV,,2013,Recovering Relative Depth from Low-Level Features Without Explicit T-junction Detection and Interpretation.
IJCV,,2013,Coupling Image Restoration and Segmentation: A Generalized Linear Model/Bregman Perspective.
IJCV,,2013,3D Scene Reconstruction from Multiple Spherical Stereo Pairs.
IJCV,,2013,Multiscale Symmetric Part Detection and Grouping.
IJCV,,2013,Scale and Object Aware Image Thumbnailing.
IJCV,,2013,Selective Search for Object Recognition.
IJCV,,2013,SIFER: Scale-Invariant Feature Detector with Error Resilience.
IJCV,,2013,Multiframe Many-Many Point Correspondence for Vehicle Tracking in High Density Wide Area Aerial Videos.
IJCV,,2013,Guest Editorial: Energy Optimization Methods.
IJCV,,2013,A Survey and Comparison of Discrete and Continuous Multi-label Optimization Approaches for the Potts Model.
IJCV,,2013,Discrete and Continuous Models for Partitioning Problems.
IJCV,,2013,Combinatorial Optimization of the Discretized Multiphase Mumford-Shah Functional.
IJCV,,2013,A Variational Approach to Video Registration with Subspace Constraints.
IJCV,,2013,A Distributed Mincut/Maxflow Algorithm Combining Path Augmentation and Push-Relabel.
IJCV,,2013,Optimization of Robust Loss Functions for Weakly-Labeled Image Taxonomies.
IJCV,,2013,Categorization of Multiple Objects in a Scene Using a Biased Sampling Strategy.
IJCV,,2013,Dynamic Template Tracking and Recognition.
IJCV,,2013,The "shading twist, " a dynamical shape cue.
IJCV,,2013,Rotational Projection Statistics for 3D Local Surface Description and Object Recognition.
IJCV,,2013,Passive Three Dimensional Face Recognition Using Iso-Geodesic Contours and Procrustes Analysis.
IJCV,,2013,Mathematical Methods for Medical Imaging.
IJCV,,2013,Geodesics, Parallel Transport & One-Parameter Subgroups for Diffeomorphic Image Registration.
IJCV,,2013,Flexible Shape Matching with Finite Element Based LDDMM.
IJCV,,2013,Geodesic Warps by Conformal Mappings.
IJCV,,2013,Teichmüller Shape Descriptor and Its Application to Alzheimer's Disease Study.
IJCV,,2013,Geodesic Regression and the Theory of Least Squares on Riemannian Manifolds.
IJCV,,2013,Camera Spectral Sensitivity and White Balance Estimation from Sky Images.
IJCV,,2013,Coloring Action Recognition in Still Images.
IJCV,,2013,Image Classification with the Fisher Vector: Theory and Practice.
IJCV,,2013,An Improved Hierarchical Dirichlet Process-Hidden Markov Model and Its Application to Trajectory Modeling and Retrieval.
IJCV,,2013,Variational Recursive Joint Estimation of Dense Scene Structure and Camera Motion from Monocular High Speed Traffic Sequences.
IJCV,,2012,Fast Approximate Energy Minimization with Label Costs.
IJCV,,2012,Unsupervised Learning for Graph Matching.
IJCV,,2012,The Visual Extent of an Object - Suppose We Know the Object Locations.
IJCV,,2012,Face Recognition from Caption-Based Supervision.
IJCV,,2012,Harmony Potentials - Fusing Global and Local Scale for Semantic Image Segmentation.
IJCV,,2012,Multi-view 3D Human Pose Estimation in Complex Environment.
IJCV,,2012,Exploiting DLP Illumination Dithering for Reconstruction and Photography of High-Speed Scenes.
IJCV,,2012,Simultaneous Camera Pose and Correspondence Estimation with Motion Coherence.
IJCV,,2012,Planar Motion Estimation and Linear Ground Plane Rectification using an Uncalibrated Generic Camera.
IJCV,,2012,The Non-parametric Sub-pixel Local Point Spread Function Estimation Is a Well Posed Problem.
IJCV,,2012,Radial Multi-focal Tensors - Applications to Omnidirectional Camera Calibration.
IJCV,,2012,Dense versus Sparse Approaches for Estimating the Fundamental Matrix.
IJCV,,2012,From the Rendering Equation to Stratified Light Transport Inversion.
IJCV,,2012,Optimal Metric Projections for Deformable and Articulated Structure-from-Motion.
IJCV,,2012,Introduction to the Special Issue on Mobile Vision.
IJCV,,2012,Real-Time Facial Feature Tracking on a Mobile Device.
IJCV,,2012,Location Discriminative Vocabulary Coding for Mobile Landmark Search.
IJCV,,2012,Leveraging 3D City Models for Rotation Invariant Place-of-Interest Recognition.
IJCV,,2012,Efficient Video Rectification and Stabilisation for Cell-Phones.
IJCV,,2012,OSCAR: On-Site Composition and Aesthetics Feedback Through Exemplars for Photographers.
IJCV,,2012,Compressed Histogram of Gradients: A Low-Bitrate Descriptor.
IJCV,,2012,Editorial for the Special Issue on 3D Data Processing, Visualization and Transmission.
IJCV,,2012,Physical Scale Keypoints: Matching and Registration for Combined Intensity/Range Images.
IJCV,,2012,Interesting Interest Points - A Comparative Study of Interest Point Performance on a Unique Data Set.
IJCV,,2012,Imposing Semi-Local Geometric Constraints for Accurate Correspondences Selection in Structure from Motion: A Game-Theoretic Perspective.
IJCV,,2012,Feature-Based Deformable Surface Detection with Self-Occlusion Reasoning.
IJCV,,2012,On Camera Calibration with Linear Programming and Loop Constraint Linearization.
IJCV,,2012,Self-calibrated, Multi-spectral Photometric Stereo for 3D Face Capture.
IJCV,,2012,Automatic Real-Time Video Matting Using Time-of-Flight Camera and Multichannel Poisson Equations.