REVIEW 4 major objections 4 minor 49 references
Corr2Distrib: Making Ambiguous Correspondences an Ally to Predict Reliable 6D Pose Distributions
T0 review · 4 major / 4 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read Treating ambiguous 2D-3D matches as votes recovers the full set of valid 6D poses from a single RGB image.
desk verdict A genuinely new correspondence-based pose-distribution method with a plausible but unproven symmetry-learning assumption; worth refereeing, but the SOTA claim is softer than the abstract suggests. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the symmetry-aware object model $\mathcal{P}$: a dense point cloud on the object surface where each 3D point $X$ carries a descriptor $\mathcal{P}_d(X)$ and a local frame $\mathcal{P}_f(X)$. This representation is learned jointly from RGB crops and the 3D model using an InfoNCE contrastive loss for descriptors and a rotation-distance loss for local frames, with no explicit symmetry annotations. At inference the descriptor field produces many-to-many 2D-3D matches; the key identity is Eq. (5), which turns one match into one rotation hypothesis by composing the inferred camera-to-local-frame rotation with the model's local-frame-to-object rotation. The rest of the pipeline filters these hypotheses by density on an equi-volumetric SO(3) grid, groups correspondences whose rotations fall in the same bin, and refines each group with PnP-RANSAC plus a descriptor-similarity and mask-agreement score.
What would settle it
Compare the learned descriptors of pairs of 3D points related by an object's known symmetry with descriptors of unrelated pairs on a held-out symmetric object. If symmetry-related points are not systematically more similar, the implicit symmetry-awareness assumption is false and the rotation hypotheses from ambiguous matches lose their validity; equivalently, run the method on an object with a known discrete symmetry and check that all symmetry-equivalent ground-truth rotations receive comparable probability.
Extended reading notes
Core claim
The central claim is that a symmetry-aware surface representation, learned without explicit symmetry labels, lets a single 2D-3D correspondence produce a rotation hypothesis, and that aggregating these hypotheses across an image recovers the full pose distribution. For each surface point the method learns a descriptor and a local frame, with the property that points related by a symmetry share descriptors and have frames linked by the symmetry transformation. At inference a pixel can match several surface points, and each match yields a camera rotation via $R^{X}_{C\leftarrow O}=R_{C\leftarrow L_X}R_{L_X\leftarrow O}$, so ambiguous matches generate a cloud of rotation hypotheses. Density filtering on a discretized SO(3) removes spurious hypotheses, geometrically consistent correspondences are grouped, and PnP-RANSAC with a descriptor-plus-mask score turns each group into a scored 6D pose. On the BOP-Distrib protocol, the paper reports that this outperforms previous distribution methods and dedicated single-pose methods on the T-LESS benchmark.
Load-bearing premise
The method assumes that the learned descriptors and local frames will automatically become symmetry-aware from synthetic training images alone, without explicit symmetry labels; if that implicit learning fails, the per-pixel rotation hypotheses that feed the entire pipeline would be wrong.
Editorial extensions
If this is right
- Robotic grasping can query the distribution directly: a grasp is only attempted if some pose in the distribution is reachable, which matters when symmetric objects admit only some feasible poses.
- Single-pose estimation can be improved by first predicting the full distribution and then picking the best scored pose, as the paper's best-pose results exceed dedicated single-pose methods.
- Correspondence-based pipelines do not have to force every match into one consistent pose; keeping multiple matches per pixel and grouping by rotation hypotheses keeps PnP-RANSAC tractable.
- Density-based filtering on SO(3) gives a principled way to decide whether an object is unambiguous, discretely symmetric, or continuously symmetric from the shape of the hypothesis cloud.
- Scoring reprojection error in descriptor space rather than pixel space reduces the penalty for correct symmetric matches.
Reading between the lines
- If the implicit symmetry-awareness claim holds, explicit symmetry annotations and symmetry-group enumeration could be removed entirely for new objects, reducing dataset preparation cost.
- A category-level variant seems feasible: the per-object implicit fields for descriptors and local frames could be conditioned on a category code, since nothing in the loss requires an object-specific geometry.
- A natural stress test is to evaluate on objects with near-symmetries, where the paper's own failure analysis predicts the distribution will over-spread; an attention mechanism over small disambiguating elements is a plausible remedy.
- The reported runtime is dominated by per-group PnP refinement, so using rotation-bin densities to prune groups before refinement is a cheap, testable speed-up.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript introduces Corr2Distrib, a correspondence-based method for estimating a distribution over 6DoF poses of a known rigid object from a single RGB image crop. The authors learn per-point descriptors and local coordinate frames for the object model, together with a pixel-wise predictor of descriptors, local frames, and object masks. At inference, each pixel is matched to a set of model points by descriptor similarity; each 2D-3D correspondence yields a rotation hypothesis via the learned local-frame composition; hypotheses are density-filtered over a HealPix discretization of SO(3); correspondences whose hypotheses fall in the same rotation bin are grouped; PnP-RANSAC and a descriptor/mask agreement score convert each group into a scored 6D pose. Experiments on T-LESS with the BOP-Distrib protocol compare against LiePose and SpyroPose for pose-distribution estimation and also evaluate the best pose from the distribution against single-pose methods. The paper claims state-of-the-art performance on both tasks.
Significance. If the central mechanism works as claimed, this is a genuinely new approach to pose ambiguity: ambiguous correspondences are used to enumerate the modes of the pose distribution rather than being discarded, and the method outputs an explicit set of scored poses rather than an implicit density. The pipeline is described in sufficient detail to be reimplementable, and the components (InfoNCE descriptor learning, local-frame rotation composition, SO(3) density filtering, correspondence grouping, PnP-RANSAC, and scoring) are clearly specified. The reported improvements over LiePose and SpyroPose on T-LESS are plausible. However, the significance is conditional on two things the paper does not currently establish: (i) that the learned descriptors and local frames are actually symmetry-aware in the exact sense required by Eq. (5), and (ii) that the evaluation, which relies on a single non-public benchmark and aggregate single-run numbers, is robust. Section IV-F itself acknowledges the single-dataset limitation, which further tempers the strength of the state-of-the-art claim.
major comments (4)
- [III-A1, Eqs. (1)-(3)] The correctness of the method depends on the learned descriptors and local frames being symmetry-aware: for a symmetry mapping X to X', the descriptor of X' must be similar enough to the image descriptor to pass the threshold of Eq. (4), and the local frames must satisfy Pf(X') = Pf(X) * s^{-1} so that Eq. (5) produces the equivalent rotation. The text argues this emerges from visual ambiguities even though the losses do not explicitly encode symmetries. The InfoNCE loss in Eq. (1) has a single positive per pixel, and every other model point, including symmetry-equivalent points, enters the denominator of Eq. (2) as a negative, so the loss explicitly penalizes the required descriptor invariance. The claim in Section III-A1 that the match/non-match imbalance overrides this is not a derivation. Similarly, the local-frame loss in Eq. (3) supervises only the composed rotation with the annotated pose and contains no term tying phi_LF(X') to phi_LF(X) after the symmetry. This premise is load-bearing because if it fails, the rotation hypotheses in Eq. (5) are not all valid poses and the subsequent density filtering, grouping, and PnP-RANSAC stages inherit wrong inputs. I request a direct measurement of symmetry-awareness, for example the fraction of symmetric matches that pass Eq. (4), the descriptor similarity between symmetric model points, or the local-frame equivariance error under known symmetries, or an ablation that trains with explicit symmetry labels.
- [Eq. (4)] As written, the threshold in Eq. (4) cannot select high-similarity matches. Eq. (2) defines simdesc as a log-probability, hence non-positive. With delta = tau_desc * simdesc(I,x,Xhat) and tau_desc = 0.65, taking the maximal log-similarity to be, say, -2 gives delta = -1.3. The condition simdesc(I,x,X) < delta then selects descriptors with values below -1.3, i.e., the least similar descriptors, and in fact all model points with similarity at most -2 would satisfy it. This would make the match set S(I,x) trivially large. The intended behavior is presumably a threshold that keeps descriptors above a fraction of the maximum similarity. Please clarify whether the matching score in Eq. (4) is the unnormalized inner product rather than the log-probability, whether the inequality should be reversed, or whether delta should be defined differently. This is not merely notational: Eq. (4) is the entry point for all subsequent stages.
- [IV-C and IV-D, Tables I-II] The state-of-the-art claim rests on BOP-Distrib [27], an unpublished benchmark whose baseline numbers are taken from that paper, and the tables report only aggregate means over the 30 T-LESS objects. There are no per-object results, no standard deviations, no confidence intervals, and no indication of the number of runs. Because the RANK column in Table I compares three methods on a few aggregate numbers, it is unclear whether the reported differences are statistically meaningful. To support the central claim, the paper should provide object-wise results and error bars or a statistical test, and should either rerun the baselines under the same training data and crop protocol or include enough BOP-Distrib protocol details for the reader to verify comparability. Section IV-F acknowledges the single-dataset limitation, which further qualifies the claim of state-of-the-art performance as stated in the abstract and introduction.
- [IV-E and III-A] The ablation study in Table III covers only the hyperparameters k, tau_corr, tau_dens, and tau_score. It does not test the components that are presented as the core contribution, namely the learned symmetry-aware descriptor field and the learned local-frame field. Without an ablation that, for example, replaces the learned local frames with fixed geometric frames, or replaces the multi-match selection of Eq. (4) with nearest-neighbor-only matching, it is difficult to attribute the reported performance to the proposed mechanism. A causal test of the central design choice is needed to substantiate the claim that ambiguous correspondences are being exploited rather than merely tolerated.
minor comments (4)
- [Eq. (1) and Eq. (2)] The signature of simdesc is inconsistent: Eq. (1) calls simdesc(psi_d(I,x), h(x)) while Eq. (2) defines simdesc(I,x,X). Please unify the notation so that the arguments match the definitions.
- [Eq. (3)] The sentence after Eq. (3) says 'with M_i the object mask in image C', but C denotes the camera frame earlier in the same section. It should presumably be image I.
- [References [27] and [23]] BOP-Distrib [27] is described only as 'under review' with an arXiv preprint number but no version or URL, and GPose [23] is an unpublished submission. Since Tables I and II depend on numbers from [27], please provide an archival reference or a supplement with the protocol details.
- [Table III] The table marks the best precision-recall trade-off in red, which is not distinguishable in grayscale. Please use bold or a symbol to indicate the best values.
Circularity Check
No circularity: the pose-distribution pipeline is a supervised prediction pipeline, not a fitted input renamed as a prediction.
full rationale
The derivation chain is self-contained: Eqs. 1-2 train descriptor fields with an InfoNCE loss, Eq. 3 trains local frames against ground-truth rotations, Eqs. 4-5 convert per-correspondence predictions into rotation hypotheses, Eq. 6 filters by SO(3) density, and Eqs. 7-9 score pose hypotheses with the same learned descriptors and predicted mask. No stage uses the BOP-Distrib precision/recall metrics as a training input or as a fitted parameter renamed as a prediction. The statement in Section III-A1 that object symmetries 'will naturally be respected due to the visual ambiguities they introduce' is an empirical assumption about what the contrastive loss learns; it may be unsupported, but it is not a definitional identity that equates input with output. The evaluation relies on BOP-Distrib [27], which is under review, and only on T-LESS, as acknowledged in Section IV-F; these are external-validity concerns, not circularity. Citations such as SurfEmb [15] and BOP Challenge [24] provide training and evaluation conventions, but the central pose-distribution output is not enforced by those citations. No quotable equation-level reduction from output back to input was found, so the paper does not exhibit significant circularity.
Assumptions & free parameters
free parameters (4)
- tau_corr (descriptor matching threshold ratio) =
0.65
- tau_dens (rotation hypothesis density threshold) =
10
- tau_score (pose scoring threshold) =
0.9
- Grid level k for SO(3) discretization (G_k) =
4
assumptions (4)
- domain assumption Visual ambiguities force the InfoNCE-trained descriptors and local frames to become symmetry-aware without explicit symmetry supervision.
- domain assumption Per-pixel local frame fields, combined with object-surface local frames, yield a valid camera rotation for each correspondence.
- ad hoc to paper The density of rotation hypotheses in HealPix bins identifies valid pose regions.
- domain assumption BOP-Distrib ground-truth distributions correctly model the set of valid poses under occlusion and symmetry.
Cite this review
Pith. "Pith review of Corr2Distrib: Making Ambiguous Correspondences an Ally to Predict Reliable 6D Pose Distributions." pith.science (2026). https://pith.science/paper/EP52O7MQ
@misc{pith2026250502501,
author = {Pith},
title = {Pith review of: Corr2Distrib: Making Ambiguous Correspondences an Ally to Predict Reliable 6D Pose Distributions},
year = {2026},
howpublished = {\url{https://pith.science/paper/EP52O7MQ}},
note = {Machine review of arXiv:2505.02501}
}
read the original abstract
We introduce Corr2Distrib, the first correspondence-based method which estimates a 6D camera pose distribution from an RGB image, explaining the observations. Indeed, symmetries and occlusions introduce visual ambiguities, leading to multiple valid poses. While a few recent methods tackle this problem, they do not rely on local correspondences which, according to the BOP Challenge, are currently the most effective way to estimate a single 6DoF pose solution. Using correspondences to estimate a pose distribution is not straightforward, since ambiguous correspondences induced by visual ambiguities drastically decrease the performance of PnP. With Corr2Distrib, we turn these ambiguities into an advantage to recover all valid poses. Corr2Distrib first learns a symmetry-aware representation for each 3D point on the object's surface, characterized by a descriptor and a local frame. This representation enables the generation of 3DoF rotation hypotheses from single 2D-3D correspondences. Next, we refine these hypotheses into a 6DoF pose distribution using PnP and pose scoring. Our experimental evaluations on complex non-synthetic scenes show that Corr2Distrib outperforms state-of-the-art solutions for both pose distribution estimation and single pose estimation from an RGB image, demonstrating the potential of correspondences-based approaches.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[27]
Bop-distrib: Revisiting 6d pose estimation benchmark for better evaluation under visual ambiguities,
under review, “Bop-distrib: Revisiting 6d pose estimation benchmark for better evaluation under visual ambiguities,” in arXiv Preprint, 2024
work page 2024
-
[1]
Densefusion: 6d object pose estimation by iterative dense fusion,
C. Wang, D. Xu, Y . Zhu, R. Mart ´ın-Mart´ın, C. Lu, L. Fei-Fei, and S. Savarese, “Densefusion: 6d object pose estimation by iterative dense fusion,” in CVPR, 2019
work page 2019
-
[2]
Posecnn: A convolu- tional neural network for 6d object pose estimation in cluttered scenes,
Y . Xiang, T. Schmidt, V . Narayanan, and D. Fox, “Posecnn: A convolu- tional neural network for 6d object pose estimation in cluttered scenes,” RSS, 2017. 8
work page 2017
-
[3]
Robotic task success evaluation under multi-modal non-parametric object pose uncertainty,
L. Naik, T. M. Iversen, A. Kramberger, and N. Kr ¨uger, “Robotic task success evaluation under multi-modal non-parametric object pose uncertainty,” arXiv preprint arXiv:2403.10874, 2024
arXiv 2024
-
[4]
Computer vision systems for industrial inspection and assembly,
G. J. Agin, “Computer vision systems for industrial inspection and assembly,” Computer, 1980
work page 1980
-
[5]
Vision-guided robotic assembly using uncalibrated vision,
B. Zhang, J. Wang, G. Rossano, and C. Martinez, “Vision-guided robotic assembly using uncalibrated vision,” in ICMA. IEEE, 2011
work page 2011
-
[6]
Stereo vision based automation for a bin-picking solution,
J.-K. Oh, S. Lee, and C.-H. Lee, “Stereo vision based automation for a bin-picking solution,” IJCAS, 2012
work page 2012
-
[7]
P. Jiang, Y . Ishihara, N. Sugiyama, J. Oaki, S. Tokura, A. Sugahara, and A. Ogawa, “Depth image–based deep learning of grasp planning for textureless planar-faced objects in vision-guided robotic bin-picking,” Sensors, 2020
work page 2020
Show all 49 references
-
[8]
A machine learning approach for collaborative robot smart manufacturing inspection for quality control systems,
T. Brito, J. Queiroz, L. Piardi, L. A. Fernandes, J. Lima, and P. Leit˜ao, “A machine learning approach for collaborative robot smart manufacturing inspection for quality control systems,” Procedia Manufacturing, vol. 51, 2020
2020
-
[9]
Self-learning processes in smart factories: Deep reinforcement learning for process control of robot brine injection,
R. E. Andersen, S. Madsen, A. B. Barlo, S. B. Johansen, M. Nør, R. S. Andersen, and S. Bøgh, “Self-learning processes in smart factories: Deep reinforcement learning for process control of robot brine injection,” Procedia Manufacturing, 2019
2019
-
[10]
Explaining the ambiguity of object detection and 6d pose from visual data,
F. Manhardt, D. M. Arroyo, C. Rupprecht, B. Busam, T. Birdal, N. Navab, and F. Tombari, “Explaining the ambiguity of object detection and 6d pose from visual data,” in ICCV, 2019
2019
-
[11]
Confronting ambiguity in 6d object pose estimation via score-based diffusion on se(3),
T.-C. Hsiao, H.-W. Chen, H.-K. Yang, and C.-Y . Lee, “Confronting ambiguity in 6d object pose estimation via score-based diffusion on se(3),” in CVPR, 2024
2024
-
[12]
Spyropose: Se(3) pyramids for object pose distribution estimation,
R. L. Haugaard, F. Hagelskjær, and T. M. Iversen, “Spyropose: Se(3) pyramids for object pose distribution estimation,” in ICCV, 2023
2023
-
[13]
T-less: An rgb-d dataset for 6d pose estimation of texture-less objects,
T. Hodan, P. Haluza, ˇS. Obdr ˇz´alek, J. Matas, M. Lourakis, and X. Zab- ulis, “T-less: An rgb-d dataset for 6d pose estimation of texture-less objects,” in W ACV. IEEE, 2017
2017
-
[14]
Implicit-pdf: Non-parametric representation of probability distributions on the rotation manifold,
K. A. Murphy, C. Esteves, V . Jampani, S. Ramalingam, and A. Makadia, “Implicit-pdf: Non-parametric representation of probability distributions on the rotation manifold,” in ICML. PMLR, 2021
2021
-
[15]
Surfemb: Dense and continuous correspondence distributions for object pose estimation with learnt surface embeddings,
R. L. Haugaard and A. G. Buch, “Surfemb: Dense and continuous correspondence distributions for object pose estimation with learnt surface embeddings,” in CVPR, 2022
2022
-
[16]
Megapose: 6d pose estimation of novel objects via render & compare,
Y . Labb ´e, L. Manuelli, A. Mousavian, S. Tyree, S. Birchfield, J. Trem- blay, J. Carpentier, M. Aubry, D. Fox, and J. Sivic, “Megapose: 6d pose estimation of novel objects via render & compare,” CoRL, 2022
2022
-
[17]
Augmented autoencoders: Implicit 3d orientation learning for 6d object detection,
M. Sundermeyer, Z.-C. Marton, M. Durner, and R. Triebel, “Augmented autoencoders: Implicit 3d orientation learning for 6d object detection,” IJCV, 2020
2020
-
[18]
Zebrapose: Coarse to fine surface encoding for 6dof object pose estimation,
Y . Su, M. Saleh, T. Fetzer, J. Rambach, N. Navab, B. Busam, D. Stricker, and F. Tombari, “Zebrapose: Coarse to fine surface encoding for 6dof object pose estimation,” in CVPR, 2022
2022
-
[19]
Dpod: 6d pose object detector and refiner,
S. Zakharov, I. Shugurov, and S. Ilic, “Dpod: 6d pose object detector and refiner,” in ICCV, 2019
2019
-
[20]
Gdr-net: Geometry- guided direct regression network for monocular 6d object pose estima- tion,
G. Wang, F. Manhardt, F. Tombari, and X. Ji, “Gdr-net: Geometry- guided direct regression network for monocular 6d object pose estima- tion,” in CVPR, 2021
2021
-
[21]
Pix2pose: Pixel-wise coordinate regression of objects for 6d pose estimation,
K. Park, T. Patten, and M. Vincze, “Pix2pose: Pixel-wise coordinate regression of objects for 6d pose estimation,” in ICCV, 2019
2019
-
[22]
Yolo-6d-pose: Enhanc- ing yolo for single-stage monocular multi-object 6d pose estimation,
D. Maji, S. Nagori, M. Mathew, and D. Poddar, “Yolo-6d-pose: Enhanc- ing yolo for single-stage monocular multi-object 6d pose estimation,” in 3DV. IEEE, 2024
2024
-
[23]
GPose2023, a submission to the BOP Challenge 2023,
R. Zhang, Z. Huang, G. Wang, X. Liu, C. Zhang, and X. Ji, “GPose2023, a submission to the BOP Challenge 2023,” 2023, unpublished, http: //bop.felk.cvut.cz/method info/410/
2023
-
[24]
Bop challenge 2020 on 6d object localization,
T. Hoda ˇn, M. Sundermeyer, B. Drost, Y . Labb ´e, E. Brachmann, F. Michel, C. Rother, and J. Matas, “Bop challenge 2020 on 6d object localization,” in ECCV Worksh. Springer, 2020
2020
-
[25]
Complete solution classification for the perspective-three-point problem,
X.-S. Gao, X.-R. Hou, J. Tang, and H.-F. Cheng, “Complete solution classification for the perspective-three-point problem,” IEEE TPAMI, 2003
2003
-
[26]
Random sample consensus: a paradigm for model fitting with applications to image analysis and automated cartography,
M. A. Fischler and R. C. Bolles, “Random sample consensus: a paradigm for model fitting with applications to image analysis and automated cartography,” Commun. ACM, 1981
1981
-
[28]
Bop challenge 2023 on detection segmentation and pose estimation of seen and unseen rigid objects,
T. Hodan, M. Sundermeyer, Y . Labbe, V . N. Nguyen, G. Wang, E. Brach- mann, B. Drost, V . Lepetit, C. Rother, and J. Matas, “Bop challenge 2023 on detection segmentation and pose estimation of seen and unseen rigid objects,” in CVPR, 2024
2023
-
[29]
Bb8: A scalable, accurate, robust to partial occlusion method for predicting the 3d poses of challenging objects without using depth,
M. Rad and V . Lepetit, “Bb8: A scalable, accurate, robust to partial occlusion method for predicting the 3d poses of challenging objects without using depth,” in ICCV, 2017
2017
-
[30]
6d-diff: A keypoint diffusion framework for 6d object pose estimation,
L. Xu, H. Qu, Y . Cai, and J. Liu, “6d-diff: A keypoint diffusion framework for 6d object pose estimation,” in CVPR, 2024
2024
-
[31]
Dense object nets: Learn- ing dense visual object descriptors by and for robotic manipulation,
P. R. Florence, L. Manuelli, and R. Tedrake, “Dense object nets: Learn- ing dense visual object descriptors by and for robotic manipulation,” CoRL, 2018
2018
-
[32]
Posenet: A convolutional network for real-time 6-dof camera relocalization,
A. Kendall, M. Grimes, and R. Cipolla, “Posenet: A convolutional network for real-time 6-dof camera relocalization,” in ICCV, 2015
2015
-
[33]
Real-time seamless single shot 6d object pose prediction,
B. Tekin, S. N. Sinha, and P. Fua, “Real-time seamless single shot 6d object pose prediction,” in CVPR, 2018
2018
-
[34]
Cosypose: Consistent multi-view multi-object 6d pose estimation,
Y . Labb ´e, J. Carpentier, M. Aubry, and J. Sivic, “Cosypose: Consistent multi-view multi-object 6d pose estimation,” in ECCV, 2020
2020
-
[35]
Ssd-6d: Making rgb-based 3d detection and 6d pose estimation great again,
W. Kehl, F. Manhardt, F. Tombari, S. Ilic, and N. Navab, “Ssd-6d: Making rgb-based 3d detection and 6d pose estimation great again,” in ICCV, 2017
2017
-
[36]
Osop: A multi-stage one shot object pose estimation framework,
I. Shugurov, F. Li, B. Busam, and S. Ilic, “Osop: A multi-stage one shot object pose estimation framework,” in CVPR, 2022
2022
-
[37]
Templates for 3d object pose estimation revisited: Generalization to new objects and robustness to occlusions,
V . N. Nguyen, Y . Hu, Y . Xiao, M. Salzmann, and V . Lepetit, “Templates for 3d object pose estimation revisited: Generalization to new objects and robustness to occlusions,” in CVPR, 2022
2022
-
[38]
Hyperposepdf - hyper- networks predicting the probability distribution on so(3),
T. H ¨ofer, B. Kiefer, M. Messmer, and A. Zell, “Hyperposepdf - hyper- networks predicting the probability distribution on so(3),” in W ACV, January 2023
2023
-
[39]
Sc6d: Symmetry-agnostic and correspondence-free 6d object pose estimation,
D. Cai, J. Heikkil ¨a, and E. Rahtu, “Sc6d: Symmetry-agnostic and correspondence-free 6d object pose estimation,” in 3DV. IEEE, 2022
2022
-
[40]
Ki-pode: Keypoint- based implicit pose distribution estimation of rigid objects,
T. M. Iversen, R. L. Haugaard, and A. G. Buch, “Ki-pode: Keypoint- based implicit pose distribution estimation of rigid objects,” in BMVC. BMV A Press, 2022
2022
-
[41]
3d-rcnn: Instance-level 3d object reconstruction via render-and-compare,
A. Kundu, Y . Li, and J. M. Rehg, “3d-rcnn: Instance-level 3d object reconstruction via render-and-compare,” in CVPR, 2018
2018
-
[42]
Generating uniform incremental grids on so (3) using the hopf fibration,
A. Yershova, S. M. LaValle, and J. C. Mitchell, “Generating uniform incremental grids on so (3) using the hopf fibration,” in W AFR. Springer, 2010
2010
-
[43]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” in CVPR, 2016
2016
-
[44]
Imagenet: A large-scale hierarchical image database,
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei, “Imagenet: A large-scale hierarchical image database,” in CVPR. Ieee, 2009
2009
-
[45]
Implicit neural representations with periodic activation functions,
V . Sitzmann, J. Martel, A. Bergman, D. Lindell, and G. Wetzstein, “Implicit neural representations with periodic activation functions,” NeurIPS, vol. 33, 2020
2020
-
[46]
On the continuity of rotation representations in neural networks,
Y . Zhou, C. Barnes, J. Lu, J. Yang, and H. Li, “On the continuity of rotation representations in neural networks,” in CVPR, 2019
2019
-
[47]
HccePose2024, a submission to the BOP Challenge 2024,
H. L. Yulin Wang, Mengting Hu and C. Luo, “HccePose2024, a submission to the BOP Challenge 2024,” 2024, unpublished, https: //bop.felk.cvut.cz/method info/636/
2024
-
[48]
GDet2023, a submission to the BOP Challenge 2023,
R. Zhang, Z. Huang, G. Wang, X. Liu, C. Zhang, and X. Ji, “GDet2023, a submission to the BOP Challenge 2023,” 2023, unpublished, http: //bop.felk.cvut.cz/method info/411/
2023
-
[49]
GDRNPPDet, a submission to the BOP Challenge 2022,
X. Liu, R. Zhang, C. Zhang, B. Fu, J. Tang, X. Liang, J. Tang, X. Cheng, Y . Zhang, G. Wang, and X. Ji, “GDRNPPDet, a submission to the BOP Challenge 2022,” 2022, unpublished, http://bop.felk.cvut.cz/ method info/281/
2022
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.