a camera projection lib to calculate the ray direction of a pixel and vice versa
Project description
camproject
a python module for camera projection and reprojection
Maintainer
- Martin Israel m.israel@thermaldrones.de
Requirements
- python 2.6, 2.7, or 3.x
- NumPy
Installation
The easiest way is to install it from Pypi with:
$ pip install camproject
To install system-wide from source distribution:
$ python setup.py install
Quickstart-Usage
import numpy as np
import camproject
P = np.array([[1],[0],[10],[1]]) # this is a point in 3D (e.g. in meters)
cam = camproject.Camera()
cam.intrinsics(640,512,1000,320,260) # inner parameters: (in pixels)
# (im_width,im_height, focal_length, centerpixel_x, centerpixel_y)
cam.attitudeMat(np.eye(4)) # outer parameters: point to z-direction
p = cam.project(P) # gives pixel coordinates on the image
to reproject it back to the 3D world we use this code
Q = cam.reprojectToPlane(p)
Documentation
- documentation can be found at https://camproject.readthedocs.io/en/latest/
- If you acquired this code via GitHub, then you can build the documentation using sphinx.
From the documentation directory, run:
$ make html
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
camproject-0.41.tar.gz
(10.3 kB
view details)
Built Distribution
camproject-0.41-py3-none-any.whl
(10.5 kB
view details)
File details
Details for the file camproject-0.41.tar.gz
.
File metadata
- Download URL: camproject-0.41.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eac7253380e2e8979d7b8090aef4f5de87535c2d029b79ba2d72dd29cccb5205 |
|
MD5 | a116c5b3cd42d8e1ddc20ced9973f0e6 |
|
BLAKE2b-256 | 016fc44a0c299b301e6a243c7c27c216c2c0b6075c651035eb9c14dcc8511c18 |
File details
Details for the file camproject-0.41-py3-none-any.whl
.
File metadata
- Download URL: camproject-0.41-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0489d5cbd08161d6b7d05cde4264340c0277bd79f669c9944497e254f3f8194 |
|
MD5 | 017375e65c31a9e5c02e6d1aff4d1dc5 |
|
BLAKE2b-256 | bda2b83d6201f5c85e796d6584c800f2d265ee886e40014aea34adf7d3d8763f |