Questions tagged [flir]

Questions using FLIR thermal imaging product SDK's.

Questions using FLIR (thermal) imaging product SDK's. This include Point Grey products as well; hence the brackets for "thermal".

73 questions
0
votes
0 answers

Allied Vision ALVIUM USB can not detected

I have connected 1 "Allied vision Alvium USB" cam, 1 "Allied vision Mako GIGE" cam and 5 "Flir GIGE" cam with Jetson AGX. When I run only Allied vision cam's image grabbing python script then it works properly, both USB and GIGE cam image's are…
suraj
  • 1
  • 1
0
votes
0 answers

How do relate or register the digital images to thermal images from FLIR

I have a thermal image of 460 X 480 the thermal image, and an digital image of that of 464 X 348 the digital image. And also an full image of 1280 X 960 the full digital image. I need to register or relate how the thermal image corresponds to the…
0
votes
0 answers

Python thread blocking during function call?

I am using FLIR Spinnaker python interface pyspin. I noticed that saving images takes a chunk of time and I want to Parallelize it so the system could be loading a new image while the current image is saving. My confusion is on if the python…
FourierFlux
  • 439
  • 5
  • 13
0
votes
0 answers

Access my GigE Camera with Python (by IP address)

Hy guys, I need help to access my FLIR camera data. I connect the camera to the pc by an Ethernet cable. I go to my Local Netwrok connection and configure, in Internet protocol version 4. Use the following IP address: IP address: 192.168.2.10 Subnet…
0
votes
1 answer

How to read SEQ files produced by FLIR thermal infrared cameras?

I have some thermal infrared videos in .SEQ format captures with a FLIR camera. I can view them using FLIR Tools software, but I would like to instead read them into python, with every frame of the video being a numpy array containing temperature…
Kat
  • 311
  • 1
  • 3
  • 11
0
votes
0 answers

OpenCV Python on Raspberry can't open camera by index. Device is busy

I am trying to stream the video feed of my FLIR Lepton to a webpage. I got myself some code that I don't yet fully understand. I am new to Flask. However, I got the camera working in VLC and a simple python script that captures 200 frames and saves…
0
votes
1 answer

Convert Output Thermal Camera to RGB in OpenCV

I'm working on Lepton 2.5. thermal camera. When I run the code below, the output is on greyscale (attached image 1).. Maybe somebody can help me to adjust this code so the output will be a RGB color (attached image 2). I really appreciate the…
amisotcm
  • 111
  • 3
  • 11
0
votes
1 answer

How to extract thermal frame from FLIR video export file?

I have a IR camera video file. I want to extract this video into n-frames. I followed normal opencv method to extract frames from video. like below, import cv2 vidcap = cv2.VideoCapture('3.mp4') success,image = vidcap.read() count = 0 while…
Mohamed Thasin ah
  • 10,754
  • 11
  • 52
  • 111
0
votes
1 answer

inaccurate colormap [FLIR TOOLS] in .jpeg thermal image

I am currently working on a project with a thermal datasets I found online. Basically I just need to extract the .csv from the thermal image. Because the datasets only provide the jpg format, I tried to use the FLIR TOOLS to get the temperature…
wlsonf
  • 51
  • 2
  • 8
0
votes
1 answer

Spinnaker sdk convert image to Opencv format Python

i have a Flir A615 camera and im getting data from it with this code: image_result = cam.GetNextImage() image_data = image_result.GetNDArray() then to show im using matplotlib plt.imshow(image_data, cmap='afmhot') but i cant use it on opencv…
Jasar Orion
  • 626
  • 7
  • 26
0
votes
1 answer

Trying to build a script on python for FLIR lepton camera

I'm trying to build a script with GUI in windows by pycharm that will do: The GUI will be like a form with details. A button that will turn on the camera By clicking the button the camera will shoot a video for 60 seconds. Saving the video and…
0
votes
1 answer

How to get the values of temperature from FLIR AX8 Camera using Modbus TCP/IP

I am trying to get the values of the temperature from FLIR AX8 camera using Modbus TCP/IP. In the document (page 67) I can see that the temperature register is 1019-1020. But when I try to query this register, I get no response. Below is the…
S Andrew
  • 5,592
  • 27
  • 115
  • 237
0
votes
0 answers

Is there a way to convert an image in the FLIR proprietary .seq format into .png?

I'm trying to convert a frame in .SEQ format into .PNG I used the pleora ebus-sdk to automatically find and connect to my gigE FLIR camera. Then I used: PvBuffer* data = (PvBuffer*)myFLIR.GetFrameData(); void* data1 =…
sensationti
  • 195
  • 1
  • 9
0
votes
0 answers

Image stitching distorted wrap with multiple images

I am working on a project which requires me to stitch images together. I decided to test this with buildings due to a large number of possible key points that can be calculated. I have been following several guides, but the one with the best results…
Sai Peri
  • 339
  • 1
  • 3
  • 17
0
votes
0 answers

Stitching thermal image with metadata integrity

I am working on a project which use thermal imagery. I have found scripts to be able to extract temperature data from the pixel values within the image. I run exiftool on the image and get the following output, confirming that the image was taken…
Sai Peri
  • 339
  • 1
  • 3
  • 17