Skip to main content

RANSAC + collection of minimal solvers for camera pose estimation.

Project description

GitHub release (latest by date) Conan Center PyPI

PoseLib

This library provides a collection of minimal solvers for camera pose estimation. The focus is on calibrated absolute pose estimation problems from different types of correspondences (e.g. point-point, point-line, line-point, line-line).

The goals of this project are to provide

  • Fast and robust implementation of the current state-of-the-art solvers.
  • Consistent calling interface between different solvers.
  • Minimize dependencies, both external (currently only Eigen) and internal. Each solver is (mostly) stand-alone, making it easy to extract only a specific solver to integrate into other frameworks.
  • Robust estimators (based on LO-RANSAC) that just works out-of-the-box for most cases.

Robust Estimation and Non-linear Refinement

We provide robust estimators for the most common problems

  • Absolute pose from points (and lines)
  • Essential / Fundamental matrix
  • Homography
  • Generalized relative pose

It is fairly straight-forward to implement robust estimators for other problems. See for example absolute_pose.h. If you implement estimators for other problems, please consider submitting a pull-request.

In robust.h we provide interfaces which normalizes the data, calls the RANSAC and runs a post-RANSAC non-linear refinement. It is also possible to directly call the individual components as well (see e.g. ransac.h, bundle.h, etc.). The RANSAC is straight-forward implementation of LO-RANSAC which generate hypothesis with minimal solvers and relies on non-linear refinement for refitting.

The robust estimator takes the following options

struct RansacOptions {
    size_t max_iterations = 100000;
    size_t min_iterations = 1000;
    double dyn_num_trials_mult = 3.0;
    double success_prob = 0.9999;
    double max_reproj_error = 12.0;  // used for 2D-3D matches
    double max_epipolar_error = 1.0; // used for 2D-2D matches
    unsigned long seed = 0;
    // If we should use PROSAC sampling. Assumes data is sorted
    bool progressive_sampling = false;
    size_t max_prosac_iterations = 100000;
    // Whether to use real focal length checking for F estimation: https://arxiv.org/abs/2311.16304
    // Assumes that principal points of both cameras are at origin.
    bool real_focal_check = false;
    // Whether to treat the input 'best_model' as an initial model and score it before running the main RANSAC loop
    bool score_initial_model = false;
};

and the non-linear refinement

struct BundleOptions {
    size_t max_iterations = 100;
    enum LossType {
        TRIVIAL, TRUNCATED, HUBER, CAUCHY, TRUNCATED_LE_ZACH
    } loss_type = LossType::CAUCHY;
    double loss_scale = 1.0;
    double gradient_tol = 1e-8;
    double step_tol = 1e-8;
    double initial_lambda = 1e-3;
    double min_lambda = 1e-10;
    double max_lambda = 1e10;
    bool verbose = false;
};

Note that in robust.h this is only used for the post-RANSAC refinement.

In bundle.h we provide non-linear refinement for different problems. Mainly minimizing reprojection error and Sampson error as these performed best in our internal evaluations. These are used in the LO-RANSAC to perform non-linear refitting. Most estimators directly minimize the MSAC score (using loss_type = TRUNCATED and loss_scale = threshold) over all input correspondences. In practice we found that this works quite well and avoids recursive LO where inliers are added in steps.

Camera models

PoseLib use COLMAP-compatible camera models. These are defined in colmap_models.h. Currently we only support

  • SIMPLE_PINHOLE
  • PINHOLE
  • SIMPLE_RADIAL
  • RADIAL
  • OPENCV
  • OPENCV_FISHEYE

but it is relatively straight-forward to add other models. If you do so please consider opening a pull-request. In contrast to COLMAP, we require analytical jacobians for the distortion mappings which make it a bit more work to port them.

The Camera struct currently contains width/height fields, however these are not used anywhere in the code-base and are provided simply to be consistent with COLMAP. The Camera class also provides the helper function initialize_from_txt(str) which initializes the camera from a line given by the cameras.txt file of a COLMAP reconstruction.

