Virtual Camera
Project description
Virtual Camera
Install
pip install virtual_camera
Instructions
Coordinate systems
| STYLE | X-Y-Z |
|---|---|
| MOTOVIS | right-forward-up |
| openGL | right-up-backward |
| camera | right-down-forward |
| pytorch3d | left-up-forward |
Create virtual cameras
Following are default virtual camera setups.
VCAMERA_PERSPECTIVE_FRONT = create_virtual_perspective_camera((1280, 960), (-90, 0, 0), (0, 1.5, 1.5))
VCAMERA_PERSPECTIVE_FRONT_LEFT = create_virtual_perspective_camera((1280, 960), (-90, 0, 45), (-1, 2, 1))
VCAMERA_PERSPECTIVE_FRONT_RIGHT = create_virtual_perspective_camera((1280, 960), (-90, 0, -45), (1, 2, 1))
VCAMERA_PERSPECTIVE_BACK = create_virtual_perspective_camera((1280, 960), (-90, 0, 180), (0, -1, 1))
VCAMERA_PERSPECTIVE_BACK_LEFT = create_virtual_perspective_camera((1280, 960), (-90, 0, 135), (-1, 2, 1))
VCAMERA_PERSPECTIVE_BACK_RIGHT = create_virtual_perspective_camera((1280, 960), (-90, 0, -135), (1, 2, 1))
VCAMERA_FISHEYE_FRONT = create_virtual_fisheye_camera((1024, 640), (-120, 0, 0), (0, 3.5, 0.5))
VCAMERA_FISHEYE_LEFT = create_virtual_fisheye_camera((1024, 640), (-135, 0, 90), (-1, 2, 1))
VCAMERA_FISHEYE_RIGHT = create_virtual_fisheye_camera((1024, 640), (-135, 0, -90), (1, 2, 1))
VCAMERA_FISHEYE_BACK = create_virtual_fisheye_camera((1024, 640), (-120, 0, 180), (0, -1, 0.5))
Convert from a real image
import yaml
import virtual_camera as vc
- Initialize the a camera from a real image and its calibration file.
yaml_file = 'data/calibration.yml'
cfg = yaml.safe_load(open(yaml_file, 'r'))
camera_real = vc.FisheyeCamera.init_from_motovis_cfg(cfg)
- Read the real image.
src_image = plt.imread('data/src_image.jpg')
- Convert the image to a virtual image. Alongside with mask.
dst_image, mask = vc.render_image(src_image, camera_real, vc.VCAMERA_PERSPECTIVE_FRONT)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
virtual_camera-1.1.0.tar.gz
(9.2 MB
view details)
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 virtual_camera-1.1.0.tar.gz.
File metadata
- Download URL: virtual_camera-1.1.0.tar.gz
- Upload date:
- Size: 9.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef7e3d84a0f589e19d9fffc7f2497efd2a20d75f9b02fa1835817290b3292708
|
|
| MD5 |
671f9a96d1825cc9c691ecb7500e260a
|
|
| BLAKE2b-256 |
009d139d855ae70f903dec7a1846d263637b39eac916bcf6117c370310c19dbb
|
File details
Details for the file virtual_camera-1.1.0-py3-none-any.whl.
File metadata
- Download URL: virtual_camera-1.1.0-py3-none-any.whl
- Upload date:
- Size: 205.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05abfb95f922bb7d4df2e2eb7f193f24a4f3b1c7a6ea9664a0eaec2015d179ce
|
|
| MD5 |
f45e20597cb6a63f1c8e47d0f0d3f7a4
|
|
| BLAKE2b-256 |
5dff5e851c7e0315494b0746e6a2e8f57db54292c86239024df86ae9db2d5945
|