mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
42 lines
932 B
Python
42 lines
932 B
Python
# This work is licensed under the MIT license.
|
|
# Copyright (c) 2013-2023 OpenMV LLC. All rights reserved.
|
|
# https://github.com/openmv/openmv/blob/master/LICENSE
|
|
#
|
|
# Thermal Camera Demo
|
|
#
|
|
# This example shows off how to overlay a heatmap onto your OpenMV Cam's
|
|
# live video output from the main camera.
|
|
|
|
import image
|
|
import time
|
|
import fir
|
|
|
|
IMAGE_SCALE = 10 # Scale image to 10x.
|
|
drawing_hint = image.BICUBIC # or image.BILINEAR or 0 (nearest neighbor)
|
|
|
|
# Initialize the thermal sensor
|
|
fir.init()
|
|
|
|
if fir.type() == fir.FIR_AMG8833:
|
|
IMAGE_SCALE = IMAGE_SCALE * 2
|
|
|
|
# FPS clock
|
|
clock = time.clock()
|
|
|
|
while True:
|
|
clock.tick()
|
|
|
|
try:
|
|
img = fir.snapshot(
|
|
x_scale=IMAGE_SCALE,
|
|
y_scale=IMAGE_SCALE,
|
|
color_palette=image.PALETTE_IRONBOW,
|
|
hint=drawing_hint,
|
|
copy_to_fb=True,
|
|
)
|
|
except OSError:
|
|
continue
|
|
|
|
# Print FPS.
|
|
print(clock.fps())
|