The python bindings also expose the poselib.Camera class with focal(), focal_x(), focal_y(), model_name(), prinicipal_point() read-only methods and a read-write params property, but currently this is only used as a return type for some methods. To supply camera information to robust estimators you should use python dicts as shown below.

Python bindings

The python bindings can be installed by running pip install .. The python bindings expose all minimal solvers, e.g. poselib.p3p(x,X), as well as all robust estimators from robust.h.

Examples of how the robust estimators can be called are

camera = {'model': 'SIMPLE_PINHOLE', 'width': 1200, 'height': 800, 'params': [960, 600, 400]}

pose, info = poselib.estimate_absolute_pose(p2d, p3d, camera, {'max_reproj_error': 16.0}, {})

or

F, info = poselib.estimate_fundamental_matrix(p2d_1, p2d_2, {'max_epipolar_error': 0.75, 'progressive_sampling': True}, {})

The return value info is a dict containing information about the robust estimation (inliers, iterations, etc). The last two options are dicts which describe the RansacOptions and BundleOptions. Ommited values are set to their default (see above), except for the loss_scale used for the Cauchy loss which is set to half of the threshold used in RANSAC (which seems to be a good heuristic). Dicts with the default options can be obtained as opt = poselib.RansacOptions() or poselib.BundleOptions().

Some of the available estimators are listed below, check pyposelib.cpp and robust.h for more details. The table also shows which error threshold is used in the estimation (RansacOptions.max_reproj_error or RansacOptions.max_epipolar_error). All thresholds are given in pixels.

Method Arguments (RansacOptions) Threshold
estimate_absolute_pose (p2d, p3d, camera, ransac_opt, bundle_opt, initial_pose=None) max_reproj_error
estimate_absolute_pose_pnpl (p2d, p3d, l2d_1, l2d_2, l3d_1, l3d_2, camera, ransac_opt, bundle_opt, initial_pose=None) max_reproj_error (points), max_epipolar_error (lines)
estimate_generalized_absolute_pose (p2ds, p3ds, camera_ext, cameras, ransac_opt, bundle_opt, initial_pose=None) max_reproj_error
estimate_relative_pose (x1, x2, camera1, camera2, ransac_opt, bundle_opt, initial_pose=None) max_epipolar_error
estimate_shared_focal_relative_pose (x1, x2, pp, ransac_opt, bundle_opt, initial_image_pair=None) max_epipolar_error
estimate_fundamental (x1, x2, ransac_opt, bundle_opt, initial_F=None) max_epipolar_error
estimate_homography (x1, x2, ransac_opt, bundle_opt, initial_H=None) max_reproj_error
estimate_generalized_relative_pose (matches, camera1_ext, cameras1, camera2_ext, cameras2, ransac_opt, bundle_opt, initial_pose=None) max_epipolar_error

Storing poses and estimated camera parameters

To handle poses and cameras we provide the following classes:

  • CameraPose: This class is the return type for the most of the methods. While the class internally represent the pose with q and t, it also exposes R (3x3) and Rt (3x4) which are read/write, i.e. you can do pose.R = Rnew and it will update the underlying quaternion q.
  • Image: Following COLMAP, this class stores information about the camera (image.camera) and its pose (image.pose) used to take an image.
  • ImagePair: This class holds information about two cameras (image_pair.camera1, image_pair.camera2) and their relative pose (image_pair.pose). This class is used as the return type for the estimate_shared_focal_relative_pose robust estimator.

All of these are also exposed via python bindings as: poselib.CameraPose, poselib.Image, poselib.ImagePair.

Benchmarking the robust estimators

To sanity-check the robust estimators we benchmark against the LO-RANSAC implementation from pycolmap.

For all of the metrics higher is better (except for runtime).

Minimal Solvers

Naming convention

For the solver names we use a slightly non-standard notation where we denote the solver as

pXpYplZlpWll

where the number of correspondences required is given by

  • Xp - 2D point to 3D point,
  • Ypl - 2D point to 3D line,
  • Zlp - 2D line to 3D point,
  • Wll - 2D line to 3D line.

