-
Notifications
You must be signed in to change notification settings - Fork 2
/
dm3lib_v120.py
856 lines (739 loc) · 28.5 KB
/
dm3lib_v120.py
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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
#!/usr/bin/python
"""Python module for parsing GATAN DM3 files"""
################################################################################
## Python script for parsing GATAN DM3 (DigitalMicrograph) files
## --
## based on the DM3_Reader plug-in (v 1.3.4) for ImageJ
## by Greg Jefferis <jefferis@stanford.edu>
## http://rsb.info.nih.gov/ij/plugins/DM3_Reader.html
## --
## Python adaptation: Pierre-Ivan Raynal <raynal@univ-tours.fr>
## http://microscopies.med.univ-tours.fr/
################################################################################
from __future__ import print_function
import sys
import os
import struct
from PIL import Image
import numpy
__all__ = ["DM3", "VERSION", "SUPPORTED_DATA_TYPES"]
VERSION = '1.2'
debugLevel = 0 # 0=none, 1-3=basic, 4-5=simple, 6-10 verbose
## check for Python version
PY3 = (sys.version_info[0] == 3)
## - adjust for Python3
if PY3:
# unicode() deprecated in Python 3
unicode_str = str
else:
unicode_str = unicode
### utility fuctions ###
### binary data reading functions ###
def readLong(f):
"""Read 4 bytes as integer in file f"""
read_bytes = f.read(4)
return struct.unpack('>l', read_bytes)[0]
def readShort(f):
"""Read 2 bytes as integer in file f"""
read_bytes = f.read(2)
return struct.unpack('>h', read_bytes)[0]
def readByte(f):
"""Read 1 byte as integer in file f"""
read_bytes = f.read(1)
return struct.unpack('>b', read_bytes)[0]
def readBool(f):
"""Read 1 byte as boolean in file f"""
read_val = readByte(f)
return (read_val!=0)
def readChar(f):
"""Read 1 byte as char in file f"""
read_bytes = f.read(1)
return struct.unpack('c', read_bytes)[0]
def readString(f, len_=1):
"""Read len_ bytes as a string in file f"""
read_bytes = f.read(len_)
str_fmt = '>'+str(len_)+'s'
return struct.unpack( str_fmt, read_bytes )[0]
def readLEShort(f):
"""Read 2 bytes as *little endian* integer in file f"""
read_bytes = f.read(2)
return struct.unpack('<h', read_bytes)[0]
def readLELong(f):
"""Read 4 bytes as *little endian* integer in file f"""
read_bytes = f.read(4)
return struct.unpack('<l', read_bytes)[0]
def readLEUShort(f):
"""Read 2 bytes as *little endian* unsigned integer in file f"""
read_bytes = f.read(2)
return struct.unpack('<H', read_bytes)[0]
def readLEULong(f):
"""Read 4 bytes as *little endian* unsigned integer in file f"""
read_bytes = f.read(4)
return struct.unpack('<L', read_bytes)[0]
def readLEFloat(f):
"""Read 4 bytes as *little endian* float in file f"""
read_bytes = f.read(4)
return struct.unpack('<f', read_bytes)[0]
def readLEDouble(f):
"""Read 8 bytes as *little endian* double in file f"""
read_bytes = f.read(8)
return struct.unpack('<d', read_bytes)[0]
## constants for encoded data types ##
SHORT = 2
LONG = 3
USHORT = 4
ULONG = 5
FLOAT = 6
DOUBLE = 7
BOOLEAN = 8
CHAR = 9
OCTET = 10
STRUCT = 15
STRING = 18
ARRAY = 20
# - association data type <--> reading function
readFunc = {
SHORT: readLEShort,
LONG: readLELong,
USHORT: readLEUShort,
ULONG: readLEULong,
FLOAT: readLEFloat,
DOUBLE: readLEDouble,
BOOLEAN: readBool,
CHAR: readChar,
OCTET: readChar, # difference with char???
}
## list of image DataTypes ##
dataTypes = {
0: 'NULL_DATA',
1: 'SIGNED_INT16_DATA',
2: 'REAL4_DATA',
3: 'COMPLEX8_DATA',
4: 'OBSELETE_DATA',
5: 'PACKED_DATA',
6: 'UNSIGNED_INT8_DATA',
7: 'SIGNED_INT32_DATA',
8: 'RGB_DATA',
9: 'SIGNED_INT8_DATA',
10: 'UNSIGNED_INT16_DATA',
11: 'UNSIGNED_INT32_DATA',
12: 'REAL8_DATA',
13: 'COMPLEX16_DATA',
14: 'BINARY_DATA',
15: 'RGB_UINT8_0_DATA',
16: 'RGB_UINT8_1_DATA',
17: 'RGB_UINT16_DATA',
18: 'RGB_FLOAT32_DATA',
19: 'RGB_FLOAT64_DATA',
20: 'RGBA_UINT8_0_DATA',
21: 'RGBA_UINT8_1_DATA',
22: 'RGBA_UINT8_2_DATA',
23: 'RGBA_UINT8_3_DATA',
24: 'RGBA_UINT16_DATA',
25: 'RGBA_FLOAT32_DATA',
26: 'RGBA_FLOAT64_DATA',
27: 'POINT2_SINT16_0_DATA',
28: 'POINT2_SINT16_1_DATA',
29: 'POINT2_SINT32_0_DATA',
30: 'POINT2_FLOAT32_0_DATA',
31: 'RECT_SINT16_1_DATA',
32: 'RECT_SINT32_1_DATA',
33: 'RECT_FLOAT32_1_DATA',
34: 'RECT_FLOAT32_0_DATA',
35: 'SIGNED_INT64_DATA',
36: 'UNSIGNED_INT64_DATA',
37: 'LAST_DATA',
}
## supported Data Types
dT_supported = [1, 2, 6, 7, 9, 10, 11, 14]
SUPPORTED_DATA_TYPES = {i: dataTypes[i] for i in dT_supported}
## other constants ##
IMGLIST = "root.ImageList."
OBJLIST = "root.DocumentObjectList."
MAXDEPTH = 64
DEFAULTCHARSET = 'utf-8'
## END constants ##
class DM3(object):
"""DM3 object. """
## utility functions
def _makeGroupString(self):
tString = str(self._curGroupAtLevelX[0])
for i in range( 1, self._curGroupLevel+1 ):
tString += '.{}'.format(self._curGroupAtLevelX[i])
return tString
def _makeGroupNameString(self):
tString = self._curGroupNameAtLevelX[0]
for i in range( 1, self._curGroupLevel+1 ):
tString += '.' + str( self._curGroupNameAtLevelX[i] )
return tString
def _readTagGroup(self):
# go down a level
self._curGroupLevel += 1
# increment group counter
self._curGroupAtLevelX[self._curGroupLevel] += 1
# set number of current tag to -1
# --- readTagEntry() pre-increments => first gets 0
self._curTagAtLevelX[self._curGroupLevel] = -1
if ( debugLevel > 5):
print("rTG: Current Group Level:", self._curGroupLevel)
# is the group sorted?
sorted_ = readByte(self._f)
isSorted = (sorted_ == 1)
# is the group open?
opened = readByte(self._f)
isOpen = (opened == 1)
# number of Tags
nTags = readLong(self._f)
if ( debugLevel > 5):
print("rTG: Iterating over the", nTags, "tag entries in this group")
# read Tags
for i in range( nTags ):
self._readTagEntry()
# go back up one level as reading group is finished
self._curGroupLevel += -1
return 1
def _readTagEntry(self):
# is data or a new group?
data = readByte(self._f)
isData = (data == 21)
self._curTagAtLevelX[self._curGroupLevel] += 1
# get tag label if exists
lenTagLabel = readShort(self._f)
if ( lenTagLabel != 0 ):
tagLabel = readString(self._f, lenTagLabel).decode('latin-1')
else:
tagLabel = str( self._curTagAtLevelX[self._curGroupLevel] )
if ( debugLevel > 5):
print("{}|{}:".format(self._curGroupLevel, self._makeGroupString()),
end=' ')
print("Tag label = "+tagLabel)
elif ( debugLevel > 1 ):
print(str(self._curGroupLevel)+": Tag label = "+tagLabel)
if isData:
# give it a name
self._curTagName = self._makeGroupNameString()+"."+tagLabel
# read it
self._readTagType()
else:
# it is a tag group
self._curGroupNameAtLevelX[self._curGroupLevel+1] = tagLabel
self._readTagGroup() # increments curGroupLevel
return 1
def _readTagType(self):
delim = readString(self._f, 4).decode('latin-1')
if ( delim != '%%%%' ):
raise Exception(hex( self._f.tell() )
+ ": Tag Type delimiter not %%%%")
nInTag = readLong(self._f)
self._readAnyData()
return 1
def _encodedTypeSize(self, eT):
# returns the size in bytes of the data type
if eT == 0:
width = 0
elif eT in (BOOLEAN, CHAR, OCTET):
width = 1
elif eT in (SHORT, USHORT):
width = 2
elif eT in (LONG, ULONG, FLOAT):
width = 4
elif eT == DOUBLE:
width = 8
else:
# returns -1 for unrecognised types
width = -1
return width
def _readAnyData(self):
## higher level function dispatching to handling data types
## to other functions
# - get Type category (short, long, array...)
encodedType = readLong(self._f)
# - calc size of encodedType
etSize = self._encodedTypeSize(encodedType)
if ( debugLevel > 5):
print("rAnD, " + hex( self._f.tell() ) + ":", end=' ')
print("Tag Type = " + str(encodedType) + ",", end=' ')
print("Tag Size = " + str(etSize))
if ( etSize > 0 ):
self._storeTag( self._curTagName,
self._readNativeData(encodedType, etSize) )
elif ( encodedType == STRING ):
stringSize = readLong(self._f)
self._readStringData(stringSize)
elif ( encodedType == STRUCT ):
# does not store tags yet
structTypes = self._readStructTypes()
self._readStructData(structTypes)
elif ( encodedType == ARRAY ):
# does not store tags yet
# indicates size of skipped data blocks
arrayTypes = self._readArrayTypes()
self._readArrayData(arrayTypes)
else:
raise Exception("rAnD, " + hex(self._f.tell())
+ ": Can't understand encoded type")
return 1
def _readNativeData(self, encodedType, etSize):
# reads ordinary data types
if encodedType in readFunc:
val = readFunc[encodedType](self._f)
else:
raise Exception("rND, " + hex(self._f.tell())
+ ": Unknown data type " + str(encodedType))
if ( debugLevel > 3 ):
print("rND, " + hex(self._f.tell()) + ": " + str(val))
elif ( debugLevel > 1 ):
print(val)
return val
def _readStringData(self, stringSize):
# reads string data
if ( stringSize <= 0 ):
rString = ""
else:
if ( debugLevel > 3 ):
print("rSD @ " + str(self._f.tell()) + "/" + hex(self._f.tell()) +" :", end=' ')
rString = readString(self._f, stringSize)
# /!\ UTF-16 unicode string => convert to Python unicode str
rString = rString.decode('utf-16-le')
if ( debugLevel > 3 ):
print(rString + " <" + repr( rString ) + ">")
if ( debugLevel > 1 ):
print("StringVal:", rString)
self._storeTag( self._curTagName, rString )
return rString
def _readArrayTypes(self):
# determines the data types in an array data type
arrayType = readLong(self._f)
itemTypes = []
if ( arrayType == STRUCT ):
itemTypes = self._readStructTypes()
elif ( arrayType == ARRAY ):
itemTypes = self._readArrayTypes()
else:
itemTypes.append( arrayType )
return itemTypes
def _readArrayData(self, arrayTypes):
# reads array data
arraySize = readLong(self._f)
if ( debugLevel > 3 ):
print("rArD, " + hex( self._f.tell() ) + ":", end=' ')
print("Reading array of size = " + str(arraySize))
itemSize = 0
encodedType = 0
for i in range( len(arrayTypes) ):
encodedType = int( arrayTypes[i] )
etSize = self._encodedTypeSize(encodedType)
itemSize += etSize
if ( debugLevel > 5 ):
print("rArD: Tag Type = " + str(encodedType) + ",", end=' ')
print("Tag Size = " + str(etSize))
##! readNativeData( encodedType, etSize ) !##
if ( debugLevel > 5 ):
print("rArD: Array Item Size = " + str(itemSize))
bufSize = arraySize * itemSize
if ( (not self._curTagName.endswith("ImageData.Data"))
and ( len(arrayTypes) == 1 )
and ( encodedType == USHORT )
and ( arraySize < 256 ) ):
# treat as string
val = self._readStringData( bufSize )
else:
# treat as binary data
# - store data size and offset as tags
self._storeTag( self._curTagName + ".Size", bufSize )
self._storeTag( self._curTagName + ".Offset", self._f.tell() )
# - skip data w/o reading
self._f.seek( self._f.tell() + bufSize )
return 1
def _readStructTypes(self):
# analyses data types in a struct
if ( debugLevel > 3 ):
print("Reading Struct Types at Pos = " + hex(self._f.tell()))
structNameLength = readLong(self._f)
nFields = readLong(self._f)
if ( debugLevel > 5 ):
print("nFields = ", nFields)
if ( nFields > 100 ):
raise Exception(hex(self._f.tell())+": Too many fields")
fieldTypes = []
nameLength = 0
for i in range( nFields ):
nameLength = readLong(self._f)
if ( debugLevel > 9 ):
print("{}th nameLength = {}".format(i, nameLength))
fieldType = readLong(self._f)
fieldTypes.append( fieldType )
return fieldTypes
def _readStructData(self, structTypes):
# reads struct data based on type info in structType
for i in range( len(structTypes) ):
encodedType = structTypes[i]
etSize = self._encodedTypeSize(encodedType)
if ( debugLevel > 5 ):
print("Tag Type = " + str(encodedType) + ",", end=' ')
print("Tag Size = " + str(etSize))
# get data
self._readNativeData(encodedType, etSize)
return 1
def _storeTag(self, tagName, tagValue):
# store Tags as list and dict
# NB: all tag values (and names) stored as unicode objects;
# => can then be easily converted to any encoding
if ( debugLevel == 1 ):
print(" - storing Tag:")
print(" -- name: ", tagName)
print(" -- value: ", tagValue, type(tagValue))
# - convert tag value to unicode if not already unicode object
self._storedTags.append( tagName + " = " + unicode_str(tagValue) )
self._tagDict[tagName] = unicode_str(tagValue)
### END utility functions ###
def __init__(self, filename, debug=0):
"""DM3 object: parses DM3 file."""
## initialize variables ##
self._debug = debug
self._outputcharset = DEFAULTCHARSET
self._filename = filename
self._chosenImage = 1
# - track currently read group
self._curGroupLevel = -1
self._curGroupAtLevelX = [ 0 for x in range(MAXDEPTH) ]
self._curGroupNameAtLevelX = [ '' for x in range(MAXDEPTH) ]
# - track current tag
self._curTagAtLevelX = [ '' for x in range(MAXDEPTH) ]
self._curTagName = ''
# - open file for reading
self._f = open( self._filename, 'rb' )
# - create Tags repositories
self._storedTags = []
self._tagDict = {}
isDM3 = True
## read header (first 3 4-byte int)
# get version
fileVersion = readLong(self._f)
if ( fileVersion != 3 ):
isDM3 = False
# get indicated file size
fileSize = readLong(self._f)
# get byte-ordering
lE = readLong(self._f)
littleEndian = (lE == 1)
if not littleEndian:
isDM3 = False
# check file header, raise Exception if not DM3
if not isDM3:
raise Exception("%s does not appear to be a DM3 file."
% os.path.split(self._filename)[1])
elif self._debug > 0:
print("%s appears to be a DM3 file" % (self._filename))
if ( debugLevel > 5 or self._debug > 1):
print("Header info.:")
print("- file version:", fileVersion)
print("- lE:", lE)
print("- file size:", fileSize, "bytes")
# set name of root group (contains all data)...
self._curGroupNameAtLevelX[0] = "root"
# ... then read it
self._readTagGroup()
if self._debug > 0:
print("-- %s Tags read --" % len(self._storedTags))
# fetch image characteristics
tag_root = 'root.ImageList.1'
self._data_type = int( self.tags["%s.ImageData.DataType" % tag_root] )
self._im_width = int( self.tags["%s.ImageData.Dimensions.0" % tag_root] )
self._im_height = int( self.tags["%s.ImageData.Dimensions.1" % tag_root] )
try:
self._im_depth = int( self.tags['root.ImageList.1.ImageData.Dimensions.2'] )
except KeyError:
self._im_depth = 1
if self._debug > 0:
print("Notice: image size: %sx%s px" % (self._im_width, self._im_height))
if self._im_depth>1:
print("Notice: %s image stack" % (self._im_depth))
@property
def data_type(self):
"""Returns image DataType."""
return self._data_type
@property
def data_type_str(self):
"""Returns image DataType string."""
return dataTypes[self._data_type]
@property
def width(self):
"""Returns image width (px)."""
return self._im_width
@property
def height(self):
"""Returns image height (px)."""
return self._im_height
@property
def depth(self):
"""Returns image depth (i.e. number of images in stack)."""
return self._im_depth
@property
def size(self):
"""Returns image size (width,height[,depth])."""
if self._im_depth > 1:
return (self._im_width, self._im_height, self._im_depth)
else:
return (self._im_width, self._im_height)
@property
def outputcharset(self):
"""Returns Tag dump/output charset."""
return self._outputcharset
@outputcharset.setter
def outputcharset(self, value):
"""Set Tag dump/output charset."""
self._outputcharset = value
@property
def filename(self):
"""Returns full file path."""
return self._filename
@property
def tags(self):
"""Returns all image Tags."""
return self._tagDict
def dumpTags(self, dump_dir='/tmp'):
"""Dumps image Tags in a txt file."""
dump_file = os.path.join(dump_dir,
os.path.split(self._filename)[1]
+ ".tagdump.txt")
try:
dumpf = open( dump_file, 'w' )
except:
print("Warning: cannot generate dump file.")
else:
for tag in self._storedTags:
dumpf.write( "{}\n".format(tag.encode(self._outputcharset)))
dumpf.close
@property
def info(self):
"""Extracts useful experiment info from DM3 file."""
# define useful information
tag_root = 'root.ImageList.1'
info_keys = {
'descrip': "%s.Description" % tag_root,
'acq_date': "%s.ImageTags.DataBar.Acquisition Date" % tag_root,
'acq_time': "%s.ImageTags.DataBar.Acquisition Time" % tag_root,
'name': "%s.ImageTags.Microscope Info.Name" % tag_root,
'micro': "%s.ImageTags.Microscope Info.Microscope" % tag_root,
'hv': "%s.ImageTags.Microscope Info.Voltage" % tag_root,
'mag': "%s.ImageTags.Microscope Info.Indicated Magnification" % tag_root,
'mode': "%s.ImageTags.Microscope Info.Operation Mode" % tag_root,
'operator': "%s.ImageTags.Microscope Info.Operator" % tag_root,
'specimen': "%s.ImageTags.Microscope Info.Specimen" % tag_root,
# 'image_notes': "root.DocumentObjectList.10.Text' # = Image Notes
}
# get experiment information
infoDict = {}
for key, tag_name in info_keys.items():
if tag_name in self.tags:
# tags supplied as Python unicode str; convert to chosen charset
# (typically latin-1 or utf-8)
infoDict[key] = self.tags[tag_name].encode(self._outputcharset)
# return experiment information
return infoDict
@property
def imagedata(self):
"""Extracts image data as numpy.array"""
# numpy dtype strings associated to the various image dataTypes
dT_str = {
1: '<i2', #16-bit LE signed integer
2: '<f4', #32-bit LE floating point
6: 'u1', #8-bit unsigned integer
7: '<i4', #32-bit LE signed integer
9: 'i1', #8-bit signed integer
10: '<u2', #16-bit LE unsigned integer
11: '<u4', #32-bit LE unsigned integer
14: 'u1', #binary
}
# get relevant Tags
tag_root = 'root.ImageList.1'
data_offset = int( self.tags["%s.ImageData.Data.Offset" % tag_root] )
data_size = int( self.tags["%s.ImageData.Data.Size" % tag_root] )
data_type = self._data_type
im_width = self._im_width
im_height = self._im_height
im_depth = self._im_depth
if self._debug > 0:
print("Notice: image data in %s starts at %s" % (
os.path.split(self._filename)[1], hex(data_offset)
))
# check if image DataType is implemented, then read
if data_type in dT_str:
np_dt = numpy.dtype( dT_str[data_type] )
if self._debug > 0:
print("Notice: image data type: %s ('%s'), read as %s" % (
data_type, dataTypes[data_type], np_dt
))
self._f.seek( data_offset )
# - fetch image data
rawdata = self._f.read(data_size)
# - convert raw to numpy array w/ correct dtype
ima = numpy.fromstring(rawdata, dtype=np_dt)
# - reshape to matrix or stack
if im_depth > 1:
ima = ima.reshape(im_depth, im_height, im_width)
else:
ima = ima.reshape(im_height, im_width)
else:
raise Exception(
"Cannot extract image data from %s: unimplemented DataType (%s:%s)." %
(os.path.split(self._filename)[1], data_type, dataTypes[data_type])
)
# if image dataType is BINARY, binarize image
# (i.e., px_value>0 is True)
if data_type == 14:
ima[ima>0] = 1
return ima
@property
def Image(self):
"""Returns image data as PIL Image"""
# define PIL Image mode for the various (supported) image dataTypes,
# among:
# - '1': 1-bit pixels, black and white, stored as 8-bit pixels
# - 'L': 8-bit pixels, gray levels
# - 'I': 32-bit integer pixels
# - 'F': 32-bit floating point pixels
dT_modes = {
1: 'I', # 16-bit LE signed integer
2: 'F', # 32-bit LE floating point
6: 'L', # 8-bit unsigned integer
7: 'I', # 32-bit LE signed integer
9: 'I', # 8-bit signed integer
10: 'I', # 16-bit LE unsigned integer
11: 'I', # 32-bit LE unsigned integer
14: 'L', # "binary"
}
# define loaded array dtype if has to be fixed to match Image mode
dT_newdtypes = {
1: 'int32', # 16-bit LE integer to 32-bit int
2: 'float32', # 32-bit LE float to 32-bit float
9: 'int32', # 8-bit signed integer to 32-bit int
10: 'int32', # 16-bit LE u. integer to 32-bit int
}
# get relevant Tags
data_type = self._data_type
im_width = self._im_width
im_height = self._im_height
im_depth = self._im_depth
# fetch image data array
ima = self.imagedata
# assign Image mode
mode_ = dT_modes[data_type]
# reshape array if image stack
if im_depth > 1:
ima = ima.reshape(im_height*im_depth, im_width)
# load image data array into Image object (recast array if necessary)
if data_type in dT_newdtypes:
im = Image.fromarray(ima.astype(dT_newdtypes[data_type]),mode_)
else:
im = Image.fromarray(ima,mode_)
return im
@property
def contrastlimits(self):
"""Returns display range (cuts)."""
tag_root = 'root.DocumentObjectList.0'
low = int(float(self.tags["%s.ImageDisplayInfo.LowLimit" % tag_root]))
high = int(float(self.tags["%s.ImageDisplayInfo.HighLimit" % tag_root]))
cuts = (low, high)
return cuts
@property
def cuts(self):
"""Returns display range (cuts)."""
return self.contrastlimits
@property
def pxsize(self):
"""Returns pixel size and unit."""
tag_root = 'root.ImageList.1'
pixel_size = float(
self.tags["%s.ImageData.Calibrations.Dimension.0.Scale" % tag_root])
unit = self.tags["%s.ImageData.Calibrations.Dimension.0.Units" %
tag_root]
if unit == u'\xb5m':
unit = 'micron'
else:
unit = unit.encode('ascii')
if self._debug > 0:
print("pixel size = %s %s" % (pixel_size, unit))
return (pixel_size, unit)
@property
def tnImage(self):
"""Returns thumbnail as PIL Image."""
# get thumbnail
tag_root = 'root.ImageList.0'
tn_size = int( self.tags["%s.ImageData.Data.Size" % tag_root] )
tn_offset = int( self.tags["%s.ImageData.Data.Offset" % tag_root] )
tn_width = int( self.tags["%s.ImageData.Dimensions.0" % tag_root] )
tn_height = int( self.tags["%s.ImageData.Dimensions.1" % tag_root] )
if self._debug > 0:
print("Notice: tn data in %s starts at %s" % (
os.path.split(self._filename)[1], hex(tn_offset)
))
print("Notice: tn size: %sx%s px" % (tn_width, tn_height))
if (tn_width*tn_height*4) != tn_size:
raise Exception("Cannot extract thumbnail from %s"
% os.path.split(self._filename)[1])
else:
self._f.seek( tn_offset )
rawdata = self._f.read(tn_size)
# - read as 32-bit LE unsigned integer
tn = Image.frombytes( 'F', (tn_width, tn_height), rawdata,
'raw', 'F;32' )
# - rescale and convert px data
tn = tn.point(lambda x: x * (1./65536) + 0)
tn = tn.convert('L')
# - return image
return tn
@property
def thumbnaildata(self):
"""Fetch thumbnail image data as numpy.array"""
# get useful thumbnail Tags
tag_root = 'root.ImageList.0'
tn_size = int( self.tags["%s.ImageData.Data.Size" % tag_root] )
tn_offset = int( self.tags["%s.ImageData.Data.Offset" % tag_root] )
tn_width = int( self.tags["%s.ImageData.Dimensions.0" % tag_root] )
tn_height = int( self.tags["%s.ImageData.Dimensions.1" % tag_root] )
if self._debug > 0:
print("Notice: tn data in %s starts at %s" % (
os.path.split(self._filename)[1], hex(tn_offset)
))
print("Notice: tn size: %sx%s px" % (tn_width, tn_height))
# get thumbnail data
if (tn_width*tn_height*4) == tn_size:
self._f.seek(tn_offset)
rawtndata = self._f.read(tn_size)
print('## rawdata:', len(rawtndata))
# - read as 32-bit LE unsigned integer
np_dt_tn = numpy.dtype('<u4')
tndata = numpy.fromstring(rawtndata, dtype=np_dt_tn)
print('## tndata:', len(tndata))
tndata = tndata.reshape(tn_height, tn_width)
# - rescale and convert to integer
tndata = tndata/65536. + 0.
tndata = tndata.astype(int)
# - return thumbnail data
return tndata
else:
raise Exception("Cannot extract thumbnail from %s"
% os.path.split(self._filename)[1])
def makePNGThumbnail(self, tn_file=''):
"""Save thumbnail as PNG file."""
# - cleanup name
if tn_file == '':
tn_path = os.path.join('./',
os.path.split(self.filename)[1]+'.tn.png')
else:
if os.path.splitext(tn_file)[1] != '.png':
tn_path = os.path.splitext(tn_file)[0] + '.png'
else:
tn_path = tn_file
# - save tn file
try:
self.thumbnail.save(tn_path, 'PNG')
if self._debug > 0:
print("Thumbnail saved as '%s'." % tn_path)
except:
print("Warning: could not save thumbnail.")
## MAIN ##
if __name__ == '__main__':
print("dm3_lib %s" % VERSION)