- Video display
This can be an SPI LCD or similar, as well as NTSC/PAL or HDMI, however the use of SPI might slow down the lepton fram rate (until we have a kernel driver that can do spi-dma; the TFT can, the usermode spi can't).
The odroid-w is a compact pi clone with a tft backpack and battery, there are similar (larger) ones. See
adafruit.com for products and tutorials.
I also have a "tft car display". They are about the same price, but the car display has a mirror mode so the image is as if I'm looking into a mirror (left-right is direct instead of exchanged).
- Hold and save frame as image
We get the raw values. My grayscale PNG save does this, as well as my BMP. These can be processed and converted. Or even stored as a lossless video stream.
- Palletes: BW, ironbow, rainbow
This is simply the lookup table
- Calibrating, temperature scale display
1) We need to draw temperature color scale on the screen for reference. Is it possible?
Can radiometry help us (Datasheet 8.4)? I see curve plot in the doc, but it captioned as hypothetical...
2) If color scale requires calibration, how can we calibrate Lepthon before using?
May be we can use some plate with attached thermal sensor? Or even heated plate?
This I'm unsure of, but I think it is linear (or close enough) so you would need one known temp. It is normally done by closing a shutter with an accurate temp sensor to get a baseline.
This would be useful in a contour mode where the colors would loop every 10 or 20 degrees F or C. The color itself would show the lowest digit ofmthe temp.
3) What about overlaying transparent image from webcamera?
I'm doing it with the pi camera, there is a mode to overlay video, but a usb webcam could work as well, just read and merge the frames.