Coder Social home page Coder Social logo

camera's Introduction

camproject

a python module for camera projection and reprojection

Maintainer

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,distance=10) 

Documentation

  • documentation can be found at https://martin-israel.de/doc/camera
  • If you acquired this code via GitHub, then you can build the documentation using sphinx. From the documentation directory, run: $ make html

camera's People

Contributors

easyisrael avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.