The prefix with u is for upright solvers and g for generalized camera solvers. Solvers that estimate focal length have the postfix with f and similarly s for solvers that estimate scale.

Calling conventions

All solvers return their solutions as a vector of CameraPose structs, which defined as

struct CameraPose {
   Eigen::Vector4d q;
   Eigen::Vector3d t;
};

where the rotation is representation as a quaternion q and the convention is that [R t] maps from the world coordinate system into the camera coordinate system.

For 2D point to 3D point correspondences, the image points are represented as unit-length bearings vectors. The returned camera poses (R,t) then satisfies (for some lambda)

  lambda * x[i] = R * X[i] + t

where x[i] is the 2D point and X[i] is the 3D point. Note that only the P3P solver filters solutions with negative lambda.

Solvers that use point-to-point constraints take one vector with bearing vectors x and one vector with the corresponding 3D points X, e.g. for the P3P solver the function declaration is

int p3p(const std::vector<Eigen::Vector3d> &x,
        const std::vector<Eigen::Vector3d> &X,
        std::vector<CameraPose> *output);

Each solver returns the number of real solutions found.

For constraints with 2D lines, the lines are represented in homogeneous coordinates. In the case of 2D line to 3D point constraints, the returned camera poses then satisfies

  l[i].transpose() * (R * X[i] + t) = 0

where l[i] is the line and X[i] is the 3D point.

For constraints with 3D lines, the lines are represented by a 3D point X and a bearing vector V. In the case of 2D point to 3D point constraints

  lambda * x[i] = R * (X[i] + mu * V[i]) + t

for some values of lambda and mu. Similarly, for line to line constraints we have

  l[i].transpose() * (R * (X[i] + mu * V[i]) + t) = 0

Generalized Cameras

For generalized cameras we represent the image rays similarly to the 3D lines above, with an offset p and a bearing vector x. For example, in the case of point-to-point correspondences we have

p[i] + lambda * x[i] = R * X[i] + t

In the case of unknown scale we also estimate alpha such that

alpha * p[i] + lambda * x[i] = R * X[i] + t

For example, the generalized pose and scale solver (from four points) has the following signature

 int gp4ps(const std::vector<Eigen::Vector3d> &p, const std::vector<Eigen::Vector3d> &x,
              const std::vector<Eigen::Vector3d> &X, std::vector<CameraPose> *output);

Upright Solvers

For the upright solvers it assumed that the rotation is around the y-axis, i.e.

R = [a 0 -b; 0 1 0; b 0 a] 

To use these solvers it necessary to pre-rotate the input such that this is satisfied.

Implemented solvers

The following solvers are currently implemented.

Absolute Pose

Solver Point-Point Point-Line Line-Point Line-Line Upright Generalized Approx. runtime Max. solutions Comment
p3p 3 0 0 0 250 ns 4 Ding et al., (CVPR23)
gp3p 3 0 0 0 :heavy_check_mark: 1.6 us 8 Kukelova et al., E3Q3 (CVPR16)
gp4ps 4 0 0 0 :heavy_check_mark: 1.8 us 8 Unknown scale.
Kukelova et al., E3Q3 (CVPR16)
Camposeco et al.(ECCV16)
p4pf 4 0 0 0 2.3 us 8 Unknown focal length.
Kukelova et al., E3Q3 (CVPR16)
p2p2pl 2 2 0 0 30 us 16 Josephson et al. (CVPR07)
p6lp 0 0 6 0 1.8 us 8 Kukelova et al., E3Q3 (CVPR16)
p5lp_radial 0 0 5 0 1 us 4 Kukelova et al., (ICCV13)
p2p1ll 2 0 0 1 1.6 us 8 Kukelova et al., E3Q3 (CVPR16), Zhou et al. (ACCV18)
p1p2ll 1 0 0 2 1.7 us 8 Kukelova et al., E3Q3 (CVPR16), Zhou et al. (ACCV18)
p3ll 0 0 0 3 1.8 us 8 Kukelova et al., E3Q3 (CVPR16), Zhou et al. (ACCV18)
up2p 2 0 0 0 :heavy_check_mark: 65 ns 2 Kukelova et al. (ACCV10)
ugp2p 2 0 0 0 :heavy_check_mark: :heavy_check_mark: 65 ns 2 Adapted from Kukelova et al. (ACCV10)
ugp3ps 3 0 0 0 :heavy_check_mark: :heavy_check_mark: 390 ns 2 Unknown scale. Adapted from Kukelova et al. (ACCV10)
up1p2pl 1 2 0 0 :heavy_check_mark: 370 ns 4
up4pl 0 4 0 0 :heavy_check_mark: 1.4 us 8 Sweeney et al. (3DV14)
ugp4pl 0 4 0 0 :heavy_check_mark: :heavy_check_mark: 1.4 us 8 Sweeney et al. (3DV14)

