__init__.py 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. >>>
  16. >>> surface.write_triangular('somewhere/else/lh.pial')
  17. """
  18. import collections
  19. import contextlib
  20. import datetime
  21. import locale
  22. import re
  23. import struct
  24. import typing
  25. try:
  26. from freesurfer_surface.version import __version__
  27. except ImportError: # pragma: no cover
  28. __version__ = None
  29. class UnsupportedLocaleSettingError(locale.Error):
  30. pass
  31. @contextlib.contextmanager
  32. def setlocale(temporary_locale):
  33. primary_locale = locale.setlocale(locale.LC_ALL)
  34. try:
  35. yield locale.setlocale(locale.LC_ALL, temporary_locale)
  36. except locale.Error as exc:
  37. if str(exc) == 'unsupported locale setting':
  38. raise UnsupportedLocaleSettingError(temporary_locale)
  39. raise exc
  40. finally:
  41. locale.setlocale(locale.LC_ALL, primary_locale)
  42. Vertex = collections.namedtuple('Vertex', ['right', 'anterior', 'superior'])
  43. class Annotation:
  44. # pylint: disable=too-few-public-methods
  45. _TAG_OLD_COLORTABLE = b'\0\0\0\x01'
  46. vertex_values: typing.Dict[int, int] = {}
  47. def _read(self, stream: typing.BinaryIO) -> None:
  48. # https://surfer.nmr.mgh.harvard.edu/fswiki/LabelsClutsAnnotationFiles
  49. annotations_num, = struct.unpack('>I', stream.read(4))
  50. annotations = (struct.unpack('>II', stream.read(4 * 2))
  51. for _ in range(annotations_num))
  52. self.vertex_values = {vertex_index: annotation_value
  53. for vertex_index, annotation_value in annotations}
  54. assert all((annotation_value >> (8 * 3)) == 0
  55. for annotation_value in self.vertex_values.values())
  56. assert stream.read(4) == self._TAG_OLD_COLORTABLE
  57. @classmethod
  58. def read(cls, annotation_file_path: str) -> 'Annotation':
  59. annotation = cls()
  60. with open(annotation_file_path, 'rb') as annotation_file:
  61. # pylint: disable=protected-access
  62. annotation._read(annotation_file)
  63. return annotation
  64. class Surface:
  65. # pylint: disable=too-many-instance-attributes
  66. _MAGIC_NUMBER = b'\xff\xff\xfe'
  67. _TAG_CMDLINE = b'\x00\x00\x00\x03'
  68. _TAG_OLD_SURF_GEOM = b'\x00\x00\x00\x14'
  69. _TAG_OLD_USEREALRAS = b'\x00\x00\x00\x02'
  70. _DATETIME_FORMAT = '%a %b %d %H:%M:%S %Y'
  71. creator: typing.Optional[bytes] = None
  72. creation_datetime: typing.Optional[datetime.datetime] = None
  73. vertices: typing.List[Vertex] = []
  74. triangles_vertex_indices: typing.List[typing.Tuple[int]] = []
  75. using_old_real_ras: bool = False
  76. volume_geometry_info: typing.Optional[typing.Tuple[bytes]] = None
  77. command_lines: typing.List[bytes] = []
  78. annotation: typing.Optional[Annotation] = None
  79. @classmethod
  80. def _read_cmdlines(cls, stream: typing.BinaryIO) -> typing.Iterator[str]:
  81. while True:
  82. tag = stream.read(4)
  83. if not tag:
  84. return
  85. assert tag == cls._TAG_CMDLINE # might be TAG_GROUP_AVG_SURFACE_AREA
  86. # TAGwrite
  87. # https://github.com/freesurfer/freesurfer/blob/release_6_0_0/utils/tags.c#L94
  88. str_length, = struct.unpack('>Q', stream.read(8))
  89. yield stream.read(str_length - 1)
  90. assert stream.read(1) == b'\x00'
  91. def _read_triangular(self, stream: typing.BinaryIO):
  92. assert stream.read(3) == self._MAGIC_NUMBER
  93. self.creator, creation_dt_str = re.match(rb'^created by (\w+) on (.* \d{4})\n',
  94. stream.readline()).groups()
  95. with setlocale('C'):
  96. self.creation_datetime = datetime.datetime.strptime(creation_dt_str.decode(),
  97. self._DATETIME_FORMAT)
  98. assert stream.read(1) == b'\n'
  99. # fwriteInt
  100. # https://github.com/freesurfer/freesurfer/blob/release_6_0_0/utils/fio.c#L290
  101. vertices_num, triangles_num = struct.unpack('>II', stream.read(4 * 2))
  102. self.vertices = [Vertex(*struct.unpack('>fff', stream.read(4 * 3)))
  103. for _ in range(vertices_num)]
  104. self.triangles_vertex_indices = [struct.unpack('>III', stream.read(4 * 3))
  105. for _ in range(triangles_num)]
  106. assert all(vertex_idx < vertices_num
  107. for triangle_vertex_index in self.triangles_vertex_indices
  108. for vertex_idx in triangle_vertex_index)
  109. assert stream.read(4) == self._TAG_OLD_USEREALRAS
  110. using_old_real_ras, = struct.unpack('>I', stream.read(4))
  111. assert using_old_real_ras in [0, 1], using_old_real_ras
  112. self.using_old_real_ras = bool(using_old_real_ras)
  113. assert stream.read(4) == self._TAG_OLD_SURF_GEOM
  114. # writeVolGeom
  115. # https://github.com/freesurfer/freesurfer/blob/release_6_0_0/utils/transform.c#L368
  116. self.volume_geometry_info = tuple(stream.readline() for _ in range(8))
  117. self.command_lines = list(self._read_cmdlines(stream))
  118. @classmethod
  119. def read_triangular(cls, surface_file_path: str) -> 'Surface':
  120. surface = cls()
  121. with open(surface_file_path, 'rb') as surface_file:
  122. # pylint: disable=protected-access
  123. surface._read_triangular(surface_file)
  124. return surface
  125. def _triangular_creation_datetime_strftime(self) -> bytes:
  126. fmt = self._DATETIME_FORMAT.replace('%d', '{:>2}'.format(self.creation_datetime.day))
  127. with setlocale('C'):
  128. return self.creation_datetime.strftime(fmt).encode()
  129. def write_triangular(self, surface_file_path: str,
  130. creation_datetime: typing.Optional[datetime.datetime] = None):
  131. if creation_datetime is None:
  132. self.creation_datetime = datetime.datetime.now()
  133. else:
  134. self.creation_datetime = creation_datetime
  135. with open(surface_file_path, 'wb') as surface_file:
  136. surface_file.write(
  137. self._MAGIC_NUMBER
  138. + b'created by ' + self.creator
  139. + b' on ' + self._triangular_creation_datetime_strftime()
  140. + b'\n\n'
  141. + struct.pack('>II', len(self.vertices), len(self.triangles_vertex_indices))
  142. )
  143. for vertex in self.vertices:
  144. surface_file.write(struct.pack('>fff', *vertex))
  145. for triangle_vertex_indices in self.triangles_vertex_indices:
  146. surface_file.write(struct.pack('>III', *triangle_vertex_indices))
  147. surface_file.write(self._TAG_OLD_USEREALRAS
  148. + struct.pack('>I', 1 if self.using_old_real_ras else 0))
  149. surface_file.write(self._TAG_OLD_SURF_GEOM
  150. + b''.join(self.volume_geometry_info))
  151. for command_line in self.command_lines:
  152. surface_file.write(self._TAG_CMDLINE + struct.pack('>Q', len(command_line) + 1)
  153. + command_line + b'\0')
  154. def load_annotation_file(self, annotation_file_path: str) -> None:
  155. annotation = Annotation.read(annotation_file_path)
  156. assert len(annotation.vertex_values) <= len(self.vertices)
  157. assert all(0 <= vertex_index < len(self.vertices)
  158. for vertex_index in annotation.vertex_values.keys())
  159. self.annotation = annotation
  160. def add_vertex(self, vertex: Vertex) -> int:
  161. self.vertices.append(vertex)
  162. return len(self.vertices) - 1