pyfast 4.12.0__cp36-abi3-manylinux1_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (311) hide show
  1. fast/README.md +41 -0
  2. fast/__init__.py +22 -0
  3. fast/bin/UFFviewer +0 -0
  4. fast/bin/fast_configuration.txt +14 -0
  5. fast/bin/runPipeline +0 -0
  6. fast/bin/systemCheck +0 -0
  7. fast/doc/bright-plotting-style.ini +66 -0
  8. fast/doc/dark-plotting-style.ini +66 -0
  9. fast/doc/fonts/UFL.txt +96 -0
  10. fast/doc/fonts/Ubuntu-Bold.ttf +0 -0
  11. fast/doc/fonts/Ubuntu-BoldItalic.ttf +0 -0
  12. fast/doc/fonts/Ubuntu-Italic.ttf +0 -0
  13. fast/doc/fonts/Ubuntu-Light.ttf +0 -0
  14. fast/doc/fonts/Ubuntu-LightItalic.ttf +0 -0
  15. fast/doc/fonts/Ubuntu-Medium.ttf +0 -0
  16. fast/doc/fonts/Ubuntu-MediumItalic.ttf +0 -0
  17. fast/doc/fonts/Ubuntu-Regular.ttf +0 -0
  18. fast/doc/fonts/UbuntuMono-Bold.ttf +0 -0
  19. fast/doc/fonts/UbuntuMono-BoldItalic.ttf +0 -0
  20. fast/doc/fonts/UbuntuMono-Italic.ttf +0 -0
  21. fast/doc/fonts/UbuntuMono-Regular.ttf +0 -0
  22. fast/doc/images/FAST_logo_square.png +0 -0
  23. fast/doc/images/fast_icon.ico +0 -0
  24. fast/doc/images/fast_icon.png +0 -0
  25. fast/entry_points.py +14 -0
  26. fast/fast.py +20057 -0
  27. fast/kernels/Algorithms/AirwaySegmentation/AirwaySegmentation.cl +85 -0
  28. fast/kernels/Algorithms/ApplyColormap/ApplyColormap.cl +146 -0
  29. fast/kernels/Algorithms/BinaryThresholding/BinaryThresholding2D.cl +61 -0
  30. fast/kernels/Algorithms/BinaryThresholding/BinaryThresholding3D.cl +61 -0
  31. fast/kernels/Algorithms/BlockMatching/BlockMatching.cl +257 -0
  32. fast/kernels/Algorithms/CenterlineExtraction/CenterlineExtraction.cl +153 -0
  33. fast/kernels/Algorithms/CoherentPointDrift/CoherentPointDrift.cl +0 -0
  34. fast/kernels/Algorithms/Color/ColorToGrayscale.cl +22 -0
  35. fast/kernels/Algorithms/Color/GrayscaleToColor.cl +19 -0
  36. fast/kernels/Algorithms/GaussianSmoothing/GaussianSmoothing2D.cl +35 -0
  37. fast/kernels/Algorithms/GaussianSmoothing/GaussianSmoothing3D.cl +75 -0
  38. fast/kernels/Algorithms/GradientVectorFlow/EulerGradientVectorFlow.cl +174 -0
  39. fast/kernels/Algorithms/GradientVectorFlow/MultigridGradientVectorFlow.cl +407 -0
  40. fast/kernels/Algorithms/HounsefieldConverter/HounsefieldConverter.cl +22 -0
  41. fast/kernels/Algorithms/ImageAdd/ImageAdd.cl +79 -0
  42. fast/kernels/Algorithms/ImageCaster/ImageCaster.cl +38 -0
  43. fast/kernels/Algorithms/ImageChannelConverter/ImageChannelConverter.cl +121 -0
  44. fast/kernels/Algorithms/ImageFlipper/ImageFlipper2D.cl +23 -0
  45. fast/kernels/Algorithms/ImageFlipper/ImageFlipper3D.cl +51 -0
  46. fast/kernels/Algorithms/ImageGradient/ImageGradient.cl +71 -0
  47. fast/kernels/Algorithms/ImageInverter/ImageInverter.cl +30 -0
  48. fast/kernels/Algorithms/ImageMultiply/ImageMultiply.cl +79 -0
  49. fast/kernels/Algorithms/ImagePatch/PatchStitcher2D.cl +22 -0
  50. fast/kernels/Algorithms/ImagePatch/PatchStitcher3D.cl +95 -0
  51. fast/kernels/Algorithms/ImageResampler/ImageResampler2D.cl +40 -0
  52. fast/kernels/Algorithms/ImageResampler/ImageResampler3D.cl +32 -0
  53. fast/kernels/Algorithms/ImageResizer/ImageResizer.cl +134 -0
  54. fast/kernels/Algorithms/ImageSharpening/ImageSharpening.cl +47 -0
  55. fast/kernels/Algorithms/ImageSlicer/ImageSlicer.cl +77 -0
  56. fast/kernels/Algorithms/ImageTransposer/ImageTransposer2D.cl +16 -0
  57. fast/kernels/Algorithms/ImageTransposer/ImageTransposer3D.cl +45 -0
  58. fast/kernels/Algorithms/IntensityClipping/IntensityClipping2D.cl +19 -0
  59. fast/kernels/Algorithms/IntensityClipping/IntensityClipping3D.cl +20 -0
  60. fast/kernels/Algorithms/IntensityNormalization/IntensityNormalization.cl +85 -0
  61. fast/kernels/Algorithms/IntensityNormalization/ZeroMeanUnitVariance.cl +76 -0
  62. fast/kernels/Algorithms/KalmanFilterModelSegmentation/AppearanceModels/RidgeEdge/RidgeEdgeModel.cl +81 -0
  63. fast/kernels/Algorithms/LabelModifier/LabelModifier.cl +20 -0
  64. fast/kernels/Algorithms/LaplacianOfGaussian/LaplacianOfGaussian2D.cl +27 -0
  65. fast/kernels/Algorithms/LevelSet/LevelSetSegmentation.cl +132 -0
  66. fast/kernels/Algorithms/LungSegmentation/LungSegmentation.cl +22 -0
  67. fast/kernels/Algorithms/MeshToSegmentation/MeshToSegmentation.cl +184 -0
  68. fast/kernels/Algorithms/Morphology/Dilation.cl +56 -0
  69. fast/kernels/Algorithms/Morphology/Erosion.cl +64 -0
  70. fast/kernels/Algorithms/NeuralNetwork/NeuralNetwork.cl +122 -0
  71. fast/kernels/Algorithms/NeuralNetwork/VertexTensorToSegmentation.cl +13 -0
  72. fast/kernels/Algorithms/NonLocalMeans/NonLocalMeans2D.cl +94 -0
  73. fast/kernels/Algorithms/SeededRegionGrowing/SeededRegionGrowing2D.cl +57 -0
  74. fast/kernels/Algorithms/SeededRegionGrowing/SeededRegionGrowing3D.cl +58 -0
  75. fast/kernels/Algorithms/Skeletonization/Skeletonization2D.cl +77 -0
  76. fast/kernels/Algorithms/SurfaceExtraction/SurfaceExtraction.cl +519 -0
  77. fast/kernels/Algorithms/SurfaceExtraction/SurfaceExtraction_no_3d_write.cl +739 -0
  78. fast/kernels/Algorithms/TemporalSmoothing/ImageMovingAverage.cl +66 -0
  79. fast/kernels/Algorithms/TemporalSmoothing/ImageWeightedMovingAverage.cl +74 -0
  80. fast/kernels/Algorithms/TissueSegmentation/TissueSegmentation.cl +18 -0
  81. fast/kernels/Algorithms/TubeSegmentationAndCenterlineExtraction/InverseGradientSegmentation.cl +203 -0
  82. fast/kernels/Algorithms/TubeSegmentationAndCenterlineExtraction/TubeSegmentationAndCenterlineExtraction.cl +566 -0
  83. fast/kernels/Algorithms/Ultrasound/EnvelopeAndLogCompressor.cl +45 -0
  84. fast/kernels/Algorithms/Ultrasound/ScanConverter.cl +76 -0
  85. fast/kernels/Algorithms/UltrasoundImageCropper/UltrasoundImageCropper.cl +31 -0
  86. fast/kernels/Algorithms/UltrasoundImageEnhancement/UltrasoundImageEnhancement.cl +27 -0
  87. fast/kernels/Algorithms/VectorMedianFilter/VectorMedianFilter.cl +31 -0
  88. fast/kernels/ImageFill.cl +30 -0
  89. fast/kernels/ImageMinMax.cl +196 -0
  90. fast/kernels/ImageSum.cl +170 -0
  91. fast/kernels/Tests/Algorithms/DoubleFilter.cl +7 -0
  92. fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.frag +8 -0
  93. fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.geom +69 -0
  94. fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.vert +17 -0
  95. fast/kernels/Visualization/HeatmapRenderer/HeatmapRenderer.cl +51 -0
  96. fast/kernels/Visualization/ImagePyramidRenderer/ImagePyramidRenderer.frag +11 -0
  97. fast/kernels/Visualization/ImagePyramidRenderer/ImagePyramidRenderer.vert +15 -0
  98. fast/kernels/Visualization/ImageRenderer/ImageRenderer.vert +15 -0
  99. fast/kernels/Visualization/ImageRenderer/ImageRendererFLOAT.frag +18 -0
  100. fast/kernels/Visualization/ImageRenderer/ImageRendererINT.frag +18 -0
  101. fast/kernels/Visualization/ImageRenderer/ImageRendererUINT.frag +18 -0
  102. fast/kernels/Visualization/LineRenderer/LineRenderer.frag +8 -0
  103. fast/kernels/Visualization/LineRenderer/LineRenderer.geom +35 -0
  104. fast/kernels/Visualization/LineRenderer/LineRenderer.vert +20 -0
  105. fast/kernels/Visualization/LineRenderer/LineRenderer3D.frag +8 -0
  106. fast/kernels/Visualization/LineRenderer/LineRenderer3D.vert +20 -0
  107. fast/kernels/Visualization/LineRenderer/LineRendererJoints.frag +15 -0
  108. fast/kernels/Visualization/LineRenderer/LineRendererJoints.vert +24 -0
  109. fast/kernels/Visualization/SegmentationLabelRenderer/SegmentationLabelRenderer.frag +11 -0
  110. fast/kernels/Visualization/SegmentationLabelRenderer/SegmentationLabelRenderer.vert +16 -0
  111. fast/kernels/Visualization/SegmentationRenderer/SegmentationPyramidRenderer.frag +53 -0
  112. fast/kernels/Visualization/SegmentationRenderer/SegmentationRenderer.frag +52 -0
  113. fast/kernels/Visualization/SegmentationRenderer/SegmentationRenderer.vert +15 -0
  114. fast/kernels/Visualization/TextRenderer/TextRenderer.frag +11 -0
  115. fast/kernels/Visualization/TextRenderer/TextRenderer.vert +20 -0
  116. fast/kernels/Visualization/TriangleRenderer/TriangleRenderer.frag +49 -0
  117. fast/kernels/Visualization/TriangleRenderer/TriangleRenderer.vert +35 -0
  118. fast/kernels/Visualization/VectorFieldRenderer/VectorFieldColorRenderer.cl +30 -0
  119. fast/kernels/Visualization/VertexRenderer/VertexRenderer.frag +14 -0
  120. fast/kernels/Visualization/VertexRenderer/VertexRenderer.vert +23 -0
  121. fast/kernels/Visualization/View.cl +10 -0
  122. fast/kernels/Visualization/VolumeRenderer/AlphaBlendingVolumeRenderer.cl +211 -0
  123. fast/kernels/Visualization/VolumeRenderer/MaximumIntensityProjection.cl +139 -0
  124. fast/kernels/Visualization/VolumeRenderer/ThresholdVolumeRenderer.cl +178 -0
  125. fast/lib/_fast.abi3.so +0 -0
  126. fast/lib/cache.json +114134 -0
  127. fast/lib/libFAST.so.4 +0 -0
  128. fast/lib/libInferenceEngineONNXRuntime.so +0 -0
  129. fast/lib/libInferenceEngineOpenVINO.so +0 -0
  130. fast/lib/libInferenceEngineTensorFlow.so +0 -0
  131. fast/lib/libInferenceEngineTensorRT.so +0 -0
  132. fast/lib/libJKQTCommonSharedLib_Release.so.4.0.0 +0 -0
  133. fast/lib/libJKQTMathTextSharedLib_Release.so.4.0.0 +0 -0
  134. fast/lib/libJKQTPlotterSharedLib_Release.so.4.0.0 +0 -0
  135. fast/lib/libOpenCL.so.1 +0 -0
  136. fast/lib/libOpenIGTLink.so.3 +0 -0
  137. fast/lib/libQt5Core.so.5 +0 -0
  138. fast/lib/libQt5DBus.so.5 +0 -0
  139. fast/lib/libQt5Gui.so.5 +0 -0
  140. fast/lib/libQt5Multimedia.so.5 +0 -0
  141. fast/lib/libQt5MultimediaGstTools.so.5 +0 -0
  142. fast/lib/libQt5MultimediaWidgets.so.5 +0 -0
  143. fast/lib/libQt5Network.so.5 +0 -0
  144. fast/lib/libQt5OpenGL.so.5 +0 -0
  145. fast/lib/libQt5PrintSupport.so.5 +0 -0
  146. fast/lib/libQt5Svg.so.5 +0 -0
  147. fast/lib/libQt5Widgets.so.5 +0 -0
  148. fast/lib/libQt5XcbQpa.so.5 +0 -0
  149. fast/lib/libQt5Xml.so.5 +0 -0
  150. fast/lib/libbrotlicommon.so.1 +0 -0
  151. fast/lib/libbrotlidec.so.1 +0 -0
  152. fast/lib/libbrotlienc.so.1 +0 -0
  153. fast/lib/libcrypto.so.1.1 +0 -0
  154. fast/lib/libdcmdata.so.17 +0 -0
  155. fast/lib/libdcmimage.so.17 +0 -0
  156. fast/lib/libdcmimgle.so.17 +0 -0
  157. fast/lib/libdcmjpeg.so.17 +0 -0
  158. fast/lib/libgna.so.3 +0 -0
  159. fast/lib/libijg12.so +0 -0
  160. fast/lib/libijg12.so.17 +0 -0
  161. fast/lib/libijg16.so +0 -0
  162. fast/lib/libijg16.so.17 +0 -0
  163. fast/lib/libijg8.so +0 -0
  164. fast/lib/libijg8.so.17 +0 -0
  165. fast/lib/libjxl.so.0.11 +0 -0
  166. fast/lib/libjxl_cms.so.0.11 +0 -0
  167. fast/lib/libjxl_threads.so.0.11 +0 -0
  168. fast/lib/liboflog.so.17 +0 -0
  169. fast/lib/libofstd.so.17 +0 -0
  170. fast/lib/libonnxruntime.so.1 +0 -0
  171. fast/lib/libopenslide.so.1 +0 -0
  172. fast/lib/libopenvino.so.2230 +0 -0
  173. fast/lib/libopenvino_auto_batch_plugin.so +0 -0
  174. fast/lib/libopenvino_auto_plugin.so +0 -0
  175. fast/lib/libopenvino_gapi_preproc.so +0 -0
  176. fast/lib/libopenvino_hetero_plugin.so +0 -0
  177. fast/lib/libopenvino_intel_cpu_plugin.so +0 -0
  178. fast/lib/libopenvino_intel_gna_plugin.so +0 -0
  179. fast/lib/libopenvino_intel_gpu_plugin.so +0 -0
  180. fast/lib/libopenvino_ir_frontend.so.2230 +0 -0
  181. fast/lib/libopenvino_onnx_frontend.so.2230 +0 -0
  182. fast/lib/libopenvino_paddle_frontend.so.2230 +0 -0
  183. fast/lib/libopenvino_tensorflow_frontend.so.2230 +0 -0
  184. fast/lib/libpugixml.so.1 +0 -0
  185. fast/lib/librealsense2.so.2.40 +0 -0
  186. fast/lib/libssl.so.1.1 +0 -0
  187. fast/lib/libtbb.so.2 +0 -0
  188. fast/lib/libtiff.so.5 +0 -0
  189. fast/lib/libz.so.1 +0 -0
  190. fast/lib/plugins.xml +22 -0
  191. fast/licenses/OpenIGTLink/LICENSE.txt +30 -0
  192. fast/licenses/OpenJPEG/LICENSE +39 -0
  193. fast/licenses/OpenSlide/CHANGELOG.md +153 -0
  194. fast/licenses/OpenSlide/COPYING.LESSER +504 -0
  195. fast/licenses/OpenSlide/README.md +99 -0
  196. fast/licenses/OpenSlide/VERSIONS.md +20 -0
  197. fast/licenses/OpenSlide/versions.json +112 -0
  198. fast/licenses/PCRE2/LICENCE.md +103 -0
  199. fast/licenses/SQLite/PUBLIC-DOMAIN.txt +9 -0
  200. fast/licenses/cairo/COPYING +33 -0
  201. fast/licenses/cairo/COPYING-LGPL-2.1 +510 -0
  202. fast/licenses/cairo/COPYING-MPL-1.1 +470 -0
  203. fast/licenses/clarius/LICENSE +29 -0
  204. fast/licenses/dcmtk/COPYRIGHT +1034 -0
  205. fast/licenses/eigen/COPYING.APACHE +203 -0
  206. fast/licenses/eigen/COPYING.BSD +26 -0
  207. fast/licenses/eigen/COPYING.GPL +674 -0
  208. fast/licenses/eigen/COPYING.LGPL +502 -0
  209. fast/licenses/eigen/COPYING.MINPACK +51 -0
  210. fast/licenses/eigen/COPYING.MPL2 +373 -0
  211. fast/licenses/eigen/COPYING.README +18 -0
  212. fast/licenses/fast/LICENSE +25 -0
  213. fast/licenses/gdk-pixbuf/COPYING +502 -0
  214. fast/licenses/glib/COPYING +175 -0
  215. fast/licenses/hdf5/COPYING +106 -0
  216. fast/licenses/jkqtplotter/LICENSE +505 -0
  217. fast/licenses/jpegxl/LICENSE.brotli +19 -0
  218. fast/licenses/jpegxl/LICENSE.highway +201 -0
  219. fast/licenses/jpegxl/LICENSE.jpeg-xl +27 -0
  220. fast/licenses/jpegxl/LICENSE.skcms +29 -0
  221. fast/licenses/jpegxl/PATENTS +22 -0
  222. fast/licenses/libdicom/LICENSE +21 -0
  223. fast/licenses/libffi/LICENSE +21 -0
  224. fast/licenses/libjpeg-turbo/LICENSE.md +135 -0
  225. fast/licenses/libjpeg-turbo/README.ijg +260 -0
  226. fast/licenses/libpng/LICENSE +134 -0
  227. fast/licenses/libtiff/LICENSE.md +23 -0
  228. fast/licenses/libxml2/Copyright +24 -0
  229. fast/licenses/onnxruntime/LICENSE +21 -0
  230. fast/licenses/onnxruntime/Privacy.md +21 -0
  231. fast/licenses/onnxruntime/ThirdPartyNotices.txt +6156 -0
  232. fast/licenses/opencl/LICENSE +201 -0
  233. fast/licenses/openssl/copyright +135 -0
  234. fast/licenses/openvino/Apache_license.txt +201 -0
  235. fast/licenses/openvino/EULA.htm +43 -0
  236. fast/licenses/openvino/EULA.rtf +61 -0
  237. fast/licenses/openvino/EULA.txt +163 -0
  238. fast/licenses/openvino/GNA SOFTWARE LICENSE AGREEMENT.txt +1 -0
  239. fast/licenses/openvino/Intel_Software_Development_Products.rtf +1217 -0
  240. fast/licenses/openvino/Intel_Software_Development_Products.txt +707 -0
  241. fast/licenses/openvino/LICENSE +201 -0
  242. fast/licenses/openvino/OpenVINOsupport.txt +12 -0
  243. fast/licenses/openvino/onednn_third-party-programs.txt +557 -0
  244. fast/licenses/openvino/readme.txt +60 -0
  245. fast/licenses/openvino/redist.txt +42 -0
  246. fast/licenses/openvino/runtime-third-party-programs.txt +1400 -0
  247. fast/licenses/openvino/tbb_third-party-programs.txt +230 -0
  248. fast/licenses/pixman/COPYING +42 -0
  249. fast/licenses/qt5/LICENSE.FDL +450 -0
  250. fast/licenses/qt5/LICENSE.GPL3-EXCEPT +704 -0
  251. fast/licenses/qt5/LICENSE.GPLv2 +292 -0
  252. fast/licenses/qt5/LICENSE.GPLv3 +686 -0
  253. fast/licenses/qt5/LICENSE.LGPLv21 +514 -0
  254. fast/licenses/qt5/LICENSE.LGPLv3 +175 -0
  255. fast/licenses/qt5/LICENSE.QT-LICENSE-AGREEMENT +1331 -0
  256. fast/licenses/realsense/LICENSE +202 -0
  257. fast/licenses/realsense/NOTICE +937 -0
  258. fast/licenses/semaphore/Semaphore_LICENSE.txt +17 -0
  259. fast/licenses/tensorflow/LICENSE +203 -0
  260. fast/licenses/tensorflow/THIRD_PARTY_TF_C_LICENSES +8992 -0
  261. fast/licenses/tiff/COPYRIGHT +21 -0
  262. fast/licenses/uthash/LICENSE +21 -0
  263. fast/licenses/zip/UNLICENSE +26 -0
  264. fast/licenses/zlib/README +115 -0
  265. fast/licenses/zlib-ng/LICENSE.md +19 -0
  266. fast/pipelines/uff_viewer/colormap_and_reject.fpl +26 -0
  267. fast/pipelines/uff_viewer/default.fpl +9 -0
  268. fast/pipelines/uff_viewer/non_local_means.fpl +34 -0
  269. fast/plugins/bearer/libqconnmanbearer.so +0 -0
  270. fast/plugins/bearer/libqgenericbearer.so +0 -0
  271. fast/plugins/bearer/libqnmbearer.so +0 -0
  272. fast/plugins/egldeviceintegrations/libqeglfs-emu-integration.so +0 -0
  273. fast/plugins/egldeviceintegrations/libqeglfs-kms-egldevice-integration.so +0 -0
  274. fast/plugins/egldeviceintegrations/libqeglfs-x11-integration.so +0 -0
  275. fast/plugins/generic/libqevdevkeyboardplugin.so +0 -0
  276. fast/plugins/generic/libqevdevmouseplugin.so +0 -0
  277. fast/plugins/generic/libqevdevtabletplugin.so +0 -0
  278. fast/plugins/generic/libqevdevtouchplugin.so +0 -0
  279. fast/plugins/generic/libqtuiotouchplugin.so +0 -0
  280. fast/plugins/iconengines/libqsvgicon.so +0 -0
  281. fast/plugins/imageformats/libqgif.so +0 -0
  282. fast/plugins/imageformats/libqicns.so +0 -0
  283. fast/plugins/imageformats/libqico.so +0 -0
  284. fast/plugins/imageformats/libqjpeg.so +0 -0
  285. fast/plugins/imageformats/libqsvg.so +0 -0
  286. fast/plugins/imageformats/libqtga.so +0 -0
  287. fast/plugins/imageformats/libqtiff.so +0 -0
  288. fast/plugins/imageformats/libqwbmp.so +0 -0
  289. fast/plugins/imageformats/libqwebp.so +0 -0
  290. fast/plugins/mediaservice/libgstaudiodecoder.so +0 -0
  291. fast/plugins/mediaservice/libgstcamerabin.so +0 -0
  292. fast/plugins/mediaservice/libgstmediacapture.so +0 -0
  293. fast/plugins/mediaservice/libgstmediaplayer.so +0 -0
  294. fast/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so +0 -0
  295. fast/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so +0 -0
  296. fast/plugins/platforms/libqeglfs.so +0 -0
  297. fast/plugins/platforms/libqminimal.so +0 -0
  298. fast/plugins/platforms/libqminimalegl.so +0 -0
  299. fast/plugins/platforms/libqoffscreen.so +0 -0
  300. fast/plugins/platforms/libqvnc.so +0 -0
  301. fast/plugins/platforms/libqxcb.so +0 -0
  302. fast/plugins/platformthemes/libqxdgdesktopportal.so +0 -0
  303. fast/plugins/playlistformats/libqtmultimedia_m3u.so +0 -0
  304. fast/plugins/sqldrivers/libqsqlite.so +0 -0
  305. fast/plugins/xcbglintegrations/libqxcb-egl-integration.so +0 -0
  306. fast/plugins/xcbglintegrations/libqxcb-glx-integration.so +0 -0
  307. pyfast-4.12.0.dist-info/METADATA +81 -0
  308. pyfast-4.12.0.dist-info/RECORD +311 -0
  309. pyfast-4.12.0.dist-info/WHEEL +5 -0
  310. pyfast-4.12.0.dist-info/entry_points.txt +5 -0
  311. pyfast-4.12.0.dist-info/top_level.txt +1 -0
