python-orb-slam3


Namepython-orb-slam3 JSON
Version 0.1.1 PyPI version JSON
download
home_page
SummaryA Python wrapper of ORB-SLAM3 algorithm
upload_time2024-02-04 11:57:23
maintainer
docs_urlNone
authorMix
requires_python>=3.8,<4.0
licenseGPL-3.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # python-orb-slam3

A Python wrapper for the [ORB-SLAM3](https://github.com/UZ-SLAMLab/ORB_SLAM3) feature extraction algorithm.

## Installation

### From PyPI

> **Note**
> This package's pre-built binaries are only available for AMD64 architectures.

```bash
pip install python-orb-slam3
```

### From source

There are a few steps to follow to install this package from the source code, please refer to the CI configuration file [here](.github/workflows/ci.yml) for more details.

## Usage

```python
import cv2
from matplotlib import pyplot as plt

from python_orb_slam3 import ORBExtractor

source = cv2.imread("path/to/image.jpg")
target = cv2.imread("path/to/image.jpg")

orb_extractor = ORBExtractor()

# Extract features from source image
source_keypoints, source_descriptors = orb_extractor.detectAndCompute(source)
target_keypoints, target_descriptors = orb_extractor.detectAndCompute(target)

# Match features
bf = cv2.BFMatcher(cv2.NORM_HAMMING, crossCheck=True)
matches = bf.match(source_descriptors, target_descriptors)

# Draw matches
source_image = cv2.drawKeypoints(source, source_keypoints, None)
target_image = cv2.drawKeypoints(target, target_keypoints, None)
matches_image = cv2.drawMatches(source_image, source_keypoints, target_image, target_keypoints, matches, None)

# Show matches
plt.imshow(matches_image)
plt.show()
```

## License

This repository is licensed under the [GPLv3](LICENSE) license.

<!--markdownlint-disable-file MD046-->

    A Python wrapper for the ORB-SLAM3 feature extraction algorithm.
    Copyright (C) 2022  Johnny Hsieh

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "python-orb-slam3",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Mix",
    "author_email": "32300164+mnixry@users.noreply.github.com",
    "download_url": "https://files.pythonhosted.org/packages/09/77/cda140756ab1267395c715fa22d8964817843c811df0663e5abd267ae10d/python_orb_slam3-0.1.1.tar.gz",
    "platform": null,
    "description": "# python-orb-slam3\n\nA Python wrapper for the [ORB-SLAM3](https://github.com/UZ-SLAMLab/ORB_SLAM3) feature extraction algorithm.\n\n## Installation\n\n### From PyPI\n\n> **Note**\n> This package's pre-built binaries are only available for AMD64 architectures.\n\n```bash\npip install python-orb-slam3\n```\n\n### From source\n\nThere are a few steps to follow to install this package from the source code, please refer to the CI configuration file [here](.github/workflows/ci.yml) for more details.\n\n## Usage\n\n```python\nimport cv2\nfrom matplotlib import pyplot as plt\n\nfrom python_orb_slam3 import ORBExtractor\n\nsource = cv2.imread(\"path/to/image.jpg\")\ntarget = cv2.imread(\"path/to/image.jpg\")\n\norb_extractor = ORBExtractor()\n\n# Extract features from source image\nsource_keypoints, source_descriptors = orb_extractor.detectAndCompute(source)\ntarget_keypoints, target_descriptors = orb_extractor.detectAndCompute(target)\n\n# Match features\nbf = cv2.BFMatcher(cv2.NORM_HAMMING, crossCheck=True)\nmatches = bf.match(source_descriptors, target_descriptors)\n\n# Draw matches\nsource_image = cv2.drawKeypoints(source, source_keypoints, None)\ntarget_image = cv2.drawKeypoints(target, target_keypoints, None)\nmatches_image = cv2.drawMatches(source_image, source_keypoints, target_image, target_keypoints, matches, None)\n\n# Show matches\nplt.imshow(matches_image)\nplt.show()\n```\n\n## License\n\nThis repository is licensed under the [GPLv3](LICENSE) license.\n\n<!--markdownlint-disable-file MD046-->\n\n    A Python wrapper for the ORB-SLAM3 feature extraction algorithm.\n    Copyright (C) 2022  Johnny Hsieh\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n",
    "bugtrack_url": null,
    "license": "GPL-3.0",
    "summary": "A Python wrapper of ORB-SLAM3 algorithm",
    "version": "0.1.1",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "084c30005d4b5ecaa1a0695b909f9f7cc348fa3e17e138eba1aac4501e4c2bf6",
                "md5": "e19d8994cccf614fc24cc2e8af3502d8",
                "sha256": "70eb76383a6575536edc3724aa92b0b2d7613b04cd2aa03957424be948b918bb"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e19d8994cccf614fc24cc2e8af3502d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8,<4.0",
            "size": 13496281,
            "upload_time": "2024-02-04T11:56:40",
            "upload_time_iso_8601": "2024-02-04T11:56:40.219202Z",
            "url": "https://files.pythonhosted.org/packages/08/4c/30005d4b5ecaa1a0695b909f9f7cc348fa3e17e138eba1aac4501e4c2bf6/python_orb_slam3-0.1.1-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c73989007e3006f1e9feb724b5ca99015b90ce6a34b60fb08924bffec5b74f7",
                "md5": "1d1a01615a35da6872aa32b387c262f1",
                "sha256": "309d5b0cfec1228e30e10796d2d38298049109afd6bba9c2bbfe6fe9d4e64643"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1d1a01615a35da6872aa32b387c262f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8,<4.0",
            "size": 1822902,
            "upload_time": "2024-02-04T11:56:42",
            "upload_time_iso_8601": "2024-02-04T11:56:42.431635Z",
            "url": "https://files.pythonhosted.org/packages/4c/73/989007e3006f1e9feb724b5ca99015b90ce6a34b60fb08924bffec5b74f7/python_orb_slam3-0.1.1-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96bbc9a409f7c9ac5fd0fd5c4ee3dbb8a519373ff656820cf42b264f280c9bb9",
                "md5": "68ea1ff027b989e0528211a7b0b638be",
                "sha256": "c90391a77c9c707cd616140f550b42c92452dab8e546ba802baa1158157be4a5"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp310-cp310-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68ea1ff027b989e0528211a7b0b638be",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8,<4.0",
            "size": 13978836,
            "upload_time": "2024-02-04T11:56:44",
            "upload_time_iso_8601": "2024-02-04T11:56:44.524324Z",
            "url": "https://files.pythonhosted.org/packages/96/bb/c9a409f7c9ac5fd0fd5c4ee3dbb8a519373ff656820cf42b264f280c9bb9/python_orb_slam3-0.1.1-cp310-cp310-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e11a77856b3bae940984c0078e299b3b0d7cba5fde0e0dd9a1c34412d7a116c6",
                "md5": "470761f60c7a556c2aa149f1007197de",
                "sha256": "154a84db0ba30965d5314a4bab25efc09952142bd420e26d92be8c747a0ad3b2"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "470761f60c7a556c2aa149f1007197de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8,<4.0",
            "size": 10687161,
            "upload_time": "2024-02-04T11:56:47",
            "upload_time_iso_8601": "2024-02-04T11:56:47.199161Z",
            "url": "https://files.pythonhosted.org/packages/e1/1a/77856b3bae940984c0078e299b3b0d7cba5fde0e0dd9a1c34412d7a116c6/python_orb_slam3-0.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "004c11637233106bfe6fabe0aa58dba85f388fbde6ca51d2dc31b984b17bb436",
                "md5": "7f0b94037778d8c1ca8b8edcee004cc7",
                "sha256": "f1a44778323ac8c66fde35a381c51465290c0cadbac8694edd04c27acf27f22e"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f0b94037778d8c1ca8b8edcee004cc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8,<4.0",
            "size": 13497709,
            "upload_time": "2024-02-04T11:56:49",
            "upload_time_iso_8601": "2024-02-04T11:56:49.463495Z",
            "url": "https://files.pythonhosted.org/packages/00/4c/11637233106bfe6fabe0aa58dba85f388fbde6ca51d2dc31b984b17bb436/python_orb_slam3-0.1.1-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7990fb780581c339642c6fa6c19676b5c871c808c1d2eb116e5f8f222364bd18",
                "md5": "4f04258ce33b0da5921db458bd722dc8",
                "sha256": "08090fcaee0a5e5353b258e508a39508b761f6fffb62c77c71de85bfef4b97fe"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4f04258ce33b0da5921db458bd722dc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8,<4.0",
            "size": 1824035,
            "upload_time": "2024-02-04T11:56:52",
            "upload_time_iso_8601": "2024-02-04T11:56:52.147661Z",
            "url": "https://files.pythonhosted.org/packages/79/90/fb780581c339642c6fa6c19676b5c871c808c1d2eb116e5f8f222364bd18/python_orb_slam3-0.1.1-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cc285bd50c6003bc69e7d37c48e44ddb2d3e5ddae336a0e2ddd055ff828b31c",
                "md5": "883aa54b165cb0892d44fce150fd9d82",
                "sha256": "96e005e619ca481f2faebfede2744da1c953a4c9bd272f31e95c2b4c311b0585"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp311-cp311-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "883aa54b165cb0892d44fce150fd9d82",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8,<4.0",
            "size": 13981758,
            "upload_time": "2024-02-04T11:56:54",
            "upload_time_iso_8601": "2024-02-04T11:56:54.223463Z",
            "url": "https://files.pythonhosted.org/packages/7c/c2/85bd50c6003bc69e7d37c48e44ddb2d3e5ddae336a0e2ddd055ff828b31c/python_orb_slam3-0.1.1-cp311-cp311-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9fe6354281af443a2082f90fbd81a9d12fbb43f00255efe7b4e7d3198f491c4",
                "md5": "cd85a5aa6e71f2452a63ff13186d60d1",
                "sha256": "4f621ead2b7ac5c43251c576f9f2bfee0d1841cdac5e22c38da0fec98c950187"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cd85a5aa6e71f2452a63ff13186d60d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8,<4.0",
            "size": 10688706,
            "upload_time": "2024-02-04T11:56:56",
            "upload_time_iso_8601": "2024-02-04T11:56:56.934660Z",
            "url": "https://files.pythonhosted.org/packages/f9/fe/6354281af443a2082f90fbd81a9d12fbb43f00255efe7b4e7d3198f491c4/python_orb_slam3-0.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd2232387afc5b756e50fe88f5d2e80184ce1401908827b7998d2cd7ae321e8c",
                "md5": "124312279857250320ad178e25f155e3",
                "sha256": "4b9ad719c8d14c327ed2d91f03ddcce27891261d7c37d123e7bda0c2dc981b7c"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "124312279857250320ad178e25f155e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8,<4.0",
            "size": 13496460,
            "upload_time": "2024-02-04T11:56:59",
            "upload_time_iso_8601": "2024-02-04T11:56:59.660699Z",
            "url": "https://files.pythonhosted.org/packages/bd/22/32387afc5b756e50fe88f5d2e80184ce1401908827b7998d2cd7ae321e8c/python_orb_slam3-0.1.1-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8faabcd8c7e22f9d5e7774ec41f143458ecaee35c8db9a60ea53be055dde6f1a",
                "md5": "19718a1d123daf162af796e0e629011a",
                "sha256": "de252c7dd93babaccb11e8205b494cf6a0a2c887091eaa9a9ea264df139036a9"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "19718a1d123daf162af796e0e629011a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8,<4.0",
            "size": 1823503,
            "upload_time": "2024-02-04T11:57:02",
            "upload_time_iso_8601": "2024-02-04T11:57:02.520744Z",
            "url": "https://files.pythonhosted.org/packages/8f/aa/bcd8c7e22f9d5e7774ec41f143458ecaee35c8db9a60ea53be055dde6f1a/python_orb_slam3-0.1.1-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86a0c872eabaf02c7842475b223dafd8e1e5f7fe6dbc4167e360f816089a4738",
                "md5": "71e84e5da89e9a334f9920fad4512149",
                "sha256": "c3f4965bfa2c0f1c0e28c01104a36921e8511853f388822fe348a5b875c41cc8"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp312-cp312-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71e84e5da89e9a334f9920fad4512149",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8,<4.0",
            "size": 13979978,
            "upload_time": "2024-02-04T11:57:03",
            "upload_time_iso_8601": "2024-02-04T11:57:03.985775Z",
            "url": "https://files.pythonhosted.org/packages/86/a0/c872eabaf02c7842475b223dafd8e1e5f7fe6dbc4167e360f816089a4738/python_orb_slam3-0.1.1-cp312-cp312-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e837166fe6328c967d271654a14a4bef524cf11f21d9ee9af0e3911d7e1cceb9",
                "md5": "2f329d740b34a1dd73c5fd9a63324073",
                "sha256": "b4d4781cff8ed906a8939224b070f523f7b0751acc51be65addb978b4fa23a38"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f329d740b34a1dd73c5fd9a63324073",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8,<4.0",
            "size": 10688116,
            "upload_time": "2024-02-04T11:57:06",
            "upload_time_iso_8601": "2024-02-04T11:57:06.720825Z",
            "url": "https://files.pythonhosted.org/packages/e8/37/166fe6328c967d271654a14a4bef524cf11f21d9ee9af0e3911d7e1cceb9/python_orb_slam3-0.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6c299783cd7bff7ee0e859bfbc636a7b958e8cb8fa02b64d942b910d419d371",
                "md5": "f6a9e13ed183ce4f150344c183f82099",
                "sha256": "51a9bf7e6d9a46372b81218f162ce1305b11b1d6acd7b33aae9668348bbdba76"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp38-cp38-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6a9e13ed183ce4f150344c183f82099",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8,<4.0",
            "size": 13496397,
            "upload_time": "2024-02-04T11:57:09",
            "upload_time_iso_8601": "2024-02-04T11:57:09.412212Z",
            "url": "https://files.pythonhosted.org/packages/a6/c2/99783cd7bff7ee0e859bfbc636a7b958e8cb8fa02b64d942b910d419d371/python_orb_slam3-0.1.1-cp38-cp38-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6b232a63c52900e9cd8c9c2f0d580be43cc2847f8d57feeb905469830f1f190",
                "md5": "cb0f503217189fe7ff9deb80274ee3ae",
                "sha256": "6318b88897172e1462404adb7d086fd1bae7e71c14493d85e14cc267acc53832"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp38-cp38-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb0f503217189fe7ff9deb80274ee3ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8,<4.0",
            "size": 13978981,
            "upload_time": "2024-02-04T11:57:11",
            "upload_time_iso_8601": "2024-02-04T11:57:11.609431Z",
            "url": "https://files.pythonhosted.org/packages/f6/b2/32a63c52900e9cd8c9c2f0d580be43cc2847f8d57feeb905469830f1f190/python_orb_slam3-0.1.1-cp38-cp38-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "545fd2b034363c40ed890e0a258d85868704874b88c0a90b5def84cc1605cd97",
                "md5": "32f25f6afa1f3fc75934033786a61144",
                "sha256": "a6889e115ac564c929278a59cd1e1d52d9359cadc77e25f263b8dc42b542f047"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "32f25f6afa1f3fc75934033786a61144",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8,<4.0",
            "size": 10687041,
            "upload_time": "2024-02-04T11:57:13",
            "upload_time_iso_8601": "2024-02-04T11:57:13.719151Z",
            "url": "https://files.pythonhosted.org/packages/54/5f/d2b034363c40ed890e0a258d85868704874b88c0a90b5def84cc1605cd97/python_orb_slam3-0.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ead392b9e8ea991330de75ea16d73c6f55f4c798fa56bb54147582b87ab200d",
                "md5": "59a0d5fe7533392d9c8854e77ba3bae3",
                "sha256": "b5c9811aee504480c8ade87cc4c140b66c6ce9dbc32f46746a9be43b92006612"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59a0d5fe7533392d9c8854e77ba3bae3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8,<4.0",
            "size": 13496402,
            "upload_time": "2024-02-04T11:57:16",
            "upload_time_iso_8601": "2024-02-04T11:57:16.206001Z",
            "url": "https://files.pythonhosted.org/packages/7e/ad/392b9e8ea991330de75ea16d73c6f55f4c798fa56bb54147582b87ab200d/python_orb_slam3-0.1.1-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30cabfdde0434c5d014416fad04dbe7c8e2f4fcbb67a4379e4af5e01161e9578",
                "md5": "2e7bad02bd5356596a64abbcecf88cfe",
                "sha256": "b320cbe16bc67affdd60c797de6aa00f851427f2f818ca43dae3307becdf3a6f"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp39-cp39-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e7bad02bd5356596a64abbcecf88cfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8,<4.0",
            "size": 13979046,
            "upload_time": "2024-02-04T11:57:18",
            "upload_time_iso_8601": "2024-02-04T11:57:18.523646Z",
            "url": "https://files.pythonhosted.org/packages/30/ca/bfdde0434c5d014416fad04dbe7c8e2f4fcbb67a4379e4af5e01161e9578/python_orb_slam3-0.1.1-cp39-cp39-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e81191be4e81156beea02ea3b02b4adf90355b7bd0d7b2d50df989e9da40c30e",
                "md5": "acd170ddaf7e3fbabd95e6a32fce4b1a",
                "sha256": "c98969f35c8c29cf783bcffdfa427f4c5addc7fd153cff8e3fe2621850b67189"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "acd170ddaf7e3fbabd95e6a32fce4b1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8,<4.0",
            "size": 10687243,
            "upload_time": "2024-02-04T11:57:20",
            "upload_time_iso_8601": "2024-02-04T11:57:20.795169Z",
            "url": "https://files.pythonhosted.org/packages/e8/11/91be4e81156beea02ea3b02b4adf90355b7bd0d7b2d50df989e9da40c30e/python_orb_slam3-0.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0977cda140756ab1267395c715fa22d8964817843c811df0663e5abd267ae10d",
                "md5": "dd05d4a4993c6cb0c6186d5d9e765f91",
                "sha256": "9b5361be5935589611e22a12da272dfd612cc1f5647e9a91886d5397329318ba"
            },
            "downloads": -1,
            "filename": "python_orb_slam3-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "dd05d4a4993c6cb0c6186d5d9e765f91",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 34832,
            "upload_time": "2024-02-04T11:57:23",
            "upload_time_iso_8601": "2024-02-04T11:57:23.125264Z",
            "url": "https://files.pythonhosted.org/packages/09/77/cda140756ab1267395c715fa22d8964817843c811df0663e5abd267ae10d/python_orb_slam3-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-04 11:57:23",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "python-orb-slam3"
}
        
Mix
Elapsed time: 0.26087s