vid_us_physical_coordinate.dart 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. import 'dart:typed_data';
  2. import 'package:vid/us/vid_us_data_reader.dart';
  3. import 'package:vid/us/vid_us_data_writer.dart';
  4. enum PhysicalCoordinateType {
  5. Tissue,
  6. TimeMotion,
  7. ConvexTissue,
  8. LinearTissue,
  9. ConvexTVTissue,
  10. LinearTVTissue,
  11. Doppler,
  12. TissueTimeMotion,
  13. MAM,
  14. PWV
  15. }
  16. class VidUsPhysicalCoordinate {
  17. late PhysicalCoordinateType _type;
  18. Uint8List toBytes() {
  19. var writer = new VidUsDataWriter();
  20. writer.writeByte(_type.index);
  21. return writer.data;
  22. }
  23. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  24. var reader = new VidUsDataReader(bytes);
  25. var type = PhysicalCoordinateType.values[reader.readByte()];
  26. switch (type) {
  27. case PhysicalCoordinateType.ConvexTissue:
  28. return VidUsConvexTissuePhysicalCoordinate.fromBytes(bytes);
  29. case PhysicalCoordinateType.LinearTissue:
  30. return VidUsLinearTissuePhysicalCoordinate.fromBytes(bytes);
  31. case PhysicalCoordinateType.ConvexTVTissue:
  32. return VidUsConvexTVTissuePhysicalCoordinate.fromBytes(bytes);
  33. case PhysicalCoordinateType.LinearTVTissue:
  34. return VidUsLinearTVTissuePhysicalCoordinate.fromBytes(bytes);
  35. case PhysicalCoordinateType.Doppler:
  36. return VidUsDopplerPhysicalCoordinate.fromBytes(bytes);
  37. case PhysicalCoordinateType.TissueTimeMotion:
  38. return VidUsTissueTimeMotionPhysicalCoordinate.fromBytes(bytes);
  39. case PhysicalCoordinateType.MAM:
  40. return VidUsMAMPhysicalCoordinate.fromBytes(bytes);
  41. case PhysicalCoordinateType.PWV:
  42. return VidUsPWVPhysicalCoordinate.fromBytes(bytes);
  43. default:
  44. throw new Exception("Not supported CoordinateType $type");
  45. }
  46. }
  47. }
  48. class VidUsTissuePhysicalCoordinate extends VidUsPhysicalCoordinate {
  49. late double _depthEnd;
  50. late double _depthStart;
  51. late double _width;
  52. late double _beamPosition;
  53. double get depthEnd => _depthEnd;
  54. double get depthStart => _depthStart;
  55. double get width => _width;
  56. double get beamPosition => _beamPosition;
  57. VidUsTissuePhysicalCoordinate(
  58. double depthEnd, double depthStart, double width, double beamPosition) {
  59. _type = PhysicalCoordinateType.Tissue;
  60. _beamPosition = beamPosition;
  61. _width = width;
  62. _depthStart = depthStart;
  63. _depthEnd = depthEnd;
  64. }
  65. @override
  66. Uint8List toBytes() {
  67. var writer = new VidUsDataWriter();
  68. var baseData = super.toBytes();
  69. writer.writeBytes(baseData);
  70. writer.writeDouble(_depthStart);
  71. writer.writeDouble(_depthEnd);
  72. writer.writeDouble(_width);
  73. writer.writeDouble(_beamPosition);
  74. return writer.data;
  75. }
  76. }
  77. class VidUsTimeMotionPhysicalCoordinate extends VidUsPhysicalCoordinate {
  78. late double _sweepSpeed;
  79. late double _max;
  80. late double _min;
  81. double get sweepSpeed => _sweepSpeed;
  82. double get max => _max;
  83. double get min => _min;
  84. VidUsTimeMotionPhysicalCoordinate(double sweepSpeed, double max, double min) {
  85. _type = PhysicalCoordinateType.TimeMotion;
  86. _min = min;
  87. _max = max;
  88. _sweepSpeed = sweepSpeed;
  89. }
  90. @override
  91. Uint8List toBytes() {
  92. var writer = new VidUsDataWriter();
  93. var baseData = super.toBytes();
  94. writer.writeBytes(baseData);
  95. writer.writeDouble(_min);
  96. writer.writeDouble(_max);
  97. writer.writeDouble(_sweepSpeed);
  98. return writer.data;
  99. }
  100. }
  101. class VidUsConvexTissuePhysicalCoordinate
  102. extends VidUsTissuePhysicalCoordinate {
  103. late double _zeroRadius;
  104. double get zeroRadius => _zeroRadius;
  105. VidUsConvexTissuePhysicalCoordinate(double depthEnd, double depthStart,
  106. double width, double beamPosition, double zeroRadius)
  107. : super(depthEnd, depthStart, width, beamPosition) {
  108. _type = PhysicalCoordinateType.ConvexTissue;
  109. _zeroRadius = zeroRadius;
  110. }
  111. @override
  112. Uint8List toBytes() {
  113. var writer = new VidUsDataWriter();
  114. var baseData = super.toBytes();
  115. writer.writeBytes(baseData);
  116. writer.writeDouble(_zeroRadius);
  117. return writer.data;
  118. }
  119. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  120. var reader = new VidUsDataReader(bytes);
  121. var type = PhysicalCoordinateType.values[reader.readByte()];
  122. if (type != PhysicalCoordinateType.ConvexTissue) {
  123. throw new Exception(
  124. "Type not matched, target type:{$PhysicalCoordinateType.ConvexTissue)}, source type:{$type}");
  125. }
  126. var depthStart = reader.readDouble();
  127. var depthEnd = reader.readDouble();
  128. var width = reader.readDouble();
  129. var beamPosition = reader.readDouble();
  130. var zeroRadius = reader.readDouble();
  131. return new VidUsConvexTissuePhysicalCoordinate(
  132. depthEnd, depthStart, width, beamPosition, zeroRadius);
  133. }
  134. }
  135. class VidUsLinearTissuePhysicalCoordinate
  136. extends VidUsTissuePhysicalCoordinate {
  137. late double _steer;
  138. double get steer => _steer;
  139. VidUsLinearTissuePhysicalCoordinate(double depthEnd, double depthStart,
  140. double width, double beamPosition, double steer)
  141. : super(depthEnd, depthStart, width, beamPosition) {
  142. _type = PhysicalCoordinateType.LinearTissue;
  143. _steer = steer;
  144. }
  145. @override
  146. Uint8List toBytes() {
  147. var writer = new VidUsDataWriter();
  148. var baseData = super.toBytes();
  149. writer.writeBytes(baseData);
  150. writer.writeDouble(_steer);
  151. return writer.data;
  152. }
  153. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  154. var reader = new VidUsDataReader(bytes);
  155. var type = PhysicalCoordinateType.values[reader.readByte()];
  156. if (type != PhysicalCoordinateType.LinearTissue) {
  157. throw new Exception(
  158. "Type not matched, target type:{$PhysicalCoordinateType.LinearTissue}, source type:{$type}");
  159. }
  160. var depthStart = reader.readDouble();
  161. var depthEnd = reader.readDouble();
  162. var width = reader.readDouble();
  163. var beamPosition = reader.readDouble();
  164. var steer = reader.readDouble();
  165. return new VidUsLinearTissuePhysicalCoordinate(
  166. depthEnd, depthStart, width, beamPosition, steer);
  167. }
  168. }
  169. class VidUsConvexTVTissuePhysicalCoordinate
  170. extends VidUsConvexTissuePhysicalCoordinate {
  171. late double _originalRocx;
  172. late double _originalZeroRadius;
  173. double get originalZeroRadius => _originalZeroRadius;
  174. double get originalRocx => _originalRocx;
  175. VidUsConvexTVTissuePhysicalCoordinate(
  176. double depthEnd,
  177. double depthStart,
  178. double width,
  179. double beamPosition,
  180. double zeroRadius,
  181. double originalZeroRadius,
  182. double originalRocx)
  183. : super(depthEnd, depthStart, width, beamPosition, zeroRadius) {
  184. _type = PhysicalCoordinateType.ConvexTVTissue;
  185. _originalRocx = originalRocx;
  186. _originalZeroRadius = originalZeroRadius;
  187. }
  188. Uint8List toBytes() {
  189. var writer = new VidUsDataWriter();
  190. var baseData = super.toBytes();
  191. writer.writeBytes(baseData);
  192. writer.writeDouble(_originalZeroRadius);
  193. writer.writeDouble(_originalRocx);
  194. return writer.data;
  195. }
  196. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  197. var reader = new VidUsDataReader(bytes);
  198. var type = PhysicalCoordinateType.values[reader.readByte()];
  199. if (type != PhysicalCoordinateType.ConvexTVTissue) {
  200. throw new Exception(
  201. "Type not matched, target type:{$PhysicalCoordinateType.ConvexTVTissue}, source type:{$type}");
  202. }
  203. var depthStart = reader.readDouble();
  204. var depthEnd = reader.readDouble();
  205. var width = reader.readDouble();
  206. var beamPosition = reader.readDouble();
  207. var zeroRadius = reader.readDouble();
  208. var originalZeroRadius = reader.readDouble();
  209. var originalRocx = reader.readDouble();
  210. return new VidUsConvexTVTissuePhysicalCoordinate(depthEnd, depthStart,
  211. width, beamPosition, zeroRadius, originalZeroRadius, originalRocx);
  212. }
  213. }
  214. class VidUsLinearTVTissuePhysicalCoordinate
  215. extends VidUsConvexTissuePhysicalCoordinate {
  216. VidUsLinearTVTissuePhysicalCoordinate(double depthEnd, double depthStart,
  217. double width, double beamPosition, double zeroRadius)
  218. : super(depthEnd, depthStart, width, beamPosition, zeroRadius) {
  219. _type = PhysicalCoordinateType.LinearTVTissue;
  220. }
  221. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  222. var reader = new VidUsDataReader(bytes);
  223. var type = PhysicalCoordinateType.values[reader.readByte()];
  224. if (type != PhysicalCoordinateType.LinearTVTissue) {
  225. throw new Exception(
  226. "Type not matched, target type:{$PhysicalCoordinateType.LinearTVTissue}, source type:{$type}");
  227. }
  228. var depthStart = reader.readDouble();
  229. var depthEnd = reader.readDouble();
  230. var width = reader.readDouble();
  231. var beamPosition = reader.readDouble();
  232. var zeroRadius = reader.readDouble();
  233. return new VidUsLinearTVTissuePhysicalCoordinate(
  234. depthEnd, depthStart, width, beamPosition, zeroRadius);
  235. }
  236. }
  237. class VidUsDopplerPhysicalCoordinate extends VidUsTimeMotionPhysicalCoordinate {
  238. late double _baseLine;
  239. double get baseLine => _baseLine;
  240. VidUsDopplerPhysicalCoordinate(
  241. double sweepSpeed, double max, double min, double baseLine)
  242. : super(sweepSpeed, max, min) {
  243. _type = PhysicalCoordinateType.Doppler;
  244. _baseLine = baseLine;
  245. }
  246. @override
  247. Uint8List toBytes() {
  248. var writer = new VidUsDataWriter();
  249. var baseData = super.toBytes();
  250. writer.writeBytes(baseData);
  251. writer.writeDouble(_baseLine);
  252. return writer.data;
  253. }
  254. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  255. var reader = new VidUsDataReader(bytes);
  256. var type = PhysicalCoordinateType.values[reader.readByte()];
  257. if (type != PhysicalCoordinateType.Doppler) {
  258. throw new Exception(
  259. "Type not matched, target type:{$PhysicalCoordinateType.Doppler}, source type:{$type}");
  260. }
  261. var min = reader.readDouble();
  262. var max = reader.readDouble();
  263. var sweepSpeed = reader.readDouble();
  264. var baseLine = reader.readDouble();
  265. return new VidUsDopplerPhysicalCoordinate(sweepSpeed, max, min, baseLine);
  266. }
  267. }
  268. class VidUsTissueTimeMotionPhysicalCoordinate
  269. extends VidUsTimeMotionPhysicalCoordinate {
  270. late double _depthStart;
  271. late double _depthEnd;
  272. double get depthStart => _depthStart;
  273. double get depthEnd => _depthEnd;
  274. VidUsTissueTimeMotionPhysicalCoordinate(double sweepSpeed, double max,
  275. double min, double depthStart, double depthEnd)
  276. : super(sweepSpeed, max, min) {
  277. _type = PhysicalCoordinateType.TissueTimeMotion;
  278. _depthEnd = depthEnd;
  279. _depthStart = depthStart;
  280. }
  281. Uint8List toBytes() {
  282. var writer = new VidUsDataWriter();
  283. var baseData = super.toBytes();
  284. writer.writeBytes(baseData);
  285. writer.writeDouble(_depthStart);
  286. writer.writeDouble(_depthEnd);
  287. return writer.data;
  288. }
  289. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  290. var reader = new VidUsDataReader(bytes);
  291. var type = PhysicalCoordinateType.values[reader.readByte()];
  292. if (type != PhysicalCoordinateType.TissueTimeMotion) {
  293. throw new Exception(
  294. "Type not matched, target type:{$PhysicalCoordinateType.TissueTimeMotion}, source type:{$type}");
  295. }
  296. var min = reader.readDouble();
  297. var max = reader.readDouble();
  298. var sweepSpeed = reader.readDouble();
  299. var depthStart = reader.readDouble();
  300. var depthEnd = reader.readDouble();
  301. return new VidUsTissueTimeMotionPhysicalCoordinate(
  302. sweepSpeed, max, min, depthStart, depthEnd);
  303. }
  304. }
  305. class VidUsMAMPhysicalCoordinate
  306. extends VidUsTissueTimeMotionPhysicalCoordinate {
  307. VidUsMAMPhysicalCoordinate(double sweepSpeed, double max, double min,
  308. double depthStart, double depthEnd)
  309. : super(sweepSpeed, max, min, depthStart, depthEnd) {
  310. _type = PhysicalCoordinateType.MAM;
  311. }
  312. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  313. var reader = new VidUsDataReader(bytes);
  314. var type = PhysicalCoordinateType.values[reader.readByte()];
  315. if (type != PhysicalCoordinateType.MAM) {
  316. throw new Exception(
  317. "Type not matched, target type:{$PhysicalCoordinateType.MAM}, source type:{$type}");
  318. }
  319. var min = reader.readDouble();
  320. var max = reader.readDouble();
  321. var sweepSpeed = reader.readDouble();
  322. var depthStart = reader.readDouble();
  323. var depthEnd = reader.readDouble();
  324. return new VidUsMAMPhysicalCoordinate(
  325. sweepSpeed, max, min, depthStart, depthEnd);
  326. }
  327. }
  328. class VidUsPWVPhysicalCoordinate
  329. extends VidUsTissueTimeMotionPhysicalCoordinate {
  330. VidUsPWVPhysicalCoordinate(double sweepSpeed, double max, double min,
  331. double depthStart, double depthEnd)
  332. : super(sweepSpeed, max, min, depthStart, depthEnd) {
  333. _type = PhysicalCoordinateType.PWV;
  334. }
  335. static VidUsPhysicalCoordinate fromBytes(Uint8List bytes) {
  336. var reader = new VidUsDataReader(bytes);
  337. var type = PhysicalCoordinateType.values[reader.readByte()];
  338. if (type != PhysicalCoordinateType.PWV) {
  339. throw new Exception(
  340. "Type not matched, target type:{$PhysicalCoordinateType.PWV}, source type:{$type}");
  341. }
  342. var min = reader.readDouble();
  343. var max = reader.readDouble();
  344. var sweepSpeed = reader.readDouble();
  345. var depthStart = reader.readDouble();
  346. var depthEnd = reader.readDouble();
  347. return new VidUsPWVPhysicalCoordinate(
  348. sweepSpeed, max, min, depthStart, depthEnd);
  349. }
  350. }