How can I get a thermal-infrared image preview when acquiring from a FLIR IR camera with Image Acquisition Toolbox?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 27 de Abr. de 2016
Editada: MathWorks Support Team
el 8 de Nov. de 2024 a las 20:22
I am using a FLIR GigE Vision IR (thermal infrared) camera (for example FLIR A615, A645, A655, or other GigE Vision models).
In Image Acquisition Toolbox the default preview image is grayscale / shades of gray, with low contrast, although the camera image is focused.
How can I get a preview image that uses a colormap similar to a conventional thermal infrared image (not the default grayscale colormap)?
Respuesta aceptada
MathWorks Support Team
el 8 de Nov. de 2024 a las 0:00
Editada: MathWorks Support Team
el 8 de Nov. de 2024 a las 20:22
The following MATLAB example code enables the full bit depth mode for camera preview, and specifies a jet colormap for the preview image.
To specify a manual signal range for preview, uncomment the last code section.
v = videoinput('gige', 1, 'Mono16');% Set preview data to native camera bit depth (default is 8 bit)v.PreviewFullBitDepth = 'on';% Create a preview window and get image and axes handles
im = preview(v);
ax = im.Parent;
% Specify scaled grayscale data mapping to colormap
im.CDataMapping = 'scaled';
% Specify a colormap to display grayscale image mapped to RGB image
colormap(ax, jet);
% Specify auto detection of CData limits
ax.CLimMode = 'auto';
% Or, specify a fixed signal data range to display
% signalRange = [10000 20000];
% ax.CLim = signalRange;
If desired, a custom preview functionality can be implemented as described in the following documentation page:
Other predefined or custom colormaps can be used:
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!