reference
API Reference › Thermal Images
labkit.thermal.version
Return version information for the thermal API.
Syntax
info = labkit.thermal.version()Description
Reports the version and compatibility range used when an app declares a dependency on labkit.thermal. This is the API contract version, not the MATLAB release or the version of a particular thermal camera format.
Outputs
info- Scalar structure returned by
labkit.contract.versionInfo. name is "labkit.thermal"; facade is "thermal"; current is the current semantic version; compatible lists supported requirement ranges; status describes API maturity; and notes summarizes the module.
Failure Behavior
The function accepts no caller input. Invalid embedded facade metadata raises labkit:contract:InvalidVersionInfo; released metadata is validated by the contract test suite.
Example
info = labkit.thermal.version();
fprintf("Thermal API %s (%s)\n", info.current, info.status)Related APIs
labkit.contract.versionInfo— Describe one LabKit API version and its compatibility range.labkit.contract.checkRequirements— Compare required API ranges with available LabKit versions.labkit.thermal.fileDialogFilter— Create a file-selection filter for thermal images.labkit.thermal.inspectFile— Check whether a file contains supported radiometric data.labkit.thermal.isSupportedPath— Test whether a path has a supported thermal extension.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.
Source
This page is generated from the MATLAB help text in +labkit/+thermal/version.m.