readpcfimage


The readpcfimage function reads a TechnoTeam luminance camera XYZ colour .pcf image file.

Usage:

[im,info] = readpcfimage(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 .pcf image and plot luminance data:

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

See also: plotfalsecolours

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.