A thermal recording is usually needed one frame at a time — the moment the bearing ran hot, the frame that goes in the report. This exports frames from a .csq file as PNG images, singly or as a batch in a ZIP archive, without FLIR software.
Open the recording, scrub to the frame you want, choose a palette, and save the image. The frame is rendered at the sensor's own resolution, so nothing is upscaled or interpolated on the way out.
A PNG is a picture of a measurement, not the measurement. The palette has already mapped temperature onto colour, and that mapping is not reliably invertible — so if the next step is analysis rather than a document, export the temperatures directly.
The viewer writes a frame's temperatures as a two-dimensional JSON array, one value per pixel in degrees Celsius, laid out row by row. That loads into NumPy, MATLAB, R or a spreadsheet without anything having to guess what a colour meant.
[[21.4, 21.5, 21.7, ...],
[21.3, 21.6, 22.0, ...],
...]This matters more for a batch than for a single frame. With per-frame scaling each image is stretched across its own minimum and maximum, so a frame where nothing is hot looks just as dramatic as one where something is — and the same colour means a different temperature in every image.
Use global scaling for a sequence meant to be read as a sequence. One range covers the whole recording, colours mean the same thing throughout, and change over time is something you can actually see.
Open the recording in CSQ Viewer, pick a palette, and use Batch export to choose a frame range. The server renders each frame and returns them together in a ZIP archive. A single frame can be saved straight from the viewer instead.
Yes. The viewer exports the frame’s temperatures as a two-dimensional JSON array, one value per pixel in degrees Celsius, which is the form to use for analysis rather than a rendered PNG.
Up to 960 frames per batch, which covers most thermal recordings in a single archive. Longer recordings can be exported in several passes by moving the frame range.
If you need help working with .CSQ files or thermal images and videos in general, feel free to contact me.