Skip to content

da-nie/LeptonModule

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LeptonModule

The FLIR Lepton™ is the most compact longwave infrared (LWIR) sensor available as an OEM product. It packs a resolution of 80 × 60 pixels into a camera body that is smaller than a dime. This revolutionary camera core is poised to equip a new generation of mobile and handheld devices, as well as small fixed-mount camera systems, with thermal imaging capabilities never seen before. Lepton contains a breakthrough lens fabricated in wafer form, along with a microbolometer focal plane array (FPA) and advanced thermal image processing.

More Information https://groupgets.com/manufacturers/flir/products/flir-lepton

beagleboneblack_video

This example is for the Beagle Bone Black board and runs a basic video feed. Requires the device's SPI0 tree to be exported to a slot before running. Steps are outlined within this directory.

raspberrypi_capture

This is for the raspberry pi, you have to enable the spi and i2c ports first for this code to work.

  1. sudo vi /etc/modules
  2. add # in front of spi-bcm2708 and ic2-dev
  3. to compile the code just run "gcc raspberry_pi_capture.c"
  4. to capture an image run "sudo ./a.out"
  5. a file called image.pgm will be created, you can use GIMP to view the image

See the wiki page for more information: https://github.com/groupgets/LeptonModule/wiki

Software modules:

arduino_i2c

This example shows how to read the i2c ports using an Arduino. Note that most Arduino hardware does not have enough memory to buffer the thermal image. 80602 = 9600 bytes. Some of the Arm based units will work.

STM32F3Discovery_ChibiOS

Download and install ChibiOS_2.6.5 into the same directory first. This example takes the SPI data stream from the Lepton module, buffers it and send it out the USB VCP device. On the PC the binary stream of data can be parsed easily by looking for the 0xdeadbeef header on each frame.

stm32nucleo_401re

This example shows how to read stream photos at the rate of about 1 every 2 seconds from the $10 STM32nucleo 401 RE development board. This example uses the mbed toolchain, an extremely simple to use web based IDE.

ThermalView

This super simple win32 example shows how draw the images onto the screen of a windows computer. This software is compiled using MinGW toolchain.

edison_capture

This example shows how to capture a still image from the lepton using Intel Edison.

v4l2lepton

This simple program will stream frames from the Lepton to a v4l2loopback device. Very useful for interacting with the Lepton in the same way you would a webcam. This was created mainly for use on Raspberry Pi with the original breakout board.

Python

If you'd like to use the breakout board with Python on Linux, check out the pylepton project: https://github.com/groupgets/pylepton

About

Code for getting started with the FLIR Lepton breakout board

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 77.8%
  • C++ 18.7%
  • Makefile 1.9%
  • Objective-C 1.3%
  • QMake 0.3%
  • Shell 0.0%