Python How can I control FLIR camera (tau 2.4) by using Python?

AI Thread Summary
Using Python to control a FLIR Tau 2.4 camera via USB is feasible, as the camera appears as a COM port in Device Manager. To begin, consult the camera's manual, particularly the Remote Control section, to understand the required baud rate and command structure. Testing commands through a terminal application like HyperTerminal can confirm the camera's responsiveness before implementing the commands in Python using the Pyserial library. This approach allows for effective communication with the camera and facilitates the development of a control program.
Nate Duong
Messages
125
Reaction score
4
Dear Forum,

I am trying to use Python to control FLIR camera (tau 2.4) but I do not know there is possible or not?

I say that because I see when I connect IR camera to the computer using USB, it shows COM port in the Device Manager and I've seen python possible to work with COM port through Pyserial, such as GPS, Arduino...

Anyone who has been working on this project before, please give me some advise!

Thank you very much.

 
Technology news on Phys.org
Usually, you need a driver and a library of functions that you can call in your program to control the device.

This is spelled out in the documentation of the instrument.
 
  • Like
Likes Silicon Waffle
Nate Duong said:
Dear Forum,

I am trying to use Python to control FLIR camera (tau 2.4) but I do not know there is possible or not?

I say that because I see when I connect IR camera to the computer using USB, it shows COM port in the Device Manager and I've seen python possible to work with COM port through Pyserial, such as GPS, Arduino...

Anyone who has been working on this project before, please give me some advise!

Thank you very much.
As Dr. C suggests, start by looking at the manual for the camera, specifically the section on Remote Control What baud rate does it expect? Can you open up a HyperTerminal window using that Com port (with all the settings correct), and type commands to get the camera to do what you want? Once you can test out commands with the HyperTerminal session, you should be able to code up what you want in Python.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top