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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file camproject-0.42.tar.gz.
File metadata
- Download URL: camproject-0.42.tar.gz
- Upload date:
- Size: 10.4 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 |
57bb4410978f4b508bc851ad0ab015fd9e6cf85a6d6b2abeecd5f3b8b9c52546
|
|
| MD5 |
a6490c478937dae21faeb162cd935784
|
|
| BLAKE2b-256 |
b27a3629efadf6575ee8a35b89604c5244b0364f921a660d297153dda6942a4d
|
File details
Details for the file camproject-0.42-py3-none-any.whl.
File metadata
- Download URL: camproject-0.42-py3-none-any.whl
- Upload date:
- Size: 10.6 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 |
e568d255b98c65362a260a6f7de3449e4c3e0a73db59b8b6d3230e0dec4b60de
|
|
| MD5 |
5d54f425ee93a18ca97e97597efa5e8e
|
|
| BLAKE2b-256 |
6fbb13ec6051c921b29efedd4d0c9bb57e9a61def76861be78cf28433936fd4a
|