Skip to content

ed-wright/lucam

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Teledyne Lumenera(r) USB Camera Interface

Lucam is a Python library that provides two interfaces to the Teledyne Lumenera(r) LuCam API:

  • API, a low level ctypes interface to the lucamapi.dll version 5, exposing the definitions/declarations found in the lucam.h C header.
  • Lucam, a high level object interface wrapping most of the ctypes interface, featuring exception based error handling and numpy.array type images.
Author:Christoph Gohlke
Organization:Laboratory for Fluorescence Dynamics. University of California, Irvine
License:BSD 3-Clause
Version:2020.1.2

Requirements

Revisions

2020.1.1
Remove support for Python 2.7 and 3.5. Update copyright.

2020.1.2

Notes

"Lumenera" is a registered trademark of Teledyne Lumenera (1).

Lucam is no longer being actively developed.

Lucam has been tested with the Lu165M, L075M, LT545RM, Lt-M2420 and Lt-M2450 all of which are monochrome camera, Windows is the only OS that this library has been tested on.

Some LuCam API functions are not available in the Lucam wrapper due to lack of documentation or hardware for testing.

Naming of functions, methods, and constants that have an equivalent in the LuCam API follows the LuCam API conventions, else PEP8 is followed.

References

  1. Teledyne Lumenera Corporation
  2. Lumenera USB Camera API Reference Manual Release 5.0. Lumenera Corporation.

Examples

>>> from lucam import Lucam
>>> camera = Lucam()
>>> image = camera.TakeSnapshot()
>>> camera.SaveImage(image, 'test.tif')
>>> camera.CameraClose()

Refer to the test() function at the end of the module for more examples.

About

Lumenera(r) USB Camera Interface. Forked from https://pypi.org/project/lucam

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%