reference
labkit.image.version
Return the LabKit image facade contract version.
Syntax
info = labkit.image.version()Description
Reports the semantic version and compatibility range of the public labkit.image API. Apps can use this structure to check whether the installed image facade satisfies a saved or declared requirement.
Inputs
None.
Outputs
info- Scalar structure returned by
labkit.contract.versionInfowith name, facade, current, compatible, status, and notes fields.
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.image.version();
currentVersion = info.current;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.image.adjustBrightnessContrast— Apply simple brightness and contrast adjustment.labkit.image.adjustHueSaturation— Apply HSV hue and saturation adjustment.labkit.image.assertSupportedPaths— Throw when any path has an unsupported image extension.labkit.image.displayName— Return a short image-file display name.labkit.image.ensureRgb— Return image data with exactly three color channels.labkit.image.fileDialogFilter— Return a file-chooser-compatible image filter.
Source
This page is generated from the MATLAB help text in +labkit/+image/version.m.