Relative Pose

Solver Point-Point Upright Planar Generalized Approx. runtime Max. solutions Comment
relpose_5pt 5 5.5 us 10 Nister (PAMI 2004)
relpose_8pt 8+ 2.2+ us 1
relpose_upright_3pt 3 :heavy_check_mark: 210 ns 4 Ding et al., (CVPR23)
gen_relpose_upright_4pt 4 :heavy_check_mark: :heavy_check_mark: 1.2 us 6 Sweeney et al. (3DV14)
relpose_upright_planar_2pt 2 :heavy_check_mark: :heavy_check_mark: 120 ns 2 Choi and Kim (IVC 2018)
relpose_upright_planar_3pt 3 :heavy_check_mark: :heavy_check_mark: 300 ns 1 Choi and Kim (IVC 2018)
gen_relpose_5p1pt 5+1 :heavy_check_mark: 5.5 us 10 E + 1pt to fix scale
relpose_6pt_shared_focal 6 33 us 15 Stewénius et al. (IVC 2008)

Decompositions

Poselib also provides methods and python bindings for decomposing fundamental matrices to obtain the focal lengths of the cameras and a method for decomposition of homography to poses and plane normals.

Method Arguments Output Comment
focals_from_fundamental (F, pp1, pp2) (cam1, cam2) Bougnoux (ICCV 1998)
focals_from_fundamental_iterative (F, cam1_prior, cam2_prior, max_iters = 50, weights = {5e-4, 1.0, 5e-4, 1.0}) (cam1, cam2, iters) Kocur et al. (CVPR 2024)
motion_from_homography (H) (poses, normals) Adapted from Ma et al. (Springer 2004)

To obtain the focal lengths from the camera object you can use focal = cam.focal(). Note that both focal length methods can produce very inaccurate results and fail often such that the output focal lengths can be NaNs or negative numbers. If you need to estimate a focal length shared by both cameras (e.g. the same camera in both views) you should use estimate_shared_focal_relative_pose.

If you use H obtained using correspondences in image coordinates from two cameras you need to use K2_inv * H * K1 as input to motion_from_homography.

How to compile?

Getting the code:

> git clone --recursive https://github.com/vlarsson/PoseLib.git
> cd PoseLib

Example of a local installation:

> mkdir _build && cd _build
> cmake -DCMAKE_INSTALL_PREFIX=../_install ..
> cmake --build . --target install -j 8
  (equivalent to  'make install -j8' in linux)

Installed files:

> tree ../_install
  .
  ├── bin
  │   └── benchmark
  ├── include
  │   └── PoseLib
  │       ├── solvers/gp3p.h
  │       ├──  ...
  │       ├── poselib.h          <==  Library header (includes all the rest)
  │       ├──  ...
  │       └── version.h
  └── lib
      ├── cmake
      │   └── PoseLib
      │       ├── PoseLibConfig.cmake
      │       ├── PoseLibConfigVersion.cmake
      │       ├── PoseLibTargets.cmake
      │       └── PoseLibTargets-release.cmake
      └── libPoseLib.a

Uninstall library:

> make uninstall

Installation

Installing PoseLib using Conan

