You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Tomasz,
Thank you very much for your answer concerning the script you have developped for temperature capture with Lepton 3.5.
Not being experienced in software development, I send you below a few questions:
How is captured the 16 bits flow of the Lepton camera ? Does the Python script command the camera (in line 47 to 67 or 218) ? Or do we have to send separate commands through the CCI channel ?
Which data contains the libuvc and how is it fed ?
Which command stops the flow ?
Have you an example of the temperature array (both link in your mail points to the script)
Which configuration is needed to run the script ? Is Lepton 3.5 with PureThermal2 connected via USB to a PC with windows 10 acceptable ?
Which software do we have to load (Python, openCV...) ?
Sorry to take your time by basic questions, but this could help the project a lot.
The text was updated successfully, but these errors were encountered:
The Lepton Camera with Purethermal board act together as a USB UVC device. So going line-by-line:
start_pt2() in Line 47 is responsible for finding and opening the device,
uvc_get_stream_ctrl_format_size() in line 67 sets capture parameters such as frame dimensions, format, frame interval, etc. So the Y16/ 16-bit grayscale format is set here.
py_frame_callback() in line 78 is the function that is called every time a new frame arrives, and puts the frames in a Queue. The Queue is there mostly to avoid waiting in the consumer thread (could be up to 1/(8.7Hz)=115ms
Line 218 is where we pop the ready frames from a Queue, and convert them to Celsius via ktoc()
Hi Tomasz,
Thank you very much for your answer concerning the script you have developped for temperature capture with Lepton 3.5.
Not being experienced in software development, I send you below a few questions:
How is captured the 16 bits flow of the Lepton camera ? Does the Python script command the camera (in line 47 to 67 or 218) ? Or do we have to send separate commands through the CCI channel ?
Which data contains the libuvc and how is it fed ?
Which command stops the flow ?
Have you an example of the temperature array (both link in your mail points to the script)
Which configuration is needed to run the script ? Is Lepton 3.5 with PureThermal2 connected via USB to a PC with windows 10 acceptable ?
Which software do we have to load (Python, openCV...) ?
Sorry to take your time by basic questions, but this could help the project a lot.
The text was updated successfully, but these errors were encountered: