Loading [MathJax]/extensions/tex2jax.js

You are here: Start » Program Examples » Heater Control

Heater Control

Aim:

The task is to emulate heater control with HMI and interpret data from a thermal camera monitoring the heater. Data should be presented as a heatmap. The Temperature of the heater should be measured in Celsius degrees.

Input:

Raw data from a thermal camera, and inputs from the HMI.

Output:

Data from the thermal camera showed as a Heatmap, and the measurement of the temperature of the heater in Celsius degrees.

Hints:

Data from the thermal camera contains a temperature value for each pixel, with can be displayed as a picture, but a formula provided from the camera manufacturer must be used to transform this data into Celsius degrees. This formula is:

C = X*0.04 - 273.15

The result image can be converted to HeatMap with the ColorizeImage filter.

To measure the temperature of the heater, a custom region needs to be prepared that matches the heater area, and not the background.

Solution (FIS):

►Click here to show the solution.

Further Readings