Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extrange range temperatures using Lepton3 #70

Open
Seikon opened this issue Apr 18, 2022 · 1 comment
Open

Extrange range temperatures using Lepton3 #70

Seikon opened this issue Apr 18, 2022 · 1 comment

Comments

@Seikon
Copy link

Seikon commented Apr 18, 2022

Hi, I am using Lepton 3.5 camera and Breakout board V2. When using pylepton and performing some statistics counts over frame (with my hand in front of the camera), I get these extange temperature ranges:

frame processed int 0.056710243225097656s, 17.63349869671235hz
Median: -65.83 °C
Min: -273.0°C
Max: -56.849999°C

And Here is the code to get these results:

def calculate(data):
    celsius = (data / 100) - 273
    
    medianT = np.median(celsius)
    minT = np.min(celsius)
    maxT = np.max(celsius)
    
    return (medianT, minT, maxT)

Could anybody help me? :) Thanks in advance!

PS: I am aware that the frame object is returning values in centikelvins (K * 100)

@Hakeem-AI
Copy link

@Seikon i am looking for the same solution. did you find the solution if you did kindly share with me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants