readpfimage

The readpfimage function reads a TechnoTeam luminance camera .pf image file.

Usage:

[im,info] = readpfimage(filename)

Where:

ParameterDescription
imIs the returned image matrix.
infoContains the file header information.
filenameSpecifies the file. An empty function call opens a popup menu for file selection.

Examples

Load .pf image and plot luminance data:

% select image file
[file,path] = uigetfile('*.pf');
% load image
im = readpfimage([path file]);
% plot image
plotfalsecolours(im,'log','luminance in cd m^{-2}')

See also: plotfalsecolours

Exemplary result:

Load .pf image and plot a visual illustration in greyscales:

% select image file
[file,path] = uigetfile('*.pf');
% load image
im = readpfimage([path file]);
% plot image
plotpfimage(im)

See also: plotpfimage

Exemplary Result:


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.