You can install pre-built binaries for PoseLib or build it from source using Conan. Use the following command:

conan install --requires="poselib/[*]" --build=missing

The PoseLib Conan recipe is kept up to date by Conan maintainers and community contributors. If the version is out of date, please create an issue or pull request on the ConanCenterIndex repository.

Benchmark

Conditional compilation of benchmark binary is controlled by WITH_BENCHMARK option. Default if OFF (without benchmark).

Add -DWITH_BENCHMARK=ON to cmake to activate.

> cmake -DWITH_BENCHMARK=ON ..

Use library (as dependency) in an external project.

cmake_minimum_required(VERSION 3.13)
project(Foo)

find_package(PoseLib REQUIRED)

add_executable(foo foo.cpp)
target_link_libraries(foo PRIVATE PoseLib::PoseLib)

Citing

If you are using the library for (scientific) publications, please cite the following source:

@misc{PoseLib,
  title = {{PoseLib - Minimal Solvers for Camera Pose Estimation}},
  author = {Viktor Larsson and contributors},
  URL = {https://github.com/vlarsson/PoseLib},
  year = {2020}
}

Please cite also the original publications of the different methods (see table above).

Changelog

2.0.5 - Aug. 2025

2.0.4 - Aug. 2024

  • Added implementation of OpenCVFisheye camera model
  • Bumped pybind11 version which seems to fix some crashes
  • Added cmake option to disable -march=native

2.0.3 - Jul. 2024

  • Added decomposition methods for estimation of focal lengths from fundamental matrices

2.0.2 - Apr. 2024

  • Added solver and robust estimator for 6p relative pose with unknown shared focal length
  • Added Image, ImagePair classes with python bindings
  • Exposed Camera via python bindings

2.0.1 - Sep. 2023

  • Refactor pybind such that pip install . works. Moved pybind11 to submodule.
  • C++ alignment fixes. Should now work with Eigen 3.3 and the header should be COLMAP compatible.

2.0 - Jan. 2022

  • Added robust estimators (LO-RANSAC) and non-linear refinement
  • Refactored CameraPose to use quaternion instead 3x3 matrix. Removed alpha.
  • Implemented TR-IRLS method from Le and Zach (3DV 2021)
  • Restructured pybind11 interface
  • Added support for PROSAC sampling
  • Many minor fixes and improvements....

1.0 - Jan. 2020

  • Initial release

License

PoseLib is licensed under the BSD 3-Clause license. Please see License for details.

Acknowledgements

The RANSAC implementation is heavily inspired by RansacLib from Torsten Sattler.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

poselib-2.0.5-cp314-cp314t-win_amd64.whl (920.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

poselib-2.0.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp314-cp314t-macosx_11_0_arm64.whl (830.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

poselib-2.0.5-cp314-cp314-win_amd64.whl (905.6 kB view details)

Uploaded CPython 3.14Windows x86-64

poselib-2.0.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp314-cp314-macosx_11_0_arm64.whl (816.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

poselib-2.0.5-cp313-cp313-win_amd64.whl (879.9 kB view details)

Uploaded CPython 3.13Windows x86-64

poselib-2.0.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp313-cp313-macosx_11_0_arm64.whl (815.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

poselib-2.0.5-cp312-cp312-win_amd64.whl (880.1 kB view details)

Uploaded CPython 3.12Windows x86-64

poselib-2.0.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp312-cp312-macosx_11_0_arm64.whl (815.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

poselib-2.0.5-cp311-cp311-win_amd64.whl (875.2 kB view details)

Uploaded CPython 3.11Windows x86-64

poselib-2.0.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp311-cp311-macosx_11_0_arm64.whl (813.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

poselib-2.0.5-cp310-cp310-win_amd64.whl (874.3 kB view details)

Uploaded CPython 3.10Windows x86-64

poselib-2.0.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp310-cp310-macosx_11_0_arm64.whl (812.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

poselib-2.0.5-cp39-cp39-win_amd64.whl (882.9 kB view details)

Uploaded CPython 3.9Windows x86-64

poselib-2.0.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp39-cp39-macosx_11_0_arm64.whl (812.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

poselib-2.0.5-cp38-cp38-win_amd64.whl (873.5 kB view details)

Uploaded CPython 3.8Windows x86-64

poselib-2.0.5-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

poselib-2.0.5-cp38-cp38-macosx_11_0_arm64.whl (812.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file poselib-2.0.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 920.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 61dea4fbac1bbca01e00efa5351c8cb7a232c11e1f617075e7932c510261973e
MD5 0d911ff8b3158e2bf709f6fa60959614
BLAKE2b-256 772b2f737f1165a2bf0ad2c6e82efe64cfa835988b91e990b2af7d4430106e53

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b5bf4c4262d1cd0da3971a8b80d47484fc07b2e828828d7ea0db0c63f4c65cb
MD5 1b064e5d84a42f06690b380dfa2fa45a
BLAKE2b-256 742de0eecfe364282803996be735e13739c0c31a39e692f38fa75df7058163a1

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 922f35aafe8a36746229310042238f8e33238708521d8b01fb43b2b5195c8c6d
MD5 05da75b13c871ac118b171d8fa7a56cd
BLAKE2b-256 59bce9e1c6443a601e8fc5f7c39839118fe4d710149e5fa346e48ae4e4ab2f7e

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 905.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a1ef6f16d26ad772729e660de4401fe2a952c3a2b28cfe27c05374e732bfc27b
MD5 340928f4ab3d00ca092451298950ad07
BLAKE2b-256 4d9ad750d26bb6134ede1222ff1128d1bd3bd906b12feb74cc1729d819ff44ed

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbd5255fa11fde8b9245fe48d5ded4dedb6e99b871952b5a495e0ebc1a9eadc4
MD5 2ae86407619d9029d594be9dfd78f121
BLAKE2b-256 2783d8c2cf20c8fa6de473a63cc2835e5299912509efed44c60857312b59f937

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6783a666d07002ad2e01a5ee57fb93cdf849d2b3f4288fec7f6743f30cd65357
MD5 f6cb9c657c178afc59b80bf0cdca5433
BLAKE2b-256 5f1657f3f8c2e04e69695bedbf31ad5cc7775c336a8862a28b8fc743bdbaadb4

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 879.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 40e8c628946b93454c0f71ad378a902f0574e0ebb9c4f89873c0a8e4cf949933
MD5 e431cbc8fde2ef6b1d6050e7eb5397c3
BLAKE2b-256 c4c4cb6042de0bf751a5bd7d319ec8179d8fc0c6c86a18249ba2b7fb0c4f72b1

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 763e7e47001297b97c1c5e0fead04c515e5a074f5705206e4a235d3e33f10048
MD5 51a323b546f6db9faa3375a01417b9c8
BLAKE2b-256 970f226309b73c8dedb899855099892fec06505c7bee8fc43f44df8a88c357c8

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4ef783e19a61d0510a6c0c79c08279cbcd301ef6150327c8f3e10dd730ae32a
MD5 ea0c7e4e93f8f98253fdd0d71130b1f1
BLAKE2b-256 527b05b35594600eba71f45a294a1c8daaffc8609a72f75f989e7223177b2f88

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 880.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e2db979ac77db14c89e3f07f4bd6fb5ac61dbacfc3634a8ae462964a4ac7f1f7
MD5 91388dce2499ead817808084e43b4c45
BLAKE2b-256 5c4cc572e2b97c1ad26cae1cc694677ecab0e69bb240d418c66b8547d2ef81e7

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77310b5cc784118ad254c42b904327056e8765fc72846247de76c3b3794866cc
MD5 411c3698749e2e607b8c9eda9f96f161
BLAKE2b-256 7a248d7138bb0728bef2e2b4eaf76960eb292c40aa7948adf8bc222762d449e6

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3f45eda8c94833fcc110271856cc94d49f082761288ba2fc06de746cea87d40
MD5 5813f5e42aeac451cfba09288b8dea70
BLAKE2b-256 f1a6ca5065c8b7af8592f6f57d45566535dff46dd79758a9c9459104cbc0561a

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 875.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c8d8d6247244f22c3f3a12cd36b27c267bc3e2db9649bef44eabe46ae7bbc42
MD5 f2aa8eccbda09ec032be250c802f03d3
BLAKE2b-256 ee1bbfb1bc915ab1b3ee64911aef274836660b9da514424082dda419033e48d8

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5035f1053cb4ae70aec4b57b56552e17eef9e96dc9ac3940ad83f0875e12f33c
MD5 687e7c4d9672a9bbefdab0c5aff80c37
BLAKE2b-256 fc9d6ae0c4080b61e7ac7c96064ecbb494b018b0494c3a398d882f929a0f02b8

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9afe032abb14c68b16e9e6870238e398516da1dee5ab1a31397ffa49aa538f0
MD5 a7af006f396153e30f22a8688f35aaa7
BLAKE2b-256 2a5ccbb68db6c06da7f2cb7cf9e93ecfc195d41deafe8fde8d888be547a55908

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 874.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81ce3c16c2b63376f2a769d93592f5ade9314bc1f320205fbe86bc492cf72782
MD5 0938fe2820b319d73faa9db221f65fb7
BLAKE2b-256 609ca597e585c711dec277625949ebaa31e353d41db32edf7eff5824a0a0f92e

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dc82664e9a21b737c7039548eb17c32feb36ecf6645c9357c0266d62a3ec2bd
MD5 1de6606dbf30cbefc5a888ead30916a5
BLAKE2b-256 4784ef447832172ab3bb6561a01c5cebee55245564a53671cd6e5481c269e421

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e88361d6ccf887286ef4a5f923f0861f31bc4f424d1a3c59757117af775d5ce7
MD5 394601e4e47bac3d77589cfd7d100fad
BLAKE2b-256 bae27432a1f79cfa2f08e69c4adc9558252850f9e11f2ded8e78604956f541e9

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 882.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ef85ff9a117f1facb73640fe82d7febc418b41d091ac662ae8932a6db05e42c9
MD5 ecd6c284042e5a3ef36c907de8bd40fd
BLAKE2b-256 a48d7a0f52909ed36d3446d6708a0060894564a6195cb54e8dbceeddf21da1ef

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae4de845b295886b80f14781a24be185ae064659558b63e94cf65256f8ee8063
MD5 e68c5965e69a714a06bcd13be7923e2e
BLAKE2b-256 97544d5572b69f171b3178648cb02a75934c8e7a13d6b4325fa098e2fa983eeb

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43a2275d8a336e1d6c41557d2c59366b0f8d1716ff14468602143f9af8bb2d59
MD5 5b2faad9f2d20f3f2a095b4ec53e6556
BLAKE2b-256 a4a338a001b037aeecd9ea53d115b0932d52cbdac6f9a64b104d3a7af6412ff9

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: poselib-2.0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 873.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for poselib-2.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3dcead9ebd17f64d992b842cc09479300605862e2c25de023776b59ef43df353
MD5 c6a6d2bd8ea3b9a394d471e4d6e1eb59
BLAKE2b-256 44f2c1c665113818385e33fabbb95d124e10e7269a0026ca63cd3df1e4038658

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1c27e2ca4a0e5e084d8d889fc8dfc7b0142f0233c08df9f3c551ae084cff41c
MD5 f912d784bc85b461a112a0ed21b69c75
BLAKE2b-256 510787e92654758eafcde4ab9aa0dc3b8c28712f4fc5d5ad010b8e067e7cb3c5

See more details on using hashes here.

File details

Details for the file poselib-2.0.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for poselib-2.0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b76a760cd61d3639c55e32fd800175da53f9e225dabfa10cfeec65bc7d2642c4
MD5 e5cad47a9201e0d28d76b07cd5dfe36e
BLAKE2b-256 93a55a40d9fc749d74154ba9ab9681e2294d9fdc2fc368e94feb6b53219ba8bf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page