reference
API Reference › Thermal Images
labkit.thermal.supportedExtensions
List the supported thermal filename extensions.
Syntax
extensions = labkit.thermal.supportedExtensions()Description
Returns the filename extensions recognized by the thermal file-selection and reading functions. JPEG is a container format, so a listed extension does not guarantee that a file contains FLIR radiometric data. Use labkit.thermal.inspectFile to check a particular file.
Outputs
extensions- String row vector [".jpg", ".jpeg", ".rjpg"]. Extensions are lowercase and include the leading period.
Failure Behavior
The function accepts no caller input and performs no file-system access. It returns the fixed facade extension list without a recoverable failure state.
Example
extensions = labkit.thermal.supportedExtensions();
pattern = "*" + strjoin(extensions, ";*");Related APIs
labkit.thermal.isSupportedPath— Test whether a path has a supported thermal extension.labkit.thermal.fileDialogFilter— Create a file-selection filter for thermal images.labkit.thermal.inspectFile— Check whether a file contains supported radiometric data.labkit.thermal.rawToTemperatureC— Convert FLIR raw sensor values to degrees Celsius.labkit.thermal.readFile— Read radiometric image data and convert it to degrees Celsius.labkit.thermal.readFiles— Read several radiometric image files.labkit.thermal.renderImage— Map a thermal matrix to an RGB image.labkit.thermal.version— Return version information for the thermal API.
Source
This page is generated from the MATLAB help text in +labkit/+thermal/supportedExtensions.m.