fast/README.md ADDED
@@ -0,0 +1,41 @@
1
+ ![](https://github.com/smistad/FAST/wiki/images/fast_logo.png)
2
+
3
+ FAST (Framework for Heterogeneous Medical Image Computing and Visualization) is an open-source cross-platform framework with the main goal of making it easier to do high performance processing and visualization of medical images on heterogeneous systems utilizing both multi-core CPUs and GPUs. To achieve this, FAST is constructed using modern C++, OpenCL and OpenGL.
4
+
5
+ To start using the framework, please see the [project wiki](https://github.com/smistad/FAST/wiki/). To run the examples in this release download the [test data](https://github.com/smistad/FAST/wiki/Test-data) and put it in the same folder as this readme.
6
+
7
+ FAST has been described in the following research articles. If you use this framework for research please cite them:
8
+
9
+ *[FAST: framework for heterogeneous medical image computing and visualization](http://www.eriksmistad.no/wp-content/uploads/FAST_framework_for_heterogeneous_medical_image_computing_and_visualization.pdf)
10
+ Erik Smistad, Mohammadmehdi Bozorgi, Frank Lindseth
11
+ International Journal of Computer Assisted Radiology and Surgery 2015*
12
+
13
+ *[High Performance Neural Network Inference, Streaming, and Visualization of Medical Images Using FAST](https://www.eriksmistad.no/wp-content/uploads/High-Performance-Neural-Network-Inference-Streaming-and-Visualization-of-Medical-Images-Using-FAST.pdf)
14
+ Erik Smistad, Andreas Østvik, André Pedersen
15
+ IEEE Access 2019*
16
+
17
+ [![Join the chat at https://gitter.im/smistad/FAST](https://badges.gitter.im/smistad/FAST.svg)](https://gitter.im/smistad/FAST?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
18
+
19
+
20
+ Licenses
21
+ =========================
22
+ This FAST release is bundled with the following third-party software:
23
+
24
+ * [Qt5](https://www.qt.io)
25
+ * [Eigen](http://eigen.tuxfamily.org)
26
+ * [Eigen SWIG interface (BSD 3-clause)](https://github.com/Biomechanical-ToolKit/BTKCore/blob/master/Utilities/SWIG/eigen.i)
27
+ * [zlib](http://www.zlib.net)
28
+ * [OpenIGTLink](http://openigtlink.org)
29
+ * [NumPy](http://www.numpy.org)
30
+ * [Semaphore C++11 implementation by Jeff Preshing](https://github.com/preshing/cpp11-on-multicore)
31
+ * [DCMTK](https://github.com/DCMTK/dcmtk)
32
+ * [TensorFlow (Apache 2.0)](http://tensorflow.org)
33
+ * [Clarius Ultrasound Listener API (BSD 3-clause)](https://github.com/clariusdev/listener)
34
+ * [OpenSlide](https://openslide.org)
35
+ * [TIFF](http://www.libtiff.org/)
36
+ * [RealSense](https://github.com/IntelRealSense/librealsense)
37
+ * [OpenVINO (Apache 2.0)](http://github.com/opencv/dldt) which uses [TBB (Apache 2.0)](https://github.com/intel/tbb), [clDNN (Apache 2.0)](https://github.com/intel/cldnn), [MKL-DNN (Apache 2.0)](https://github.com/intel/mkl-dnn), [ADE (Apache 2.0)](https://github.com/opencv/ade), [pugixml (MIT)](https://pugixml.org/) and the [G-API (fluid) code from OpenCV (BSD 3-clause)](https://github.com/opencv/opencv/wiki/Graph-API)
38
+ * [hdf5](https://bitbucket.hdfgroup.org/projects/HDFFV/repos/hdf5/browse)
39
+ * [JKQtPlotter (LGPL 2.1)](https://github.com/jkriege2/JKQtPlotter)
40
+
41
+ The license of each software can be found in the licenses folder.
fast/__init__.py ADDED
@@ -0,0 +1,22 @@
1
+ # Check that user is importing FAST in main thread, which is necessary for Qt
2
+ import threading
3
+ if threading.current_thread() != threading.main_thread():
4
+ raise ImportError('FAST must be imported in main thread (import fast)!')
5
+
6
+ import os
7
+ import sys
8
+ is_windows = sys.platform.startswith('win')
9
+ # Set base path in config to be two directories up from where the python module is
10
+ bin_path = path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'bin'))
11
+ if is_windows:
12
+ path = bin_path
13
+ else:
14
+ path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'lib'))
15
+ sys.path.append(path) # This is needed to find _fast binary python extension
16
+ os.environ['PATH'] = path + os.pathsep + os.environ['PATH'] # This is needed in order for C++ to dynamically load DLLs
17
+
18
+ from .fast import *
19
+ fast.Config.setBasePath(bin_path)
20
+ fast.Config.setTerminateHandlerDisabled(True)
21
+ if True not in [x in sys.argv[0] for x in ['UFFviewer', 'runPipeline', 'systemCheck']]:
22
+ fast.ImageFileImporter.create('') # Trigger splash, GL context initialization etc.
fast/bin/UFFviewer ADDED
Binary file
@@ -0,0 +1,14 @@
1
+ ## FAST Configuration file
2
+ #TestDataPath = /path/to/data/
3
+ #KernelSourcePath = /path/to/kernel/source/FAST/
4
+ #KernelBinaryPath = /path/to/kernel/binary/
5
+ #DocumentationPath = /path/to/doc/
6
+ #PipelinePath = /path/to/pipeline/
7
+
8
+ #TestDataPath = @ROOT@/data/
9
+ KernelSourcePath = @ROOT@/kernels/
10
+ KernelBinaryPath = @ROOT@/kernel_binaries/
11
+ DocumentationPath = @ROOT@/doc/
12
+ PipelinePath = @ROOT@/pipelines/
13
+ LibraryPath = @ROOT@/lib/
14
+ QtPluginsPath = @ROOT@/plugins/
fast/bin/runPipeline ADDED
Binary file
fast/bin/systemCheck ADDED
Binary file
@@ -0,0 +1,66 @@
1
+ [plots]
2
+ widget_background_color=#FFFFFF
3
+ widget_background_color_for_export=#FFFFFF
4
+ plot_background_color=#FFFFFF
5
+ graphs\graphs_base\linewidth=3
6
+ graphs\graphs_base\symbol_size=0
7
+ graphs\graphs_base\symbol_line_width=0.75
8
+ graphs\graphs_base\symbol_fill_color_mode=lighter
9
+ graphs\graphs_base\error_color_mode=lighter
10
+ graphs\graphs_barchart\linewidth=0
11
+ graphs\graphs_barchart\fill_color_mode=same
12
+ graphs\graphs_boxplot\graph_color_mode=same_non_transparent
13
+ graphs\graphs_filled\fill_color_mode=more_transparent
14
+ graphs\graphs_geometric\color=black
15
+ graphs\graphs_annotation\color=black
16
+ graphs\graphs_annotation\text_color=black
17
+ text_default_color=#0A0A0A
18
+ plot_frame_color=#0A0A0A
19
+ key\frame_color=#0A0A0A
20
+ key\background_color=#CCCCCC
21
+ key\text_color=#0A0A0A
22
+ axis_x\color=#000000
23
+ axis_x\line_width=1
24
+ axis_x\grid\style=dash
25
+ axis_x\grid\color=#0A0A0A
26
+ axis_x\minor_grid\color=#0A0A0A
27
+ axis_x\minor_tick\inside_length=2
28
+ axis_x\minor_tick\outside_length=2
29
+ axis_x\ticks\width=1
30
+ axis_x\zero_line\line_width=1
31
+ axis_x\zero_line\color=#0A0A0A
32
+ axis_y\color=#0A0A0A
33
+ axis_y\line_width=1
34
+ axis_y\grid\color=#0A0A0A
35
+ axis_y\grid\style=dash
36
+ axis_y\minor_grid\color=#0A0A0A
37
+ axis_y\minor_tick\inside_length=2
38
+ axis_y\minor_tick\outside_length=2
39
+ axis_y\ticks\width=1
40
+ axis_y\zero_line\line_width=1
41
+ axis_y\zero_line\color=#0A0A0A
42
+ axis_colorbar_right\color=#0A0A0A
43
+ axis_colorbar_right\draw_mode2=line+ticks+labels+axislabel
44
+ axis_colorbar_right\line_width=1
45
+ axis_colorbar_right\grid\color=#0A0A0A
46
+ axis_colorbar_right\minor_tick\inside_length=2
47
+ axis_colorbar_right\minor_tick\outside_length=2
48
+ axis_colorbar_right\ticks\width=1
49
+ axis_colorbar_right\zero_line\line_width=1
50
+ axis_colorbar_right\zero_line\color=#0A0A0A
51
+ axis_colorbar_top\color=#0A0A0A
52
+ axis_colorbar_top\line_width=1
53
+ axis_colorbar_top\grid\color=#0A0A0A
54
+ axis_colorbar_top\minor_tick\inside_length=2
55
+ axis_colorbar_top\minor_tick\outside_length=2
56
+ axis_colorbar_top\ticks\width=1
57
+ axis_colorbar_top\zero_line\line_width=1
58
+ axis_colorbar_top\zero_line\color=#0A0A0A
59
+ graphs\auto_styles\color0="#3DFF00,80%"
60
+ graphs\auto_styles\color1="#FF3D00,80%"
61
+ graphs\auto_styles\color2="#FF3D00,80%"
62
+ graphs\auto_styles\color3="#FFEB3B,80%"
63
+ graphs\auto_styles\color4="#FF9800,80%"
64
+ graphs\auto_styles\color5="#9C27B0,80%"
65
+ graphs\auto_styles\color6="#29B6F6,80%"
66
+ graphs\auto_styles\color7="blue,80%"
@@ -0,0 +1,66 @@
1
+ [plots]
2
+ widget_background_color=#000000
3
+ widget_background_color_for_export=#000000
4
+ plot_background_color=#000000
5
+ graphs\graphs_base\linewidth=3
6
+ graphs\graphs_base\symbol_size=0
7
+ graphs\graphs_base\symbol_line_width=0.75
8
+ graphs\graphs_base\symbol_fill_color_mode=darker
9
+ graphs\graphs_base\error_color_mode=lighter
10
+ graphs\graphs_barchart\linewidth=0
11
+ graphs\graphs_barchart\fill_color_mode=same
12
+ graphs\graphs_boxplot\graph_color_mode=same_non_transparent
13
+ graphs\graphs_filled\fill_color_mode=more_transparent
14
+ graphs\graphs_geometric\color=white
15
+ graphs\graphs_annotation\color=white
16
+ graphs\graphs_annotation\text_color=white
17
+ text_default_color=#FAFAFA
18
+ plot_frame_color=#FAFAFA
19
+ key\frame_color=#FAFAFA
20
+ key\background_color=#424242
21
+ key\text_color=#FAFAFA
22
+ axis_x\color=#000000
23
+ axis_x\line_width=1
24
+ axis_x\grid\style=dash
25
+ axis_x\grid\color=#616161
26
+ axis_x\minor_grid\color=#616161
27
+ axis_x\minor_tick\inside_length=2
28
+ axis_x\minor_tick\outside_length=2
29
+ axis_x\ticks\width=1
30
+ axis_x\zero_line\line_width=1
31
+ axis_x\zero_line\color=#FAFAFA
32
+ axis_y\color=#FAFAFA
33
+ axis_y\line_width=1
34
+ axis_y\grid\color=#616161
35
+ axis_y\grid\style=dash
36
+ axis_y\minor_grid\color=#616161
37
+ axis_y\minor_tick\inside_length=2
38
+ axis_y\minor_tick\outside_length=2
39
+ axis_y\ticks\width=1
40
+ axis_y\zero_line\line_width=1
41
+ axis_y\zero_line\color=#FAFAFA
42
+ axis_colorbar_right\color=#FAFAFA
43
+ axis_colorbar_right\draw_mode2=line+ticks+labels+axislabel
44
+ axis_colorbar_right\line_width=1
45
+ axis_colorbar_right\grid\color=#616161
46
+ axis_colorbar_right\minor_tick\inside_length=2
47
+ axis_colorbar_right\minor_tick\outside_length=2
48
+ axis_colorbar_right\ticks\width=1
49
+ axis_colorbar_right\zero_line\line_width=1
50
+ axis_colorbar_right\zero_line\color=#FAFAFA
51
+ axis_colorbar_top\color=#FAFAFA
52
+ axis_colorbar_top\line_width=1
53
+ axis_colorbar_top\grid\color=#616161
54
+ axis_colorbar_top\minor_tick\inside_length=2
55
+ axis_colorbar_top\minor_tick\outside_length=2
56
+ axis_colorbar_top\ticks\width=1
57
+ axis_colorbar_top\zero_line\line_width=1
58
+ axis_colorbar_top\zero_line\color=#FAFAFA
59
+ graphs\auto_styles\color0="#6DFF42,80%"
60
+ graphs\auto_styles\color1="#FF3D00,80%"
61
+ graphs\auto_styles\color2="#24C7FF,80%"
62
+ graphs\auto_styles\color3="#FFEB3B,80%"
63
+ graphs\auto_styles\color4="#FF9800,80%"
64
+ graphs\auto_styles\color5="#9C27B0,80%"
65
+ graphs\auto_styles\color6="#29B6F6,80%"
66
+ graphs\auto_styles\color7="blue,80%"
fast/doc/fonts/UFL.txt ADDED
@@ -0,0 +1,96 @@
1
+ -------------------------------
2
+ UBUNTU FONT LICENCE Version 1.0
3
+ -------------------------------
4
+
5
+ PREAMBLE
6
+ This licence allows the licensed fonts to be used, studied, modified and
7
+ redistributed freely. The fonts, including any derivative works, can be
8
+ bundled, embedded, and redistributed provided the terms of this licence
9
+ are met. The fonts and derivatives, however, cannot be released under
10
+ any other licence. The requirement for fonts to remain under this
11
+ licence does not require any document created using the fonts or their
12
+ derivatives to be published under this licence, as long as the primary
13
+ purpose of the document is not to be a vehicle for the distribution of
14
+ the fonts.
15
+
16
+ DEFINITIONS
17
+ "Font Software" refers to the set of files released by the Copyright
18
+ Holder(s) under this licence and clearly marked as such. This may
19
+ include source files, build scripts and documentation.
20
+
21
+ "Original Version" refers to the collection of Font Software components
22
+ as received under this licence.
23
+
24
+ "Modified Version" refers to any derivative made by adding to, deleting,
25
+ or substituting -- in part or in whole -- any of the components of the
26
+ Original Version, by changing formats or by porting the Font Software to
27
+ a new environment.
28
+
29
+ "Copyright Holder(s)" refers to all individuals and companies who have a
30
+ copyright ownership of the Font Software.
31
+
32
+ "Substantially Changed" refers to Modified Versions which can be easily
33
+ identified as dissimilar to the Font Software by users of the Font
34
+ Software comparing the Original Version with the Modified Version.
35
+
36
+ To "Propagate" a work means to do anything with it that, without
37
+ permission, would make you directly or secondarily liable for
38
+ infringement under applicable copyright law, except executing it on a
39
+ computer or modifying a private copy. Propagation includes copying,
40
+ distribution (with or without modification and with or without charging
41
+ a redistribution fee), making available to the public, and in some
42
+ countries other activities as well.
43
+
44
+ PERMISSION & CONDITIONS
45
+ This licence does not grant any rights under trademark law and all such
46
+ rights are reserved.
47
+
48
+ Permission is hereby granted, free of charge, to any person obtaining a
49
+ copy of the Font Software, to propagate the Font Software, subject to
50
+ the below conditions:
51
+
52
+ 1) Each copy of the Font Software must contain the above copyright
53
+ notice and this licence. These can be included either as stand-alone
54
+ text files, human-readable headers or in the appropriate machine-
55
+ readable metadata fields within text or binary files as long as those
56
+ fields can be easily viewed by the user.
57
+
58
+ 2) The font name complies with the following:
59
+ (a) The Original Version must retain its name, unmodified.
60
+ (b) Modified Versions which are Substantially Changed must be renamed to
61
+ avoid use of the name of the Original Version or similar names entirely.
62
+ (c) Modified Versions which are not Substantially Changed must be
63
+ renamed to both (i) retain the name of the Original Version and (ii) add
64
+ additional naming elements to distinguish the Modified Version from the
65
+ Original Version. The name of such Modified Versions must be the name of
66
+ the Original Version, with "derivative X" where X represents the name of
67
+ the new work, appended to that name.
68
+
69
+ 3) The name(s) of the Copyright Holder(s) and any contributor to the
70
+ Font Software shall not be used to promote, endorse or advertise any
71
+ Modified Version, except (i) as required by this licence, (ii) to
72
+ acknowledge the contribution(s) of the Copyright Holder(s) or (iii) with
73
+ their explicit written permission.
74
+
75
+ 4) The Font Software, modified or unmodified, in part or in whole, must
76
+ be distributed entirely under this licence, and must not be distributed
77
+ under any other licence. The requirement for fonts to remain under this
78
+ licence does not affect any document created using the Font Software,
79
+ except any version of the Font Software extracted from a document
80
+ created using the Font Software may only be distributed under this
81
+ licence.
82
+
83
+ TERMINATION
84
+ This licence becomes null and void if any of the above conditions are
85
+ not met.
86
+
87
+ DISCLAIMER
88
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
89
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
90
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
91
+ COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
92
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
93
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
94
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
95
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
96
+ DEALINGS IN THE FONT SOFTWARE.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
fast/entry_points.py ADDED
@@ -0,0 +1,14 @@
1
+ import subprocess
2
+ import sys
3
+ import os
4
+
5
+ bin_path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'bin'))
6
+
7
+ def runUFFviewer():
8
+ subprocess.run([os.path.join(bin_path, 'UFFviewer')] + sys.argv[1:])
9
+
10
+ def runSystemCheck():
11
+ subprocess.run([os.path.join(bin_path, 'systemCheck')] + sys.argv[1:])
12
+
13
+ def runRunPipeline():
14
+ subprocess.run([os.path.join(bin_path, 'runPipeline')] + sys.argv[1:])