forked from talengu/paper_seacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathijcv_papers.txt
2100 lines (2100 loc) · 161 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,,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,,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.
IJCV,,2012,Energy-Based Geometric Multi-model Fitting.
IJCV,,2012,c-Velocity: A Flow-Cumulating Uncalibrated Approach for 3D Plane Detection.
IJCV,,2012,Towards Unrestrained Depth Inference with Coherent Occlusion Filling.
IJCV,,2012,Accurate Object Recognition with Shape Masks.
IJCV,,2012,Pre-organizing Shape Instances for Landmark-Based Shape Correspondence.
IJCV,,2012,Diffeomorphic 3D Image Registration via Geodesic Shooting Using an Efficient Adjoint Calculation.
IJCV,,2012,Viewpoint Selection for Human Actions.
IJCV,,2012,Intrackability: Characterizing Video Statistics and Pursuing Video Representations.
IJCV,,2012,Learning Behavioural Context.
IJCV,,2012,Geometric Image Parsing in Man-Made Environments.
IJCV,,2012,Sparse Occlusion Detection with Optical Flow.
IJCV,,2012,Impact of Landmark Parametrization on Monocular EKF-SLAM with Points and Lines.
IJCV,,2012,Multi-label Moves for MRFs with Truncated Convex Priors.
IJCV,,2012,Loose-limbed People: Estimating 3D Human Pose and Motion Using Non-parametric Belief Propagation.
IJCV,,2012,Modulating Shape Features by Color Attention for Object Recognition.
IJCV,,2012,Dense Neighborhoods on Affinity Graph.
IJCV,,2012,Explaining Activities as Consistent Groups of Events - A Bayesian Framework Using Attribute Multiset Grammars.
IJCV,,2012,Completely Convex Formulation of the Chan-Vese Image Segmentation Model.
IJCV,,2012,Estimating the Natural Illumination Conditions from a Single Outdoor Image.
IJCV,,2012,A Combined Theory of Defocused Illumination and Global Light Transport.
IJCV,,2012,Non-uniform Deblurring for Shaken Images.
IJCV,,2012,Rotation Invariant Curvelet Features for Region Based Image Retrieval.
IJCV,,2012,Egomotion Estimation Using Assorted Features.
IJCV,,2012,Scale Invariant Feature Transform on the Sphere: Theory and Applications.
IJCV,,2012,Object Recognition by Sequential Figure-Ground Ranking.
IJCV,,2012,Bayesian Defogging.
IJCV,,2012,Globally Optimal Estimation of Nonrigid Image Distortion.
IJCV,,2012,Video Behaviour Mining Using a Dynamic Topic Model.
IJCV,,2012,What Are You Looking at? - Improving Visual Gaze Estimation by Saliency.
IJCV,,2012,PWP3D: Real-Time Segmentation and Tracking of 3D Objects.
IJCV,,2012,TILT: Transform Invariant Low-Rank Textures.
IJCV,,2012,Fast Human Pose Detection Using Randomized Hierarchical Cascades of Rejectors.
IJCV,,2012,A Linear Framework for Region-Based Image Segmentation and Inpainting Involving Curvature Penalization.
IJCV,,2012,Creating Large-Scale City Models from 3D-Point Clouds: A Robust Approach with Hybrid Representation.
IJCV,,2012,How to Compare Noisy Patches? Patch Similarity Beyond Gaussian Noise.
IJCV,,2012,A Reparameterisation Based Approach to Geodesic Constrained Solvers for Curve Matching.
IJCV,,2012,Shape-Based Object Detection via Boundary Structure Segmentation.
IJCV,,2012,A Fisher-Rao Metric for Paracatadioptric Images of Lines.
IJCV,,2012,A Self-Training Approach for Visual Tracking and Recognition of Complex Human Activity Patterns.
IJCV,,2012,2D Articulated Human Pose Estimation and Retrieval in (Almost) Unconstrained Still Images.
IJCV,,2012,Embedded Voxel Colouring with Adaptive Threshold Selection Using Globally Minimal Surfaces.
IJCV,,2012,3D Geometric Scale Variability in Range Images: Features and Descriptors.
IJCV,,2012,Guest Editorial: Special Issue on Structured Prediction and Inference.
IJCV,,2012,Discriminative Appearance Models for Pictorial Structures.
IJCV,,2012,On Taxonomies for Multi-class Image Categorization.
IJCV,,2012,Fast Structured Prediction Using Large Margin Sigmoid Belief Networks.
IJCV,,2012,On Learning Conditional Random Fields for Stereo - Exploring Model Structures and Approximate Inference.
IJCV,,2012,Sparse Modeling of Human Actions from Motion Imagery.
IJCV,,2012,Coupled Action Recognition and Pose Estimation from Multiple Views.
IJCV,,2012,Minimizing Energies with Hierarchical Costs.
IJCV,,2012,Improving Image Classification Using Semantic Attributes.
IJCV,,2012,Keypoints and Local Descriptors of Scalar Functions on 2D Manifolds.
IJCV,,2012,Optimal Image and Video Closure by Superpixel Grouping.
IJCV,,2012,Guest Editorial: Scenes, Images and Objects.
IJCV,,2012,Joint Optimization for Object Class Segmentation and Dense Stereo Reconstruction.
IJCV,,2012,Learning the Relative Importance of Objects from Tagged Images for Retrieval and Cross-Modal Search.
IJCV,,2012,Object Detection using Geometrical Context Feedback.
IJCV,,2012,On Using Anisotropic Diffusion for Skeleton Extraction.
IJCV,,2012,Motion Coherent Tracking Using Multi-label MRF Optimization.
IJCV,,2012,Making a Shallow Network Deep: Conversion of a Boosting Classifier into a Decision Tree by Boolean Optimisation.
IJCV,,2012,Hybrid Linear Modeling via Local Best-Fit Flats.
IJCV,,2012,Stel Component Analysis: Joint Segmentation, Modeling and Recognition of Objects Classes.
IJCV,,2012,User-Centric Learning and Evaluation of Interactive Segmentation Systems.
IJCV,,2012,Weakly Supervised Localization and Learning with Generic Knowledge.
IJCV,,2012,Boosting k-NN for Categorization of Natural Scenes.
IJCV,,2011,Robust Gait Recognition by Learning and Exploiting Sub-gait Characteristics.
IJCV,,2011,Cost-Sensitive Active Visual Category Learning.
IJCV,,2011,Multi-Camera Tracking with Adaptive Resource Allocation.
IJCV,,2011,Measuring and Predicting Object Importance.
IJCV,,2011,Efficient Suboptimal Solutions to the Optimal Triangulation.
IJCV,,2011,Learning Real-Time Perspective Patch Rectification.
IJCV,,2011,Generic Self-calibration of Central Cameras from Two Rotational Flows.
IJCV,,2011,Plane-Based Calibration for Linear Cameras.
IJCV,,2011,Omnidirectional Image Stabilization for Visual Object Recognition.
IJCV,,2011,A Generic Error Model and Its Application to Automatic 3D Modeling of Scenes Using a Catadioptric Camera.
IJCV,,2011,Deformable Model Fitting by Regularized Landmark Mean-Shift.
IJCV,,2011,Incremental Linear Discriminant Analysis Using Sufficient Spanning Sets and Its Applications.
IJCV,,2011,A Quaternion Framework for Color Image Smoothing and Segmentation.
IJCV,,2011,The Canny Edge Detector Revisited.
IJCV,,2011,ROSy+: 3D Object Pose Normalization Based on PCA and Reflective Object Symmetry with Application in 3D Object Retrieval.
IJCV,,2011,Variable-Source Shading Analysis.
IJCV,,2011,Incremental Tensor Subspace Learning and Its Applications to Foreground Segmentation and Tracking.
IJCV,,2011,Recovering Occlusion Boundaries from an Image.
IJCV,,2011,A Database and Evaluation Methodology for Optical Flow.
IJCV,,2011,Model-Based Multiple Rigid Object Detection and Registration in Unstructured Range Data.
IJCV,,2011,A Local Algorithm for the Computation of Image Velocity via Constructive Interference of Global Fourier Components.
IJCV,,2011,Digital Image Forgery Detection Based on Lens and Sensor Aberration.
IJCV,,2011,iLogDemons: A Demons-Based Registration Algorithm for Tracking Incompressible Elastic Biological Tissues.
IJCV,,2011,Global Minimization for Continuous Multiphase Partitioning Problems Using a Dual Approach.
IJCV,,2011,Highly Accurate Schemes for PDE-Based Morphology with General Convex Structuring Elements.
IJCV,,2011,Adaptive Continuous-Scale Morphology for Matrix Fields.
IJCV,,2011,Partial Differential Equations for Zooming, Deinterlacing and Dejittering.
IJCV,,2011,An Anisotropic Fourth-Order Diffusion Filter for Image Noise Removal.
IJCV,,2011,Tubular Structure Segmentation Based on Minimal Path Method and Anisotropic Enhancement.
IJCV,,2011,Primal and Dual Bregman Methods with Application to Optical Nanoscopy.
IJCV,,2011,Left-Invariant Diffusions on the Space of Positions and Orientations and their Application to Crossing-Preserving Smoothing of HARDI images.
IJCV,,2011,Operator Splittings, Bregman Methods and Frame Shrinkage in Image Processing.
IJCV,,2011,An Elasticity-Based Covariance Analysis of Shapes.
IJCV,,2011,None
IJCV,,2011,Orientation-Matching Minimization for Image Denoising and Inpainting.
IJCV,,2011,Finsler Geometry on Higher Order Tensor Fields and Applications to High Angular Resolution Diffusion Imaging.
IJCV,,2011,Max Margin Learning of Hierarchical Configural Deformable Templates (HCDTs) for Efficient Object Parsing and Pose Estimation.
IJCV,,2011,Human Action Segmentation and Recognition Using Discriminative Semi-Markov Models.
IJCV,,2011,Feature-Driven Direct Non-Rigid Image Registration.
IJCV,,2011,Coded Aperture Pairs for Depth from Defocus and Defocus Deblurring.
IJCV,,2011,Joint Multi-Layer Segmentation and Reconstruction for Free-Viewpoint Video Applications.
IJCV,,2011,Calibration of Central Catadioptric Cameras Using a DLT-Like Approach.
IJCV,,2011,Editorial.
IJCV,,2011,Context, Computation, and Optimal ROC Performance in Hierarchical Models.
IJCV,,2011,Predicate Logic Based Image Grammars for Complex Pattern Recognition.
IJCV,,2011,Mining Layered Grammar Rules for Action Recognition.
IJCV,,2011,Stochastic Representation and Recognition of High-Level Group Activities.
IJCV,,2011,Inference and Learning with Hierarchical Shape Models.
IJCV,,2011,A Numerical Study of the Bottom-Up and Top-Down Inference Processes in And-Or Graphs.
IJCV,,2011,Random Exploration of the Procedural Space for Single-View 3D Modeling of Buildings.
IJCV,,2011,Interactively Co-segmentating Topically Related Images with Intelligent Scribble Guidance.
IJCV,,2011,A Continuum Mechanical Approach to Geodesics in Shape Space.
IJCV,,2011,A Variational Framework for Exemplar-Based Image Inpainting.
IJCV,,2011,Rain or Snow Detection in Image Sequences Through Use of a Histogram of Orientation of Streaks.
IJCV,,2011,Optic Flow in Harmony.
IJCV,,2011,Fast and Accurate 3D Face Recognition - Using Registration to an Intrinsic Coordinate System and Fusion of Multiple Region Classifiers.
IJCV,,2011,Image Guided Reconstruction of Un-sampled Data: A Filling Technique for Cultural Heritage Models.
IJCV,,2011,Image-Based Network Rendering of Large Meshes for Cloud Computing.
IJCV,,2011,3D Line Drawing for Archaeological Illustration.
IJCV,,2011,Capturing Village-level Heritages with a Hand-held Camera-Laser Fusion Sensor.
IJCV,,2011,Lightness Recovery for Pictorial Surfaces.
IJCV,,2011,3D Archive System for Traditional Performing Arts - Application of 3D Reconstruction Method Using Graph-cuts.
IJCV,,2011,Prominent Field for Shape Processing and Analysis of Archaeological Artifacts.
IJCV,,2011,Analyzing Ancient Maya Glyph Collections with Contextual Shape Descriptors.
IJCV,,2011,Identifying Join Candidates in the Cairo Genizah.
IJCV,,2011,Near-Infrared Ink Differentiation in Medieval Manuscripts.
IJCV,,2011,Coding Images with Local Features.
IJCV,,2011,Fast PRISM: Branch and Bound Hough Transform for Object Class Detection.
IJCV,,2011,RSLAM: A System for Large-Scale Mapping in Constant-Time Using Stereo.
IJCV,,2011,None
IJCV,,2011,Binary Histogrammed Intensity Patches for Efficient and Robust Matching.
IJCV,,2011,Coding of Image Feature Descriptors for Distributed Rate-efficient Visual Correspondences.
IJCV,,2011,The Key to Three-View Geometry.
IJCV,,2011,Simultaneous Motion Detection and Background Reconstruction with a Conditional Mixed-State Markov Random Field.
IJCV,,2011,Predicting Articulated Human Motion from Spatial Processes.
IJCV,,2011,Evaluation of Interest Point Detectors and Feature Descriptors for Visual Tracking.
IJCV,,2011,Line Localization from Single Catadioptric Images.
IJCV,,2011,Erratum to: Robust Pose Recognition of the Obscured Human Body.
IJCV,,2011,Discriminative Models for Multi-Class Object Layout.
IJCV,,2011,Looking Around the Corner using Ultrafast Transient Imaging.
IJCV,,2011,Stereoscopic Scene Flow Computation for 3D Motion Understanding.
IJCV,,2011,Efficient Detection and Recognition of 3D Ears.
IJCV,,2011,1-Point-RANSAC Structure from Motion for Vehicle-Mounted Cameras by Exploiting Non-holonomic Constraints.
IJCV,,2011,Segmentation of Natural Images by Texture and Boundary Compression.
IJCV,,2011,Gradient Flows for Optimizing Triangular Mesh-based Surfaces: Applications to 3D Reconstruction Problems Dealing with Visibility.
IJCV,,2011,Monocular Template-based Reconstruction of Inextensible Surfaces.
IJCV,,2011,Geometric Latent Dirichlet Allocation on a Matching Graph for Large-scale Image Datasets.
IJCV,,2011,Linear Regression and Adaptive Appearance Models for Fast Simultaneous Modelling and Tracking.
IJCV,,2011,Upper Body Detection and Tracking in Extended Signing Sequences.
IJCV,,2011,An Efficient Approach to Semantic Segmentation.
IJCV,,2011,Modeling and Recognition of Landmark Image Collections Using Iconic Scene Graphs.
IJCV,,2011,Recovery and Reasoning About Occlusions in 3D Using Few Cameras with Applications to 3D Tracking.
IJCV,,2011,Geodesics on the Manifold of Multivariate Generalized Gaussian Distributions with an Application to Multicomponent Texture Discrimination.
IJCV,,2011,Trajectory Analysis and Semantic Region Modeling Using Nonparametric Hierarchical Bayesian Models.
IJCV,,2011,Special Issue on Probabilistic Models for Image Understanding, Part II.
IJCV,,2010,From Local Kernel to Nonlocal Multiple-Model Image Denoising.
IJCV,,2010,Global Intensity Correction in Dynamic Scenes.
IJCV,,2010,General Geometric Good Continuation: From Taylor to Laplace via Level Sets.
IJCV,,2010,Implicit Moment Invariants.
IJCV,,2010,When Discrete Meets Differential.
IJCV,,2010,Group-Wise Point-Set Registration Using a Novel CDF-Based Havrda-Charvát Divergence.
IJCV,,2010,Editorial for the Special Issue on Photometric Analysis for Computer Vision.
IJCV,,2010,Generalized Gamut Mapping using Image Derivative Structures for Color Constancy.
IJCV,,2010,Multi-Spectral Imaging by Optimized Wide Band Illumination.
IJCV,,2010,Estimating Facial Reflectance Properties Using Shape-from-Shading.
IJCV,,2010,Wavelet-Texture Method: Appearance Compression by Polarization, Parametric Reflection Model, and Daubechies Wavelet.
IJCV,,2010,Joint Estimation of Shape and Reflectance using Multiple Images with Known Illumination Conditions.
IJCV,,2010,A Multi-Image Shape-from-Shading Framework for Near-Lighting Perspective Endoscopes.
IJCV,,2010,Median Photometric Stereo as Applied to the Segonko Tumulus and Museum Objects.
IJCV,,2010,On the Apparent Transparency of a Motion Blurred Object.
IJCV,,2010,Analysis of Rain and Snow in Frequency Space.
IJCV,,2010,Guest Editorial: State of the Art in Image- and Video-Based Human Pose and Motion Estimation.
IJCV,,2010,HumanEva: Synchronized Video and Motion Capture Dataset and Baseline Algorithm for Evaluation of Articulated Human Motion.
IJCV,,2010,Twin Gaussian Processes for Structured Prediction.
IJCV,,2010,A Study on Smoothing for Particle-Filtered 3D Human Body Tracking.
IJCV,,2010,Optimization and Filtering for Human Motion Capture.
IJCV,,2010,A Study of Parts-Based Object Class Detection Using Complete Graphs.
IJCV,,2010,Coupled Visual and Kinematic Manifold Models for Tracking.
IJCV,,2010,Physics-Based Person Tracking Using the Anthropomorphic Walker.
IJCV,,2010,Markerless Motion Capture through Visual Hull, Articulated ICP and Subject Specific Model Generation.
IJCV,,2010,3D Human Motion Tracking with a Coordinated Mixture of Factor Analyzers.
IJCV,,2010,Generalizing Inverse Compositional and ESM Image Alignment.
IJCV,,2010,Quasi-perspective Projection Model: Theory and Application to Structure and Motion Factorization from Uncalibrated Image Sequences.
IJCV,,2010,3-D B-spline Wavelet-Based Local Standard Deviation (BWLSD): Its Application to Edge Detection and Vascular Segmentation in Magnetic Resonance Angiography.
IJCV,,2010,Camera Network Calibration and Synchronization from Silhouettes in Archived Video.
IJCV,,2010,From Images to Shape Models for Object Detection.
IJCV,,2010,A Combinatorial Method for Topology Adaptations in 3D Deformable Models.
IJCV,,2010,Improving Bag-of-Features for Large Scale Image Search.
IJCV,,2010,An Approach to the Parameterization of Structure for Fast Categorization.
IJCV,,2010,Using the Particle Filter Approach to Building Partial Correspondences Between Shapes.
IJCV,,2010,What Do the Sun and the Sky Tell Us About the Camera?
IJCV,,2010,Non-Parametric Mixture Model Based Evolution of Level Sets and Application to Medical Images.
IJCV,,2010,Metric Learning for Image Alignment.
IJCV,,2010,Generalized Thin-Plate Spline Warps.
IJCV,,2010,Extended Phase Field Higher-Order Active Contour Models for Networks - Its Application to Road Network Extraction from VHR Satellite Images.
IJCV,,2010,Tracking in a Dense Crowd Using Multiple Cameras.
IJCV,,2010,Editorial: Special Issue on Probabilistic Models for Image Understanding.
IJCV,,2010,OPTIMOL: Automatic Online Picture Collection via Incremental Model Learning.
IJCV,,2010,Gaussian Processes for Object Categorization.
IJCV,,2010,Learning to Match: Deriving Optimal Template-Matching Algorithms from Probabilistic Image Models.
IJCV,,2010,Learning Articulated Structure and Motion.
IJCV,,2010,Category Level Object Segmentation by Combining Bag-of-Words Models with Dirichlet Processes and Random Fields.
IJCV,,2010,A Hierarchical and Contextual Model for Aerial Image Parsing.
IJCV,,2010,Unsupervised Object Discovery: A Comparison.
IJCV,,2010,The Pascal Visual Object Classes (VOC) Challenge.
IJCV,,2010,Volumetric Features for Video Event Detection.
IJCV,,2010,Study of a Robust Feature: The Pointwise Lipschitz Regularity.
IJCV,,2010,Shape-based Invariant Texture Indexing.
IJCV,,2010,Rigid Structure from Motion from a Blind Source Separation Perspective.
IJCV,,2010,Robust Algebraic Segmentation of Mixed Rigid-Body and Planar Motions from Two Views.
IJCV,,2010,Using Basic Image Features for Texture Classification.
IJCV,,2010,Image Comparison by Compound Disjoint Information with Applications to Perceptual Visual Quality Assessment, Image Registration and Tracking.
IJCV,,2010,Two-View Motion Segmentation with Model Selection and Outlier Removal by RANSAC-Enhanced Dirichlet Process Mixture Models.
IJCV,,2010,Rejecting Mismatches by Correspondence Function.
IJCV,,2010,Full and Partial Symmetries of Non-rigid Shapes.
IJCV,,2010,Dinkelbach NCUT: An Efficient Framework for Solving Normalized Cuts Problems with Priors and Convex Constraints.
IJCV,,2010,Nonlinear Dimensionality Reduction by Topologically Constrained Isometric Embedding.
IJCV,,2010,A Computational Model of Multidimensional Shape.
IJCV,,2010,Unified Direct Visual Tracking of Rigid and Deformable Surfaces Under Generic Illumination Changes in Grayscale and Color Images.
IJCV,,2010,Multi-view Superpixel Stereo in Urban Environments.
IJCV,,2010,Model Fitting with Sufficient Random Sample Coverage.
IJCV,,2010,IJCV Special Issue on 3D Object Retrieval - Foreword by the Guest Editors.
IJCV,,2010,Rectilinearity of 3D Meshes.
IJCV,,2010,From 3D Point Clouds to Pose-Normalised Depth Maps.
IJCV,,2010,PANORAMA: A 3D Shape Descriptor Based on Panoramic Views for Unsupervised 3D Object Retrieval.
IJCV,,2010,Spherical Correlation of Visual Representations for 3D Model Retrieval.
IJCV,,2010,Real-time Object Recognition in Sparse Range Images Using Error Surface Embedding.
IJCV,,2010,A 3D Shape Retrieval Framework Supporting Multimodal Queries.
IJCV,,2010,Spectral-Driven Isometry-Invariant Matching of 3D Shapes.
IJCV,,2010,A Gromov-Hausdorff Framework with Diffusion Geometry for Topologically-Robust Non-rigid Shape Matching.
IJCV,,2010,Hierarchical Shape Segmentation and Registration via Topological Features of Laplace-Beltrami Eigenfunctions.
IJCV,,2010,Contextual Part Analogies in 3D Objects.
IJCV,,2010,Thesaurus-based 3D Object Retrieval with Part-in-Whole Matching.
IJCV,,2010,On the Repeatability and Quality of Keypoints for Local Feature-based 3D Object Retrieval from Cluttered Scenes.
IJCV,,2010,Shape Similarity for 3D Video Sequences of People.
IJCV,,2010,Ethnicity- and Gender-based Subject Retrieval Using 3-D Face-Recognition Techniques.
IJCV,,2010,Similarity Learning for 3D Object Retrieval Using Relevance Feedback and Risk Minimization.
IJCV,,2010,Learning Robust Similarity Measures for 3D Partial Shape Retrieval.
IJCV,,2010,A Solution of the Dichromatic Model for Multispectral Photometric Invariance.
IJCV,,2010,3D Reconstruction of Periodic Motion from a Single View.
IJCV,,2010,Learning Photometric Invariance for Object Detection.
IJCV,,2010,Generalised Nonlocal Image Smoothing.
IJCV,,2010,Baselines for Image Annotation.
IJCV,,2010,Time-Delayed Correlation Analysis for Multi-Camera Activity Understanding.
IJCV,,2010,Adaptive Variational Method for Restoring Color Images with High Density Impulse Noise.
IJCV,,2010,Probabilistic Multi-Task Learning for Visual Saliency Estimation in Video.
IJCV,,2010,3-D Symmetry Detection and Analysis Using the Pseudo-polar Fourier Transform.
IJCV,,2010,A Basis Illumination Approach to BRDF Measurement.
IJCV,,2010,Learning Active Basis Model for Object Detection and Recognition.
IJCV,,2010,Globally Optimal Algorithms for Stratified Autocalibration.
IJCV,,2010,Population Shape Regression from Random Design Data.
IJCV,,2010,On the Length and Area Regularization for Multiphase Level Set Segmentation.
IJCV,,2010,Multi-view Occlusion Reasoning for Probabilistic Silhouette-Based Dynamic Scene Reconstruction.
IJCV,,2010,Illuminance Flow Estimation by Regression.
IJCV,,2010,Robust Pose Recognition of the Obscured Human Body.
IJCV,,2010,Anthropometric 3D Face Recognition.
IJCV,,2010,Euclidean Upgrading from Segment Lengths.
IJCV,,2010,Perspective Reconstruction of a Spheroid from an Image Plane Ellipse.
IJCV,,2009,Editorial Special Issue ECCV 2006.
IJCV,,2009,TextonBoost for Image Understanding: Multi-Class Object Recognition and Segmentation by Jointly Modeling Texture, Layout, and Context.
IJCV,,2009,A Fast Approximation of the Bilateral Filter Using a Signal Processing Approach.
IJCV,,2009,Carved Visual Hulls for Image-Based Modeling.
IJCV,,2009,Multi-Reference Shape Priors for Active Contours.
IJCV,,2009,Confocal Stereo.
IJCV,,2009,Learning to Combine Bottom-Up and Top-Down Segmentation.
IJCV,,2009,Direct Calibration by Fitting of Cuboids to a Single Image Using Differential Evolution.
IJCV,,2009,Drift-Free Real-Time Sequential Mosaicing.
IJCV,,2009,An Alternative Approach to Computing Shape Orientation with an Application to Compound Shapes.
IJCV,,2009,None
IJCV,,2009,An Improved FoE Model for Image Deblurring.
IJCV,,2009,Stereo Image Analysis of Non-Lambertian Surfaces.
IJCV,,2009,Optimal Local Basis: A Reinforcement Learning Approach for Face Recognition.
IJCV,,2009,Rank Constraints for Homographies over Two Views: Revisiting the Rank Four Constraint.
IJCV,,2009,Adaptive Stochastic Gradient Descent Optimisation for Image Registration.
IJCV,,2009,Robust Factorization Methods Using a Gaussian/Uniform Mixture Model.
IJCV,,2009,The Theory and Practice of Coplanar Shadowgram Imaging for Acquiring Visual Hulls of Intricate Objects.
IJCV,,2009,Topology-Invariant Similarity of Nonrigid Shapes.
IJCV,,2009,An Expression Deformation Approach to Non-rigid 3D Face Recognition.
IJCV,,2009,Spectral Curvature Clustering (SCC).
IJCV,,2009,Intrinsic Bayesian Active Contours for Extraction of Object Boundaries in Images.
IJCV,,2009,Semantic Representation and Recognition of Continued and Recursive Human Activities.
IJCV,,2009,Local Image Features Resulting from 3-Dimensional Geometric Features, Illumination, and Movement: I.
IJCV,,2009,Dynamic Texture Detection Based on Motion Analysis.
IJCV,,2009,Global Optimization through Rotation Space Search.
IJCV,,2009,An Intrinsic Framework for Analysis of Facial Surfaces.
IJCV,,2009,Shape of Elastic Strings in Euclidean Space.
IJCV,,2009,Geodesic Matting: A Framework for Fast Interactive Image and Video Segmentation and Matting.
IJCV,,2009,A Shape Representation with Elastic Quadratic Polynomials - Preservation of High Curvature Points under Noisy Conditions.
IJCV,,2009,Cayley Transformation and Numerical Stability of Calibration Equation.
IJCV,,2009,Detection and Segmentation of Multiple, Partially Occluded Objects by Grouping, Merging, Assigning Part Detection Responses.
IJCV,,2009,Fields of Experts.
IJCV,,2009,Modelling Spatio-Temporal Saliency to Predict Gaze Direction for Short Videos.
IJCV,,2009,3D Target Scale Estimation and Target Feature Separation for Size Preserving Tracking in PTZ Video.
IJCV,,2009,Four-Color Theorem and Level Set Methods for Watershed Segmentation.
IJCV,,2009,Action Recognition Using a Bio-Inspired Feedforward Spiking Network.
IJCV,,2009,Robust Higher Order Potentials for Enforcing Label Consistency.
IJCV,,2009,Occlusion Boundaries from Motion: Low-Level Detection and Mid-Level Reasoning.
IJCV,,2009,Image Fusion for Enhanced Visualization: A Variational Approach.
IJCV,,2009,Contour Grouping Based on Contour-Skeleton Duality.
IJCV,,2009,Replicator Dynamics in the Iterative Process for Accurate Range Image Matching.
IJCV,,2009,Seeing the Objects Behind the Dots: Recognition in Videos from a Moving Camera.
IJCV,,2009,Real-Time Body Pose Recognition Using 2D or 3D Haarlets.
IJCV,,2009,Viewpoint Invariant Texture Description Using Fractal Analysis.
IJCV,,2009,Issues About Retinex Theory and Contrast Enhancement.
IJCV,,2009,Learning Generative Models for Multi-Activity Body Pose Estimation.
IJCV,,2009,Shape Reconstruction and Camera Self-Calibration Using Cast Shadows and Scene Geometries.
IJCV,,2009,Learning Fast Emulators of Binary Decision Processes.
IJCV,,2009,A Regularized Framework for Feature Selection in Face Detection and Authentication.
IJCV,,2009,Pose-Invariant Facial Expression Recognition Using Variable-Intensity Templates.
IJCV,,2009,Stereo Matching Using Population-Based MCMC.
IJCV,,2009,Shape Based Detection and Top-Down Delineation Using Image Segments.
IJCV,,2009,Improving Border Localization of Multi-Baseline Stereo Using Border-Cut.
IJCV,,2009,Segmentation using Appearance of Mesostructure Roughness.
IJCV,,2009,Reconstruction from Projections Using Grassmann Tensors.
IJCV,,2009,A Predual Proximal Point Algorithm Solving a Non Negative Basis Pursuit Denoising Model.
IJCV,,2009,Nonlinear Mean Shift over Riemannian Manifolds.
IJCV,,2009,Linear Quasi-Parallax SfM Using Laterally-Placed Eyes.
IJCV,,2009,Shape-Based Object Localization for Descriptive Classification.
IJCV,,2009,A Moving Grid Framework for Geometric Deformable Models.
IJCV,,2009,Continuous Global Optimization in Multiview 3D Reconstruction.
IJCV,,2009,Local Histogram Based Segmentation Using the Wasserstein Distance.
IJCV,,2009,New Possibilities with Sobolev Active Contours.
IJCV,,2009,Reversible Interpolation of Vectorial Images by an Anisotropic Diffusion-Projection PDE.
IJCV,,2009,Cooperative Object Segmentation and Behavior Inference in Image Sequences.
IJCV,,2009,Partial Similarity of Objects, or How to Compare a Centaur to a Horse.
IJCV,,2009,On Local Region Models and a Statistical Interpretation of the Piecewise Smooth Mumford-Shah Functional.
IJCV,,2009,Scale Selection for Compact Scale-Space Representation of Vector-Valued Images.
IJCV,,2009,Linear Image Reconstruction by Sobolev Norms on the Bounded Domain.
IJCV,,2009,Local and Nonlocal Discrete Regularization on Weighted Graphs for Image and Mesh Processing.
IJCV,,2009,Fast and Stable Polynomial Equation Solving and Its Application to Computer Vision.
IJCV,,2009,Accurate Camera Calibration from Multi-View Stereo and Bundle Adjustment.
IJCV,,2009,Shape from Shading Using Probability Functions and Belief Propagation.
IJCV,,2009,On Total Variation Minimization and Surface Evolution Using Parametric Maximum Flows.
IJCV,,2009,Optimizing Gabor Filter Design for Texture Edge Detection and Classification.
IJCV,,2009,Matching Trajectories of Anatomical Landmarks Under Viewpoint, Anthropometric and Temporal Transforms.
IJCV,,2009,Easy Calibration of a Multi-projector Display System.
IJCV,,2009,Simplex Mesh Diffusion Snakes: Integrating 2D and 3D Deformable Models and Statistical Shape Knowledge in a Variational Framework.
IJCV,,2009,Entropy Minimization for Shadow Removal.
IJCV,,2009,Recovering Shape by Shading and Stereo Under Lambertian Shading Model.
IJCV,,2009,Hybrid Dynamical Models of Human Motion for the Recognition of Human Gaits.
IJCV,,2009,A Statistical Overlap Prior for Variational Image Segmentation.
IJCV,,2009,On Computing the Prediction Sum of Squares Statistic in Linear Least Squares Problems with Multiple Parameter or Measurement Sets.
IJCV,,2009,Foreground Focus: Unsupervised Learning from Partially Matching Images.
IJCV,,2009,Benchmarking Image Segmentation Algorithms.
IJCV,,2009,An Adaptive Method for Recovering Image from Mixed Noisy Data.
IJCV,,2009,Active, Foveated, Uncalibrated Stereovision.
IJCV,,2009,Editorial.
IJCV,,2009,None
IJCV,,2009,3D Topology Preserving Flows for Viewpoint-Based Cortical Unfolding.
IJCV,,2009,Bilinear Models for Spatio-Temporal Point Distribution Analysis.
IJCV,,2009,Crossing-Preserving Coherence-Enhancing Diffusion on Invertible Orientation Scores.
IJCV,,2009,Consistency Clustering: A Robust Algorithm for Group-wise Registration, Segmentation and Automatic Atlas Construction in Diffusion MRI.
IJCV,,2009,Registration of Anatomical Images Using Paths of Diffeomorphisms Parameterized with Stationary Vector Field Flows.
IJCV,,2009,Rectified Surface Mosaics.
IJCV,,2008,On the Local Behavior of Spaces of Natural Images.
IJCV,,2008,A Theory of Refractive and Specular 3D Shape by Light-Path Triangulation.
IJCV,,2008,A General Method for Sensor Planning in Multi-Sensor Systems: Extension to Random Occlusion.
IJCV,,2008,3-D Depth Reconstruction from a Single Still Image.
IJCV,,2008,Facial Shape-from-shading and Recognition Using Principal Geodesic Analysis and Robust Statistics.
IJCV,,2008,Using Biologically Inspired Features for Face Processing.
IJCV,,2008,Editorial.
IJCV,,2008,Probabilistic Fusion of Stereo with Color and Contrast for Bi-Layer Segmentation.
IJCV,,2008,Fast Non-Rigid Surface Detection, Registration and Realistic Augmentation.
IJCV,,2008,Nonlocal Image and Movie Denoising.
IJCV,,2008,Video Epitomes.
IJCV,,2008,FLIRT with Rigidity - Image Registration with a Local Non-rigidity Penalty.