All Projects → SergioRAgostinho → cvxpnpl

SergioRAgostinho / cvxpnpl

Licence: Apache-2.0 license
A Perspective-n-Points-and-Lines method.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to cvxpnpl

maks
Motion Averaging
Stars: ✭ 52 (-7.14%)
Mutual labels:  registration, pose
MSPN
Multi-Stage Pose Network
Stars: ✭ 321 (+473.21%)
Mutual labels:  pose-estimation, pose
GurobiLink
Wolfram Language interface to the Gurobi numerical optimization library
Stars: ✭ 16 (-71.43%)
Mutual labels:  convex-optimization, convex
Openpose
OpenPose: Real-time multi-person keypoint detection library for body, face, hands, and foot estimation
Stars: ✭ 22,892 (+40778.57%)
Mutual labels:  pose-estimation, pose
Res2Net-Pose-Estimation
Res2Net for Pose Estimation using Simple Baselines as the baseline
Stars: ✭ 35 (-37.5%)
Mutual labels:  pose-estimation, pose
icra20-hand-object-pose
[ICRA 2020] Robust, Occlusion-aware Pose Estimation for Objects Grasped by Adaptive Hands
Stars: ✭ 42 (-25%)
Mutual labels:  registration, pose-estimation
MSPN
Multi-Stage Pose Network
Stars: ✭ 40 (-28.57%)
Mutual labels:  pose-estimation, pose
kapao
KAPAO is an efficient single-stage human pose estimation model that detects keypoints and poses as objects and fuses the detections to predict human poses.
Stars: ✭ 604 (+978.57%)
Mutual labels:  pose-estimation
users-service
A small microservice for managing user registrations, password changes and issue access tokens
Stars: ✭ 16 (-71.43%)
Mutual labels:  registration
MIPT-Opt
A course on Optimization Methods
Stars: ✭ 128 (+128.57%)
Mutual labels:  convex-optimization
Gestures-Samples
Project Prague Code Samples
Stars: ✭ 98 (+75%)
Mutual labels:  pose
info-retrieval
Information Retrieval in High Dimensional Data (class deliverables)
Stars: ✭ 33 (-41.07%)
Mutual labels:  convex-optimization
HipHop 2D3Dregistration
2D/3D registration between CT/MRI or STL models and X-ray images (November 2018)
Stars: ✭ 91 (+62.5%)
Mutual labels:  registration
Awesome-Vision-Transformer-Collection
Variants of Vision Transformer and its downstream tasks
Stars: ✭ 124 (+121.43%)
Mutual labels:  pose-estimation
mediapipe-osc
MediaPipe examples which stream their detections over OSC.
Stars: ✭ 26 (-53.57%)
Mutual labels:  pose-estimation
FastPose
pytorch realtime multi person keypoint estimation
Stars: ✭ 36 (-35.71%)
Mutual labels:  pose-estimation
django-slack-oauth
Handles OAuth and stores slack token
Stars: ✭ 51 (-8.93%)
Mutual labels:  registration
hull
Concave or convex hull around a list of points.
Stars: ✭ 39 (-30.36%)
Mutual labels:  convex
Everything-Will-Be-IK
A Robust Inverse Kinematics Library
Stars: ✭ 35 (-37.5%)
Mutual labels:  pose-estimation
PCLoc
Pose Correction for Highly Accurate Visual Localization in Large-scale Indoor Spaces (ICCV 2021)
Stars: ✭ 37 (-33.93%)
Mutual labels:  pose-estimation

CvxPnPL

A convex Perspective-n-Points-and-Lines method.

Title: CvxPnPL: A Unified Convex Solution to the Absolute Pose Estimation Problem from Point and Line Correspondences

Abstract: We present a new convex method to estimate 3D pose from mixed combinations of 2D-3D point and line correspondences, the Perspective-n-Points-and-Lines problem (PnPL). We merge the contributions of each point and line into a unified Quadratic Constrained Quadratic Problem (QCQP) and then relax it into a Semi Definite Program (SDP) through Shor's relaxation. This makes it possible to gracefully handle mixed configurations of points and lines. Furthermore, the proposed relaxation allows us to recover a finite number of solutions under ambiguous configurations. In such cases, the 3D pose candidates are found by further enforcing geometric constraints on the solution space and then retrieving such poses from the intersections of multiple quadrics. Experiments provide results in line with the best performing state of the art methods while providing the flexibility of solving for an arbitrary number of points and lines.

URL to the Paper: arXiv

License: Apache 2.0

Installing

The easiest way to install the package is through pip

pip install cvxpnpl

Alternatively, you can clone this repo and invoke from its root folder

python setup.py install

SDP Solver, BLAS and LAPACK

cvxpnpl makes use of SCS to obtain a solution to the underlying SDP problem. SCS requires BLAS and LAPACK which can be painful to set up for Windows users. As of version 2.0.0, SCS is permanently linking with LAPACK and BLAS and it is possible that the process is now easier for Windows users as well.

Examples

The library exposes 3 public functions: pnp, pnl and pnpl. You can find a couple of examples showing how to use each in the examples folder.

Benchmarks

A number of benchmarks were conducted in order to validate the robustness of cvxpnpl in various scenarios and compare it against other methods. Please check the dedicated README page on the topic.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].