LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Can you help me with a project involving capturing images from a thermal camera and comparing them between them

Hi, I'm working on a project in Labview where a camera with thermal vision saves me the current frame and then has to compare it with the next frame and so on, the purpose of this project is to check if they stay the same.
Taking a practical example, a person passes in front of the thermal camera and therefore detects his warm presence, it must give a signal that something has changed in the saved frames, when the person leaves it must again give a signal of change.
can you help me?

0 Kudos
Message 1 of 11
(553 Views)

what have you done so far ? 

try capturing simple images and see what kind of data you can use to detect the presence. 

 

 I assume that a person would give an image with higher temperature data. you can use this information to compare a frame with person or not person. 

 

Ricardo

 

0 Kudos
Message 2 of 11
(521 Views)

If you are using IMAQdx, use the IMAQ Image to Array VI to extract each image.  They are typically U16 unsigned arrays.  Convert them to I32 arrays to avoid integer wraparound.  Subtract the old image from the new image.  Count the number of pixels in the image subtracted array that are greater than some threshold value.  If the number of pixels above the threshold value is greater than a user selected minimum number of pixels, you can flag the image as changed.  Likewise, for something hot leaving the frame, use the same logic on negative changes.

0 Kudos
Message 3 of 11
(499 Views)

@snak3in wrote:

Hi, I'm working on a project in Labview where a camera with thermal vision saves me the current frame and then has to compare it with the next frame and so on, the purpose of this project is to check if they stay the same.
Taking a practical example, a person passes in front of the thermal camera and therefore detects his warm presence, it must give a signal that something has changed in the saved frames, when the person leaves it must again give a signal of change.


The picture will also change when the person is moving. Maybe all you need is take the average of all pixels and look for changes in level while ignoring drift e.g. due to changes in daytime and weather.

 

Do you have a series of sample pictures for testing?

0 Kudos
Message 4 of 11
(426 Views)

hi, yes I already have a program called Labview that captures the camera image but after that I don't know how to work with it in a practical sense, what should I use on Labview?

0 Kudos
Message 5 of 11
(391 Views)

You're right, maybe once it detects the first change I can put a button that should be pressed to reset the area when it's free so it starts doing its job of checking differences between images again.
For the tests I am actually using a thermal video camera connected to the wifi network which gives me the images in real time.

0 Kudos
Message 6 of 11
(389 Views)

ok thanks, I also had the same idea as yours in mind but I wasn't sure how to actually do it on labview, now I'll try and I hope I can do something 🙂

0 Kudos
Message 7 of 11
(384 Views)

@snak3in wrote:

Taking a practical example, a person passes in front of the thermal camera...


Not sure which libraries you using, but definitively would to recommend to take a look into VDM, especially to the example called "Object Tracking", then combine it with imaqdx "Acquire Every Image" example.

The code for tracking as simple as

snippet.png

And this is how it works:

walking.gif

 

Is this useful "as is" or not - depends on your images, may be you will need some preprocessing.

Example with images in the attachment.

Message 8 of 11
(362 Views)

@snak3in wrote:

hi, yes I already have a program called Labview that captures the camera image but after that I don't know how to work with it in a practical sense, what should I use on Labview?


LabVIEW is a programming environment, not the name of a program to capture images. How much programming experience do you have?

0 Kudos
Message 9 of 11
(346 Views)

sorry I translated bad, i wanted to say "I already have a program IN LabView ...." i have programming experience with other type of language, this is the first time I approach LabView

0 Kudos
Message 10 of 11
(325 Views)