-
Notifications
You must be signed in to change notification settings - Fork 6
/
ReadImageJROI.m
568 lines (463 loc) · 17.5 KB
/
ReadImageJROI.m
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
function [sROI] = ReadImageJROI(cstrFilenames)
% ReadImageJROI - FUNCTION Read an ImageJ ROI into a matlab structure
%
% Usage: [sROI] = ReadImageJROI(strFilename)
% [cvsROIs] = ReadImageJROI(cstrFilenames)
% [cvsROIs] = ReadImageJROI(strROIArchiveFilename)
%
% This function reads the ImageJ binary ROI file format.
%
% 'strFilename' is the full path to a '.roi' file. A list of ROI files can be
% passed as a cell array of filenames, in 'cstrFilenames'. An ImageJ ROI
% archive can be access by providing a '.zip' filename in
% 'strROIArchiveFilename'. Single ROIs are returned as matlab structures, with
% variable fields depending on the ROI type. Multiple ROIs are returned as a
% cell array of ROI structures.
%
% The field '.strName' is guaranteed to exist, and contains the ROI name (the
% filename minus '.roi', or the name set for the ROI).
%
% The field '.strType' is guaranteed to exist, and defines the ROI type:
% {'Rectangle', 'Oval', Line', 'Polygon', 'Freehand', 'Traced', 'PolyLine',
% 'FreeLine', 'Angle', 'Point', 'NoROI'}.
%
% The field '.vnRectBounds' is guaranteed to exist, and defines the rectangular
% bounds of the ROI: ['nTop', 'nLeft', 'nBottom', 'nRight'].
%
% The field '.nVersion' is guaranteed to exist, and defines the version number
% of the ROI format.
%
% The field '.vnPosition' is guaranteed to exist. If the information is
% defined within the ROI, this field will be a three-element vector
% [nCPosition nZPosition nTPosition].
%
% ROI types:
% Rectangle:
% .strType = 'Rectangle';
% .nArcSize - The arc size of the rectangle's rounded corners
%
% For a composite, 'shape' ROI:
% .strSubtype = 'Shape';
% .vfShapeSegments - A long, complicated vector of complicated shape
% segments. This vector is in the format passed to the
% ImageJ ShapeROI constructor. I won't decode this for
% you! :(
%
% Oval:
% .strType = 'Oval';
%
% Line:
% .strType = 'Line';
% .vnLinePoints - The end points of the line ['nX1', 'nY1', 'nX2', 'nY2']
%
% With arrow:
% .strSubtype = 'Arrow';
% .bDoubleHeaded - Does the line have two arrowheads?
% .bOutlined - Is the arrow outlined?
% .nArrowStyle - The ImageJ style of the arrow (unknown interpretation)
% .nArrowHeadSize - The size of the arrowhead (unknown units)
%
% Polygon:
% .strType = 'Polygon';
% .mnCoordinates - An [Nx2] matrix, specifying the coordinates of
% the polygon vertices. Each row is [nX nY].
%
% Freehand:
% .strType = 'Freehand';
% .mnCoordinates - An [Nx2] matrix, specifying the coordinates of
% the polygon vertices. Each row is [nX nY].
%
% Ellipse subtype:
% .strSubtype = 'Ellipse';
% .vfEllipsePoints - A vector containing the ellipse control points:
% [fX1 fY1 fX2 fY2].
% .fAspectRatio - The aspect ratio of the ellipse.
%
% Traced:
% .strType = 'Traced';
% .mnCoordinates - An [Nx2] matrix, specifying the coordinates of
% the line vertices. Each row is [nX nY].
%
% PolyLine:
% .strType = 'PolyLine';
% .mnCoordinates - An [Nx2] matrix, specifying the coordinates of
% the line vertices. Each row is [nX nY].
%
% FreeLine:
% .strType = 'FreeLine';
% .mnCoordinates - An [Nx2] matrix, specifying the coordinates of
% the line vertices. Each row is [nX nY].
%
% Angle:
% .strType = 'Angle';
% .mnCoordinates - An [Nx2] matrix, specifying the coordinates of
% the angle vertices. Each row is [nX nY].
%
% Point:
% .strType = 'Point';
% .mfCoordinates - An [Nx2] matrix, specifying the coordinates of
% the points. Each row is [fX fY].
% .vnCounters - An [Nx1] vector, specifying which counter is
% associated with each point. May be empty.
% .vnSlices - An [Nx1] vector, specifying on which plane each
% point is on. These are specified as linear
% indices, with the hyperstack arranged as
% [Channels Z-slices T-slices]. If empty, then all
% points are placed on the first slice.
%
% NoROI:
% .strType = 'NoROI';
%
% Additionally, ROIs from later versions (.nVersion >= 218) may have the
% following fields:
%
% .nStrokeWidth - The width of the line stroke
% .nStrokeColor - The encoded color of the stroke (ImageJ color format)
% .nFillColor - The encoded fill color for the ROI (ImageJ color
% format)
%
% If the ROI contains text:
% .strSubtype = 'Text';
% .nFontSize - The desired font size
% .nFontStyle - The style of the font (unknown format)
% .strFontName - The name of the font to render the text with
% .strText - A string containing the text
% Author: Dylan Muir <[email protected]>
% Created: 9th August, 2011
%
% 20170118 Added code to read slice position for point ROIs
% 20141020 Added code to read 'header 2' fields; thanks to Luca Nocetti
% 20140602 Bug report contributed by Samuel Barnes and Yousef Mazaheri
% 20110810 Bug report contributed by Jean-Yves Tinevez
% 20110829 Bug fix contributed by Benjamin Ricca <[email protected]>
% 20120622 Order of ROIs in a ROI set is now preserved
% 20120703 Different way of reading zip file contents guarantees that ROI order
% is preserved
%
% Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016 Dylan Muir <[email protected]>
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License
% as published by the Free Software Foundation; either version 3
% of the License, or (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
% -- Constants
bOpt_SubPixelResolution = 128;
% -- Check arguments
if (nargin < 1)
disp('*** ReadImageJROI: Incorrect usage');
help ReadImageJROI;
return;
end
% -- Check for a cell array of ROI filenames
if (iscell(cstrFilenames))
% - Read each ROI in turn
cvsROI = cellfun(@ReadImageJROI, CellFlatten(cstrFilenames), 'UniformOutput', false);
% - Return all ROIs
sROI = cvsROI;
return;
else
% - This is not a cell string
strFilename = cstrFilenames;
clear cstrFilenames;
end
% -- Check for a zip file
[nul, nul, strExt] = fileparts(strFilename); %#ok<ASGLU>
if (isequal(lower(strExt), '.zip'))
% - get zp file contents
cstrFilenames_short = listzipcontents_rois(strFilename);
% - Unzip the file into a temporary directory
strROIDir = tempname;
unzip(strFilename, strROIDir);
for (nFileIndex = 1:length(cstrFilenames_short))
cstrFilenames{1, nFileIndex} = [strROIDir '/' char(cstrFilenames_short(nFileIndex, 1))];
end
% - Build ROIs for each file
cvsROIs = ReadImageJROI(cstrFilenames);
% - Clean up temporary directory
rmdir(strROIDir, 's');
% - Return ROIs
sROI = cvsROIs;
return;
end
% -- Read ROI
% -- Check file and open
if (~exist(strFilename, 'file'))
error('ReadImageJROI:FileNotFound', ...
'*** ReadImageJROI: The file [%s] was not found.', strFilename);
end
fidROI = fopen(strFilename, 'r', 'ieee-be');
% -- Check file magic code
strMagic = fread(fidROI, [1 4], '*char');
if (~isequal(strMagic, 'Iout'))
error('ReadImageJROI:FormatError', ...
'*** ReadImageJROI: The file was not an ImageJ ROI format.');
end
% -- Read version
sROI.nVersion = fread(fidROI, 1, 'int16');
% -- Read ROI type
nTypeID = fread(fidROI, 1, 'uint8');
fseek(fidROI, 1, 'cof'); % Skip a byte
% -- Read rectangular bounds
sROI.vnRectBounds = fread(fidROI, [1 4], 'int16');
% -- Read number of coordinates
nNumCoords = fread(fidROI, 1, 'uint16');
% -- Read the rest of the header
vfLinePoints = fread(fidROI, 4, 'float32');
nStrokeWidth = fread(fidROI, 1, 'int16');
nShapeROISize = fread(fidROI, 1, 'uint32');
nStrokeColor = fread(fidROI, 1, 'uint32');
nFillColor = fread(fidROI, 1, 'uint32');
nROISubtype = fread(fidROI, 1, 'int16');
nOptions = fread(fidROI, 1, 'int16');
nArrowStyle = fread(fidROI, 1, 'uint8');
nArrowHeadSize = fread(fidROI, 1, 'uint8');
nRoundedRectArcSize = fread(fidROI, 1, 'int16');
sROI.nPosition = fread(fidROI, 1, 'uint32');
% -- Read the 'header 2' fields
nHeader2Offset = fread(fidROI, 1, 'uint32');
if (nHeader2Offset > 0) && ~fseek(fidROI, nHeader2Offset+32+4, 'bof')
% - Seek to start of header 2
fseek(fidROI, nHeader2Offset+4, 'bof');
% - Read fields
sROI.vnPosition = fread(fidROI, 3, 'uint32')';
vnNameParams = fread(fidROI, 2, 'uint32')';
nOverlayLabelColor = fread(fidROI, 1, 'uint32'); %#ok<NASGU>
nOverlayFontSize = fread(fidROI, 1, 'int16'); %#ok<NASGU>
fseek(fidROI, 1, 'cof'); % Skip a byte
nOpacity = fread(fidROI, 1, 'uint8'); %#ok<NASGU>
nImageSize = fread(fidROI, 1, 'uint32'); %#ok<NASGU>
fStrokeWidth = fread(fidROI, 1, 'float32'); %#ok<NASGU>
vnROIPropertiesParams = fread(fidROI, 2, 'uint32')'; %#ok<NASGU>
nCountersOffset = fread(fidROI, 1, 'uint32');
else
sROI.vnPosition = [];
vnNameParams = [0 0];
nOverlayLabelColor = []; %#ok<NASGU>
nOverlayFontSize = []; %#ok<NASGU>
nOpacity = []; %#ok<NASGU>
nImageSize = []; %#ok<NASGU>
fStrokeWidth = []; %#ok<NASGU>
vnROIPropertiesParams = [0 0]; %#ok<NASGU>
nCountersOffset = 0;
end
% -- Set ROI name
if (isempty(vnNameParams) || any(vnNameParams == 0) || fseek(fidROI, sum(vnNameParams), 'bof'))
[nul, sROI.strName] = fileparts(strFilename); %#ok<ASGLU>
else
% - Try to read ROI name from header
fseek(fidROI, vnNameParams(1), 'bof');
sROI.strName = fread(fidROI, vnNameParams(2), 'int16=>char')';
end
% - Seek to get aspect ratio
fseek(fidROI, 52, 'bof');
fAspectRatio = fread(fidROI, 1, 'float32');
% - Seek to after header
fseek(fidROI, 64, 'bof');
% -- Build ROI
switch nTypeID
case 1
% - Rectangle
sROI.strType = 'Rectangle';
sROI.nArcSize = nRoundedRectArcSize;
if (nShapeROISize > 0)
% - This is a composite shape ROI
sROI.strSubtype = 'Shape';
if (nTypeID ~= 1)
error('ReadImageJROI:FormatError', ...
'*** ReadImageJROI: A composite ROI must be a Rectangle type.');
end
% - Read shapes
sROI.vfShapes = fread(fidROI, nShapeROISize, 'float32');
end
case 2
% - Oval
sROI.strType = 'Oval';
case 3
% - Line
sROI.strType = 'Line';
sROI.vnLinePoints = round(vfLinePoints);
if (nROISubtype == 2)
% - This is an arrow line
sROI.strSubtype = 'Arrow';
sROI.bDoubleHeaded = nOptions & 2;
sROI.bOutlined = nOptions & 4;
sROI.nArrowStyle = nArrowStyle;
sROI.nArrowHeadSize = nArrowHeadSize;
end
case 0
% - Polygon
sROI.strType = 'Polygon';
sROI.mnCoordinates = read_coordinates;
case 7
% - Freehand
sROI.strType = 'Freehand';
sROI.mnCoordinates = read_coordinates;
if (nROISubtype == 3)
% - This is an ellipse
sROI.strSubtype = 'Ellipse';
sROI.vfEllipsePoints = vfLinePoints;
sROI.fAspectRatio = fAspectRatio;
end
case 8
% - Traced
sROI.strType = 'Traced';
sROI.mnCoordinates = read_coordinates;
case 5
% - PolyLine
sROI.strType = 'PolyLine';
sROI.mnCoordinates = read_coordinates;
case 4
% - FreeLine
sROI.strType = 'FreeLine';
sROI.mnCoordinates = read_coordinates;
case 9
% - Angle
sROI.strType = 'Angle';
sROI.mnCoordinates = read_coordinates;
case 10
% - Point
sROI.strType = 'Point';
[sROI.mfCoordinates, vnCounters] = read_coordinates;
% - Set counters and [C Z T] positions
if (isempty(vnCounters))
sROI.vnCounters = zeros(nNumCoords, 1);
sROI.vnSlices = ones(nNumCoords, 1);
else
sROI.vnCounters = bitand(vnCounters, 255);
sROI.vnSlices = bitshift(vnCounters, -8, 'uint32');
end
case 6
sROI.strType = 'NoROI';
otherwise
error('ReadImageJROI:FormatError', ...
'--- ReadImageJROI: The ROI file contains an unknown ROI type.');
end
% -- Handle version >= 218
if (sROI.nVersion >= 218)
sROI.nStrokeWidth = nStrokeWidth;
sROI.nStrokeColor = nStrokeColor;
sROI.nFillColor = nFillColor;
sROI.bSplineFit = nOptions & 1;
if (nROISubtype == 1)
% - This is a text ROI
sROI.strSubtype = 'Text';
% - Seek to after header
fseek(fidROI, 64, 'bof');
sROI.nFontSize = fread(fidROI, 1, 'uint32');
sROI.nFontStyle = fread(fidROI, 1, 'uint32');
nNameLength = fread(fidROI, 1, 'uint32');
nTextLength = fread(fidROI, 1, 'uint32');
% - Read font name
sROI.strFontName = fread(fidROI, nNameLength, 'uint16=>char');
% - Read text
sROI.strText = fread(fidROI, nTextLength, 'uint16=>char');
end
end
% - Close the file
fclose(fidROI);
% --- END of ReadImageJROI FUNCTION ---
function [mnCoordinates, vnCounters] = read_coordinates
% - Check for sub-pixel resolution
if bitand(nOptions, bOpt_SubPixelResolution)
fseek(fidROI, 64 + 4*nNumCoords, 'bof');
% - Read X and Y coordinates
vnX = fread(fidROI, [nNumCoords 1], 'single');
vnY = fread(fidROI, [nNumCoords 1], 'single');
else
% - Read X and Y coords
vnX = fread(fidROI, [nNumCoords 1], 'int16');
vnY = fread(fidROI, [nNumCoords 1], 'int16');
% - Trim at zero
vnX(vnX < 0) = 0;
vnY(vnY < 0) = 0;
% - Offset by top left ROI bound
vnX = vnX + sROI.vnRectBounds(2);
vnY = vnY + sROI.vnRectBounds(1);
end
mnCoordinates = [vnX vnY];
% - Read counters, if present
if (nCountersOffset ~= 0)
fseek(fidROI, nCountersOffset, 'bof');
vnCounters = fread(fidROI, [nNumCoords 1], 'uint32');
else
vnCounters = [];
end
end
function [filelist] = listzipcontents_rois(zipFilename)
% listzipcontents_rois - FUNCTION Read the file names in a zip file
%
% Usage: [filelist] = listzipcontents_rois(zipFilename)
% - Import java libraries
import java.util.zip.*;
import java.io.*;
% - Read file list via JAVA object
filelist={};
in = ZipInputStream(FileInputStream(zipFilename));
entry = in.getNextEntry();
% - Filter ROI files
while (entry~=0)
name = entry.getName;
if (name.endsWith('.roi')) && (~name.startsWith('__MACOSX'))
filelist = cat(1,filelist,char(name));
end;
entry = in.getNextEntry();
end;
% - Close zip file
in.close();
end
function [cellArray] = CellFlatten(varargin)
% CellFlatten - FUNCTION Convert a list of items to a single level cell array
%
% Usage: [cellArray] = CellFlatten(arg1, arg2, ...)
%
% CellFlatten will convert a list of arguments into a single-level cell array.
% If any argument is already a cell array, each cell will be concatenated to
% 'cellArray' in a list. The result of this function is a single-dimensioned
% cell array containing a cell for each individual item passed to CellFlatten.
% The order of cell elements in the argument list is guaranteed to be
% preserved.
%
% This function is useful when dealing with variable-length argument lists,
% each item of which can also be a cell array of items.
% Author: Dylan Muir <[email protected]>
% Created: 14th May, 2004
% -- Check arguments
if (nargin == 0)
disp('*** CellFlatten: Incorrect usage');
help CellFlatten;
return;
end
% -- Convert arguments
% - Which elements contain cell subarrays?
vbIsCellSubarray = cellfun(@iscell, varargin, 'UniformOutput', true);
% - Skip if no cell subarrays
if ~any(vbIsCellSubarray)
cellArray = varargin;
return;
end
% - Recursively flatten subarrays
varargin(vbIsCellSubarray) = cellfun(@(c)CellFlatten(c{:}), varargin(vbIsCellSubarray), 'UniformOutput', false);
% - Count the total number of arguments
vnArgSizes(nargin) = nan;
vnArgSizes(~vbIsCellSubarray) = 1;
vnArgSizes(vbIsCellSubarray) = cellfun(@numel, varargin(vbIsCellSubarray), 'UniformOutput', true);
vnArgEnds = cumsum(vnArgSizes);
vnArgStarts = [1 vnArgEnds(1:end-1)+1];
nNumArgs = vnArgEnds(end);
% - Preallocate return array
cellArray = cell(1, nNumArgs);
% - Deal out non-cell subarray arguments
cellArray(vnArgEnds(~vbIsCellSubarray)) = varargin(~vbIsCellSubarray);
% - Deal out arguments into return array
for nIndexArg = find(vbIsCellSubarray)
cellArray(vnArgStarts(nIndexArg):vnArgEnds(nIndexArg)) = varargin{nIndexArg};
end
% --- END of CellFlatten.m ---
end
end
% --- END of ReadImageJROI.m ---