-
Notifications
You must be signed in to change notification settings - Fork 0
/
freadenvi 0926 origin.cpp
96 lines (94 loc) · 2.92 KB
/
freadenvi 0926 origin.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
function [image,p,t]=freadenvi(fname)
% freadenvi - read envi image (V. Guissard, Apr 29 2004)
%
% Reads an image of ENVI standard type
% to a [col x line x band] MATLAB array
% image=freadenvi(fname)
% [image,p]=freadenvi(fname)
% [image,p,t]=freadenvi(fname)
%
% INPUT :
%
% fname string giving the full pathname of the ENVI image to read.
%
% OUTPUT :
%
% image----------- c by l by b array containing the ENVI image values organised in
% c : cols, l : lines and b : bands.
% p 1 by 3 vector that contains (1) the nb of cols, (2) the number.
% of lines and (3) the number of bands of the opened image.
%
% t string describing the image data type string in MATLAB conventions.
%
% NOTE : freadenvi needs the corresponding image header file generated
% automatically by ENVI. The ENVI header file must have the same name
% as the ENVI image file + the '.hdf' exention.
%
%%%%%%%%%%%%%
% Parameters initialization
elements={'samples ' 'lines ' 'bands ' 'data type '};
d={'uint8' 'int16' 'int32' 'single' 'double' 'uint16' 'uint32' 'int64' 'uint64'};
% Check user input
dir
if ~ischar(fname)
error('fname should be a char string');
end
[pathstr, name, ext, versn] = fileparts(fname);
% Open ENVI header file to retreive s, l, b & d variables
rfid = fopen(strcat(pathstr,'\',name,'.hdr'),'r');
% Check if the header file is correctely open
if rfid == -1
error('Input header file does not exist');
end;
% Read ENVI image header file and get p(1) : nb samples,
% p(2) : nb lines, p(3) : nb bands and t : data type
while 1
tline = fgetl(rfid);
if ~ischar(tline), break, end
[first,second]=strtok(tline,'=');
switch first
case elements(1)
[token,s]=strtok(second);
p(1)=str2double(s);
case elements(2)
[token,s]=strtok(second);
p(2)=str2double(s);
case elements(3)
[token,s]=strtok(second);
p(3)=str2double(s);
case elements(4)
[token,s]=strtok(second);
t=str2double(s);
switch t
case 1
t=d(1);
case 2
t=d(2);
case 3
t=d(3);
case 4
t=d(4);
case 5
t=d(5);
case 12
t=d(6);
case 13
t=d(7);
case 14
t=d(8);
case 15
t=d(9);
otherwise
error('Unknown image data type');
end
end
end
fclose(rfid);
t=t{1,1};
% Open the ENVI image and store it in the 'image' MATLAB array
disp([('Opening '),(num2str(p(1))),(' cols x '),(num2str(p(2))),(' lines x '),(num2str(p(3))),(' bands')]);
disp([('of type '), (t), (' image...')]);
fid=fopen(fname);
image=fread(fid,t);
image=reshape(image,[p(1),p(2),p(3)]);
fclose(fid);