__init__.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. """
  2. Python Library to Read and Write Surface Files in Freesurfer's TriangularSurface Format
  3. compatible with Freesurfer's MRISwriteTriangularSurface()
  4. https://github.com/freesurfer/freesurfer/blob/release_6_0_0/include/mrisurf.h#L1281
  5. https://github.com/freesurfer/freesurfer/blob/release_6_0_0/utils/mrisurf.c
  6. https://raw.githubusercontent.com/freesurfer/freesurfer/release_6_0_0/utils/mrisurf.c
  7. Freesurfer
  8. https://surfer.nmr.mgh.harvard.edu/
  9. >>> from freesurfer_surface import Surface, Vertex
  10. >>>
  11. >>> surface = Surface.read_triangular('bert/surf/lh.pial'))
  12. >>>
  13. >>> vertex_index = surface.add_vertex(Vertex(0.0, -3.14, 21.42))
  14. >>> print(surface.vertices[vertex_index])
  15. >>> surface.write_triangular('somewhere/else/lh.pial')
  16. >>>
  17. >>> surface.load_annotation_file('bert/label/lh.aparc.annot')
  18. >>> print([label.name for label in surface.annotation.labels])
  19. >>>
  20. >>> precentral, = filter(lambda l: l.name == 'precentral', annotation.labels.values())
  21. >>> print(precentral.hex_color_code)
  22. >>>
  23. >>> precentral_vertix_indices = [vertex_index for vertex_index, label_index
  24. >>> in surface.annotation.vertex_label_index.items()
  25. >>> if label_index == precentral.index]
  26. >>> print(len(precentral_vertix_indices))
  27. """
  28. import collections
  29. import contextlib
  30. import datetime
  31. import locale
  32. import re
  33. import struct
  34. import typing
  35. try:
  36. from freesurfer_surface.version import __version__
  37. except ImportError: # pragma: no cover
  38. __version__ = None
  39. class UnsupportedLocaleSettingError(locale.Error):
  40. pass
  41. @contextlib.contextmanager
  42. def setlocale(temporary_locale):
  43. primary_locale = locale.setlocale(locale.LC_ALL)
  44. try:
  45. yield locale.setlocale(locale.LC_ALL, temporary_locale)
  46. except locale.Error as exc:
  47. if str(exc) == 'unsupported locale setting':
  48. raise UnsupportedLocaleSettingError(temporary_locale)
  49. raise exc
  50. finally:
  51. locale.setlocale(locale.LC_ALL, primary_locale)
  52. Vertex = collections.namedtuple('Vertex', ['right', 'anterior', 'superior'])
  53. class _PolygonalCircuit:
  54. _VERTEX_INDICES_TYPE = typing.Tuple[int]
  55. def __init__(self, vertex_indices: _VERTEX_INDICES_TYPE):
  56. self.vertex_indices: self._VERTEX_INDICES_TYPE = vertex_indices
  57. @property
  58. def vertex_indices(self):
  59. return self._vertex_indices
  60. @vertex_indices.setter
  61. def vertex_indices(self, indices: _VERTEX_INDICES_TYPE):
  62. # pylint: disable=attribute-defined-outside-init
  63. self._vertex_indices = indices
  64. def __eq__(self, other: '_PolygonalCircuit') -> bool:
  65. return self.vertex_indices == other.vertex_indices
  66. def __hash__(self) -> int:
  67. return hash(self._vertex_indices)
  68. class _LineSegment(_PolygonalCircuit):
  69. # pylint: disable=no-member
  70. @_PolygonalCircuit.vertex_indices.setter
  71. def vertex_indices(self, indices: _PolygonalCircuit._VERTEX_INDICES_TYPE):
  72. assert len(indices) == 2
  73. # pylint: disable=attribute-defined-outside-init
  74. self._vertex_indices = indices
  75. def __repr__(self) -> str:
  76. return '_LineSegment(vertex_indices={})'.format(self.vertex_indices)
  77. class Triangle(_PolygonalCircuit):
  78. # pylint: disable=no-member
  79. @_PolygonalCircuit.vertex_indices.setter
  80. def vertex_indices(self, indices: _PolygonalCircuit._VERTEX_INDICES_TYPE):
  81. assert len(indices) == 3
  82. # pylint: disable=attribute-defined-outside-init
  83. self._vertex_indices = indices
  84. def __repr__(self) -> str:
  85. return 'Triangle(vertex_indices={})'.format(self.vertex_indices)
  86. class Label:
  87. # pylint: disable=too-many-arguments
  88. def __init__(self, index: int, name: str, red: int,
  89. green: int, blue: int, transparency: int):
  90. self.index: int = index
  91. self.name: str = name
  92. self.red: int = red
  93. self.green: int = green
  94. self.blue: int = blue
  95. self.transparency: int = transparency
  96. @property
  97. def color_code(self) -> int:
  98. if self.index == 0: # unknown
  99. return 0
  100. return int.from_bytes((self.red, self.green, self.blue, self.transparency),
  101. byteorder='little', signed=False)
  102. @property
  103. def hex_color_code(self) -> str:
  104. return '#{:02x}{:02x}{:02x}'.format(self.red, self.green, self.blue)
  105. def __str__(self) -> str:
  106. return 'Label(name={}, index={}, color={})'.format(
  107. self.name, self.index, self.hex_color_code)
  108. def __repr__(self) -> str:
  109. return str(self)
  110. class Annotation:
  111. # pylint: disable=too-few-public-methods
  112. _TAG_OLD_COLORTABLE = b'\0\0\0\x01'
  113. def __init__(self):
  114. self.vertex_label_index: typing.Dict[int, int] = {}
  115. self.colortable_path: typing.Optional[bytes] = None
  116. self.labels: typing.Dict[int, Label] = {}
  117. @staticmethod
  118. def _read_label(stream: typing.BinaryIO) -> Label:
  119. index, name_length = struct.unpack('>II', stream.read(4 * 2))
  120. name = stream.read(name_length - 1).decode()
  121. assert stream.read(1) == b'\0'
  122. red, green, blue, transparency = struct.unpack('>IIII', stream.read(4 * 4))
  123. return Label(index=index, name=name, red=red, green=green,
  124. blue=blue, transparency=transparency)
  125. def _read(self, stream: typing.BinaryIO) -> None:
  126. # https://surfer.nmr.mgh.harvard.edu/fswiki/LabelsClutsAnnotationFiles
  127. annotations_num, = struct.unpack('>I', stream.read(4))
  128. annotations = [struct.unpack('>II', stream.read(4 * 2))
  129. for _ in range(annotations_num)]
  130. assert stream.read(4) == self._TAG_OLD_COLORTABLE
  131. colortable_version, _, filename_length = struct.unpack('>III', stream.read(4 * 3))
  132. assert colortable_version > 0 # new version
  133. self.colortable_path = stream.read(filename_length - 1)
  134. assert stream.read(1) == b'\0'
  135. labels_num, = struct.unpack('>I', stream.read(4))
  136. self.labels = {label.index: label for label
  137. in (self._read_label(stream) for _ in range(labels_num))}
  138. label_index_by_color_code = {label.color_code: label.index
  139. for label in self.labels.values()}
  140. self.vertex_label_index = {vertex_index: label_index_by_color_code[color_code]
  141. for vertex_index, color_code in annotations}
  142. assert not stream.read(1)
  143. @classmethod
  144. def read(cls, annotation_file_path: str) -> 'Annotation':
  145. annotation = cls()
  146. with open(annotation_file_path, 'rb') as annotation_file:
  147. # pylint: disable=protected-access
  148. annotation._read(annotation_file)
  149. return annotation
  150. class Surface:
  151. # pylint: disable=too-many-instance-attributes
  152. _MAGIC_NUMBER = b'\xff\xff\xfe'
  153. _TAG_CMDLINE = b'\x00\x00\x00\x03'
  154. _TAG_OLD_SURF_GEOM = b'\x00\x00\x00\x14'
  155. _TAG_OLD_USEREALRAS = b'\x00\x00\x00\x02'
  156. _DATETIME_FORMAT = '%a %b %d %H:%M:%S %Y'
  157. def __init__(self):
  158. self.creator: typing.Optional[bytes] = None
  159. self.creation_datetime: typing.Optional[datetime.datetime] = None
  160. self.vertices: typing.List[Vertex] = []
  161. self.triangles: typing.List[Triangle] = []
  162. self.using_old_real_ras: bool = False
  163. self.volume_geometry_info: typing.Optional[typing.Tuple[bytes]] = None
  164. self.command_lines: typing.List[bytes] = []
  165. self.annotation: typing.Optional[Annotation] = None
  166. @classmethod
  167. def _read_cmdlines(cls, stream: typing.BinaryIO) -> typing.Iterator[str]:
  168. while True:
  169. tag = stream.read(4)
  170. if not tag:
  171. return
  172. assert tag == cls._TAG_CMDLINE # might be TAG_GROUP_AVG_SURFACE_AREA
  173. # TAGwrite
  174. # https://github.com/freesurfer/freesurfer/blob/release_6_0_0/utils/tags.c#L94
  175. str_length, = struct.unpack('>Q', stream.read(8))
  176. yield stream.read(str_length - 1)
  177. assert stream.read(1) == b'\x00'
  178. def _read_triangular(self, stream: typing.BinaryIO):
  179. assert stream.read(3) == self._MAGIC_NUMBER
  180. self.creator, creation_dt_str = re.match(rb'^created by (\w+) on (.* \d{4})\n',
  181. stream.readline()).groups()
  182. with setlocale('C'):
  183. self.creation_datetime = datetime.datetime.strptime(creation_dt_str.decode(),
  184. self._DATETIME_FORMAT)
  185. assert stream.read(1) == b'\n'
  186. # fwriteInt
  187. # https://github.com/freesurfer/freesurfer/blob/release_6_0_0/utils/fio.c#L290
  188. vertices_num, triangles_num = struct.unpack('>II', stream.read(4 * 2))
  189. self.vertices = [Vertex(*struct.unpack('>fff', stream.read(4 * 3)))
  190. for _ in range(vertices_num)]
  191. self.triangles = [Triangle(struct.unpack('>III', stream.read(4 * 3)))
  192. for _ in range(triangles_num)]
  193. assert all(vertex_idx < vertices_num
  194. for triangle in self.triangles
  195. for vertex_idx in triangle.vertex_indices)
  196. assert stream.read(4) == self._TAG_OLD_USEREALRAS
  197. using_old_real_ras, = struct.unpack('>I', stream.read(4))
  198. assert using_old_real_ras in [0, 1], using_old_real_ras
  199. self.using_old_real_ras = bool(using_old_real_ras)
  200. assert stream.read(4) == self._TAG_OLD_SURF_GEOM
  201. # writeVolGeom
  202. # https://github.com/freesurfer/freesurfer/blob/release_6_0_0/utils/transform.c#L368
  203. self.volume_geometry_info = tuple(stream.readline() for _ in range(8))
  204. self.command_lines = list(self._read_cmdlines(stream))
  205. @classmethod
  206. def read_triangular(cls, surface_file_path: str) -> 'Surface':
  207. surface = cls()
  208. with open(surface_file_path, 'rb') as surface_file:
  209. # pylint: disable=protected-access
  210. surface._read_triangular(surface_file)
  211. return surface
  212. def _triangular_creation_datetime_strftime(self) -> bytes:
  213. fmt = self._DATETIME_FORMAT.replace('%d', '{:>2}'.format(self.creation_datetime.day))
  214. with setlocale('C'):
  215. return self.creation_datetime.strftime(fmt).encode()
  216. def write_triangular(self, surface_file_path: str,
  217. creation_datetime: typing.Optional[datetime.datetime] = None):
  218. if creation_datetime is None:
  219. self.creation_datetime = datetime.datetime.now()
  220. else:
  221. self.creation_datetime = creation_datetime
  222. with open(surface_file_path, 'wb') as surface_file:
  223. surface_file.write(
  224. self._MAGIC_NUMBER
  225. + b'created by ' + self.creator
  226. + b' on ' + self._triangular_creation_datetime_strftime()
  227. + b'\n\n'
  228. + struct.pack('>II', len(self.vertices), len(self.triangles))
  229. )
  230. for vertex in self.vertices:
  231. surface_file.write(struct.pack('>fff', *vertex))
  232. for triangle in self.triangles:
  233. surface_file.write(struct.pack('>III', *triangle.vertex_indices))
  234. surface_file.write(self._TAG_OLD_USEREALRAS
  235. + struct.pack('>I', 1 if self.using_old_real_ras else 0))
  236. surface_file.write(self._TAG_OLD_SURF_GEOM
  237. + b''.join(self.volume_geometry_info))
  238. for command_line in self.command_lines:
  239. surface_file.write(self._TAG_CMDLINE + struct.pack('>Q', len(command_line) + 1)
  240. + command_line + b'\0')
  241. def load_annotation_file(self, annotation_file_path: str) -> None:
  242. annotation = Annotation.read(annotation_file_path)
  243. assert len(annotation.vertex_label_index) <= len(self.vertices)
  244. assert max(annotation.vertex_label_index.keys()) < len(self.vertices)
  245. self.annotation = annotation
  246. def add_vertex(self, vertex: Vertex) -> int:
  247. self.vertices.append(vertex)
  248. return len(self.vertices) - 1
  249. def _find_label_border_segments(self, label: Label) -> typing.Iterator[_LineSegment]:
  250. for triangle in self.triangles:
  251. border_vertex_indices = tuple(filter(
  252. lambda i: self.annotation.vertex_label_index[i] == label.index,
  253. triangle.vertex_indices,
  254. ))
  255. if len(border_vertex_indices) == 2:
  256. yield _LineSegment(border_vertex_indices)