pyfast 4.12.0__cp36-abi3-macosx_10_13_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 (279) 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 +19961 -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/libFAST.4.dylib +0 -0
  127. fast/lib/libInferenceEngineONNXRuntime.dylib +0 -0
  128. fast/lib/libInferenceEngineOpenVINO.dylib +0 -0
  129. fast/lib/libInferenceEngineTensorFlow.dylib +0 -0
  130. fast/lib/libJKQTCommonSharedLib_Release.4.0.0.dylib +0 -0
  131. fast/lib/libJKQTFastPlotterSharedLib_Release.4.0.0.dylib +0 -0
  132. fast/lib/libJKQTMathTextSharedLib_Release.4.0.0.dylib +0 -0
  133. fast/lib/libJKQTPlotterSharedLib_Release.4.0.0.dylib +0 -0
  134. fast/lib/libOpenIGTLink.3.dylib +0 -0
  135. fast/lib/libQt5Core.5.dylib +0 -0
  136. fast/lib/libQt5DBus.5.dylib +0 -0
  137. fast/lib/libQt5Gui.5.dylib +0 -0
  138. fast/lib/libQt5Multimedia.5.dylib +0 -0
  139. fast/lib/libQt5MultimediaWidgets.5.dylib +0 -0
  140. fast/lib/libQt5Network.5.dylib +0 -0
  141. fast/lib/libQt5OpenGL.5.dylib +0 -0
  142. fast/lib/libQt5PrintSupport.5.dylib +0 -0
  143. fast/lib/libQt5SerialPort.5.dylib +0 -0
  144. fast/lib/libQt5Svg.5.dylib +0 -0
  145. fast/lib/libQt5Widgets.5.dylib +0 -0
  146. fast/lib/libQt5Xml.5.dylib +0 -0
  147. fast/lib/libbrotlicommon.1.dylib +0 -0
  148. fast/lib/libbrotlidec.1.dylib +0 -0
  149. fast/lib/libbrotlienc.1.dylib +0 -0
  150. fast/lib/libdcmdata.17.dylib +0 -0
  151. fast/lib/libdcmimage.17.dylib +0 -0
  152. fast/lib/libdcmimgle.17.dylib +0 -0
  153. fast/lib/libdcmjpeg.17.dylib +0 -0
  154. fast/lib/libijg12.17.dylib +0 -0
  155. fast/lib/libijg12.dylib +0 -0
  156. fast/lib/libijg16.17.dylib +0 -0
  157. fast/lib/libijg16.dylib +0 -0
  158. fast/lib/libijg8.17.dylib +0 -0
  159. fast/lib/libijg8.dylib +0 -0
  160. fast/lib/libjxl.0.11.dylib +0 -0
  161. fast/lib/libjxl_cms.0.11.dylib +0 -0
  162. fast/lib/libjxl_threads.0.11.dylib +0 -0
  163. fast/lib/liboflog.17.dylib +0 -0
  164. fast/lib/libofstd.17.dylib +0 -0
  165. fast/lib/libonnxruntime.1.14.0.dylib +0 -0
  166. fast/lib/libonnxruntime.dylib +0 -0
  167. fast/lib/libopenslide.1.dylib +0 -0
  168. fast/lib/libopenvino.2230.dylib +0 -0
  169. fast/lib/libopenvino_auto_batch_plugin.so +0 -0
  170. fast/lib/libopenvino_auto_plugin.so +0 -0
  171. fast/lib/libopenvino_gapi_preproc.so +0 -0
  172. fast/lib/libopenvino_hetero_plugin.so +0 -0
  173. fast/lib/libopenvino_intel_cpu_plugin.so +0 -0
  174. fast/lib/libopenvino_ir_frontend.2230.dylib +0 -0
  175. fast/lib/libopenvino_onnx_frontend.2230.dylib +0 -0
  176. fast/lib/libopenvino_paddle_frontend.2230.dylib +0 -0
  177. fast/lib/libopenvino_tensorflow_frontend.2230.dylib +0 -0
  178. fast/lib/libtbb.dylib +0 -0
  179. fast/lib/libz.1.dylib +0 -0
  180. fast/lib/plugins.xml +16 -0
  181. fast/licenses/OpenIGTLink/LICENSE.txt +30 -0
  182. fast/licenses/OpenJPEG/LICENSE +39 -0
  183. fast/licenses/OpenSlide/COPYING.LESSER +504 -0
  184. fast/licenses/PCRE2/LICENCE.md +103 -0
  185. fast/licenses/cairo/COPYING +33 -0
  186. fast/licenses/cairo/COPYING-LGPL-2.1 +510 -0
  187. fast/licenses/cairo/COPYING-MPL-1.1 +470 -0
  188. fast/licenses/clarius/LICENSE +29 -0
  189. fast/licenses/dcmtk/COPYRIGHT +1034 -0
  190. fast/licenses/eigen/COPYING.APACHE +203 -0
  191. fast/licenses/eigen/COPYING.BSD +26 -0
  192. fast/licenses/eigen/COPYING.GPL +674 -0
  193. fast/licenses/eigen/COPYING.LGPL +502 -0
  194. fast/licenses/eigen/COPYING.MINPACK +51 -0
  195. fast/licenses/eigen/COPYING.MPL2 +373 -0
  196. fast/licenses/eigen/COPYING.README +18 -0
  197. fast/licenses/fast/LICENSE +25 -0
  198. fast/licenses/gdk-pixbuf/COPYING +502 -0
  199. fast/licenses/glib/COPYING +175 -0
  200. fast/licenses/hdf5/COPYING +106 -0
  201. fast/licenses/jkqtplotter/LICENSE +505 -0
  202. fast/licenses/jpegxl/LICENSE.brotli +19 -0
  203. fast/licenses/jpegxl/LICENSE.highway +201 -0
  204. fast/licenses/jpegxl/LICENSE.jpeg-xl +27 -0
  205. fast/licenses/jpegxl/LICENSE.skcms +29 -0
  206. fast/licenses/jpegxl/PATENTS +22 -0
  207. fast/licenses/libdicom/LICENSE +21 -0
  208. fast/licenses/libjpeg-turbo/LICENSE.md +135 -0
  209. fast/licenses/libjpeg-turbo/README.ijg +260 -0
  210. fast/licenses/libpng/LICENSE +134 -0
  211. fast/licenses/libtiff/LICENSE.md +23 -0
  212. fast/licenses/onnxruntime/LICENSE +21 -0
  213. fast/licenses/onnxruntime/Privacy.md +21 -0
  214. fast/licenses/onnxruntime/ThirdPartyNotices.txt +5786 -0
  215. fast/licenses/opencl/LICENSE +201 -0
  216. fast/licenses/openvino/Apache_license.txt +201 -0
  217. fast/licenses/openvino/EULA.htm +43 -0
  218. fast/licenses/openvino/EULA.rtf +61 -0
  219. fast/licenses/openvino/EULA.txt +163 -0
  220. fast/licenses/openvino/GNA SOFTWARE LICENSE AGREEMENT.txt +1 -0
  221. fast/licenses/openvino/Intel_Software_Development_Products.rtf +1217 -0
  222. fast/licenses/openvino/Intel_Software_Development_Products.txt +707 -0
  223. fast/licenses/openvino/LICENSE +201 -0
  224. fast/licenses/openvino/OpenVINOsupport.txt +12 -0
  225. fast/licenses/openvino/onednn_third-party-programs.txt +557 -0
  226. fast/licenses/openvino/readme.txt +60 -0
  227. fast/licenses/openvino/redist.txt +42 -0
  228. fast/licenses/openvino/runtime-third-party-programs.txt +1400 -0
  229. fast/licenses/openvino/tbb_third-party-programs.txt +230 -0
  230. fast/licenses/pixman/COPYING +42 -0
  231. fast/licenses/proxy-libintl/COPYING +482 -0
  232. fast/licenses/qt5/LICENSE.FDL +450 -0
  233. fast/licenses/qt5/LICENSE.GPL3-EXCEPT +704 -0
  234. fast/licenses/qt5/LICENSE.GPLv2 +292 -0
  235. fast/licenses/qt5/LICENSE.GPLv3 +686 -0
  236. fast/licenses/qt5/LICENSE.LGPLv21 +514 -0
  237. fast/licenses/qt5/LICENSE.LGPLv3 +175 -0
  238. fast/licenses/qt5/LICENSE.QT-LICENSE-AGREEMENT +1331 -0
  239. fast/licenses/semaphore/Semaphore_LICENSE.txt +17 -0
  240. fast/licenses/tensorflow/LICENSE +203 -0
  241. fast/licenses/tensorflow/THIRD_PARTY_TF_C_LICENSES +8963 -0
  242. fast/licenses/uthash/LICENSE +21 -0
  243. fast/licenses/zip/UNLICENSE +26 -0
  244. fast/licenses/zlib/README +115 -0
  245. fast/licenses/zlib-ng/LICENSE.md +19 -0
  246. fast/pipelines/uff_viewer/colormap_and_reject.fpl +26 -0
  247. fast/pipelines/uff_viewer/default.fpl +9 -0
  248. fast/pipelines/uff_viewer/non_local_means.fpl +34 -0
  249. fast/plugins/audio/libqtaudio_coreaudio.dylib +0 -0
  250. fast/plugins/bearer/libqgenericbearer.dylib +0 -0
  251. fast/plugins/generic/libqtuiotouchplugin.dylib +0 -0
  252. fast/plugins/iconengines/libqsvgicon.dylib +0 -0
  253. fast/plugins/imageformats/libqgif.dylib +0 -0
  254. fast/plugins/imageformats/libqicns.dylib +0 -0
  255. fast/plugins/imageformats/libqico.dylib +0 -0
  256. fast/plugins/imageformats/libqjpeg.dylib +0 -0
  257. fast/plugins/imageformats/libqmacheif.dylib +0 -0
  258. fast/plugins/imageformats/libqmacjp2.dylib +0 -0
  259. fast/plugins/imageformats/libqsvg.dylib +0 -0
  260. fast/plugins/imageformats/libqtga.dylib +0 -0
  261. fast/plugins/imageformats/libqtiff.dylib +0 -0
  262. fast/plugins/imageformats/libqwbmp.dylib +0 -0
  263. fast/plugins/imageformats/libqwebp.dylib +0 -0
  264. fast/plugins/mediaservice/libqavfcamera.dylib +0 -0
  265. fast/plugins/mediaservice/libqavfmediaplayer.dylib +0 -0
  266. fast/plugins/mediaservice/libqtmedia_audioengine.dylib +0 -0
  267. fast/plugins/platforms/libqcocoa.dylib +0 -0
  268. fast/plugins/platforms/libqminimal.dylib +0 -0
  269. fast/plugins/platforms/libqoffscreen.dylib +0 -0
  270. fast/plugins/platformthemes/libqxdgdesktopportal.dylib +0 -0
  271. fast/plugins/playlistformats/libqtmultimedia_m3u.dylib +0 -0
  272. fast/plugins/printsupport/libcocoaprintersupport.dylib +0 -0
  273. fast/plugins/sqldrivers/libqsqlite.dylib +0 -0
  274. fast/plugins/styles/libqmacstyle.dylib +0 -0
  275. pyfast-4.12.0.dist-info/METADATA +81 -0
  276. pyfast-4.12.0.dist-info/RECORD +279 -0
  277. pyfast-4.12.0.dist-info/WHEEL +5 -0
  278. pyfast-4.12.0.dist-info/entry_points.txt +5 -0
  279. pyfast-4.12.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,230 @@
1
+ Intel(R) Threading Building Blocks Third Party Programs File
2
+
3
+ This file contains the list of third party software ("third party programs")
4
+ contained in the Intel software and their required notices and/or license terms.
5
+ This third party software, even if included with the distribution of the Intel
6
+ software, may be governed by separate license terms, including without limitation,
7
+ third party license terms, other Intel software license terms, and open source
8
+ software license terms. These separate license terms govern your use of the third
9
+ party programs as set forth in the "third-party-programs.txt" or other similarly named text file.
10
+
11
+ Third party programs and their corresponding required notices and/or license
12
+ terms are listed below.
13
+ ____________________________________________________________________________________________________
14
+
15
+ 1. Portable Hardware Locality (hwloc):
16
+ Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana University Research and Technology Corporation. All rights reserved.
17
+ Copyright (c) 2004-2005 The University of Tennessee and The University of Tennessee Research Foundation. All rights reserved.
18
+ Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, University of Stuttgart. All rights reserved.
19
+ Copyright (c) 2004-2005 The Regents of the University of California. All rights reserved.
20
+ Copyright (c) 2009 CNRS
21
+ Copyright (c) 2009-2016 Inria. All rights reserved.
22
+ Copyright (c) 2009-2015 Universite Bordeaux
23
+ Copyright (c) 2009-2015 Cisco Systems, Inc. All rights reserved.
24
+ Copyright (c) 2009-2012 Oracle and/or its affiliates. All rights reserved.
25
+ Copyright (c) 2010 IBM
26
+ Copyright (c) 2010 Jirka Hladky
27
+ Copyright (c) 2012 Aleksej Saushev, The NetBSD Foundation
28
+ Copyright (c) 2012 Blue Brain Project, EPFL. All rights reserved.
29
+ Copyright (c) 2013-2014 University of Wisconsin-La Crosse. All rights reserved.
30
+ Copyright (c) 2015 Research Organization for Information Science and Technology (RIST). All rights reserved.
31
+ Copyright (c) 2015-2016 Intel, Inc. All rights reserved.
32
+ See COPYING in top-level directory.
33
+
34
+ New BSD License
35
+
36
+ Redistribution and use in source and binary forms, with or without
37
+ modification, are permitted provided that the following conditions
38
+ are met:
39
+ 1. Redistributions of source code must retain the above copyright
40
+ notice, this list of conditions and the following disclaimer.
41
+ 2. Redistributions in binary form must reproduce the above copyright
42
+ notice, this list of conditions and the following disclaimer in the
43
+ documentation and/or other materials provided with the distribution.
44
+ 3. The name of the author may not be used to endorse or promote products
45
+ derived from this software without specific prior written permission.
46
+
47
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
48
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
49
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
50
+ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
51
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
52
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
53
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
54
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
55
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
56
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57
+ _______________________________________________________________________________________________________
58
+
59
+ 2. Instrumentation and Tracing Technology (ITT) Notify User API:
60
+ Copyright (c) 2005-2014 Intel Corporation. All rights reserved.
61
+
62
+ The 3-Clause BSD License
63
+
64
+ Redistribution and use in source and binary forms, with or without
65
+ modification, are permitted provided that the following conditions
66
+ are met:
67
+
68
+ * Redistributions of source code must retain the above copyright
69
+ notice, this list of conditions and the following disclaimer.
70
+ * Redistributions in binary form must reproduce the above copyright
71
+ notice, this list of conditions and the following disclaimer in
72
+ the documentation and/or other materials provided with the
73
+ distribution.
74
+ * Neither the name of Intel Corporation nor the names of its
75
+ contributors may be used to endorse or promote products derived
76
+ from this software without specific prior written permission.
77
+
78
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
79
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
80
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
81
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
82
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
83
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
84
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
85
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
86
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
87
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
88
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
89
+ _______________________________________________________________________________________________________
90
+
91
+ 3. ActiveState Thread pool with same API as (multi) processing.Pool (Python recipe):
92
+ Copyright (c) 2008,2016 david decotigny (this file)
93
+ Copyright (c) 2006-2008, R Oudkerk (multiprocessing.Pool)
94
+
95
+ BSD 3-clause "New" or "Revised" License
96
+
97
+ Redistribution and use in source and binary forms, with or without
98
+ modification, are permitted provided that the following conditions
99
+ are met:
100
+
101
+ 1. Redistributions of source code must retain the above copyright
102
+ notice, this list of conditions and the following disclaimer.
103
+ 2. Redistributions in binary form must reproduce the above copyright
104
+ notice, this list of conditions and the following disclaimer in the
105
+ documentation and/or other materials provided with the distribution.
106
+ 3. Neither the name of author nor the names of any contributors may be
107
+ used to endorse or promote products derived from this software
108
+ without specific prior written permission.
109
+
110
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
111
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
112
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
113
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
114
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
115
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
116
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
117
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
118
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
119
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
120
+ SUCH DAMAGE.
121
+ _______________________________________________________________________________________________________
122
+
123
+ 4. gperftools: Copyright (c) 2011, Google Inc.
124
+
125
+ Tachyon: Copyright (c) 1994-2008 John E. Stone. All rights reserved.
126
+
127
+ BSD 3-Clause "New" or "Revised" License
128
+
129
+ Redistribution and use in source and binary forms, with or without
130
+ modification, are permitted provided that the following conditions are
131
+ met:
132
+
133
+ * Redistributions of source code must retain the above copyright
134
+ notice, this list of conditions and the following disclaimer.
135
+ * Redistributions in binary form must reproduce the above
136
+ copyright notice, this list of conditions and the following disclaimer
137
+ in the documentation and/or other materials provided with the
138
+ distribution.
139
+ * Neither the name of Google Inc. nor the names of its
140
+ contributors may be used to endorse or promote products derived from
141
+ this software without specific prior written permission.
142
+
143
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
144
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
145
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
146
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
147
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
148
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
149
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
150
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
151
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
152
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
153
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
154
+ _______________________________________________________________________________________________________
155
+
156
+ 5. Mateusz Kwiatkowski Workaround for bug 62258 in libstdc++
157
+
158
+ Public domain
159
+ _______________________________________________________________________________________________________
160
+
161
+ 6. Bzip2: Copyright (c) 1996-2019 Julian Seward.
162
+
163
+ Bzip 2 License
164
+
165
+ This program, bzip2, the associated library libbzip2, and all documentation, are copyright (c) 1996-2019 Julian Seward. All rights reserved.
166
+
167
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
168
+
169
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
170
+
171
+ The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
172
+
173
+ Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
174
+
175
+ The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.
176
+
177
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
178
+ _______________________________________________________________________________________________________
179
+
180
+ 7. Apple OpenGL Image Sample Source Code
181
+
182
+ Apple License
183
+
184
+ ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software.
185
+
186
+ In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple.Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated.
187
+
188
+ The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
189
+
190
+ IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
191
+ _______________________________________________________________________________________________________
192
+
193
+ 8. LodePNG: Copyright (c) 2005-2019 by Lode Vandevenne.
194
+
195
+ zlib License
196
+
197
+ This software is provided 'as-is', without any express or implied
198
+ warranty. In no event will the authors be held liable for any damages
199
+ arising from the use of this software.
200
+
201
+ Permission is granted to anyone to use this software for any purpose,
202
+ including commercial applications, and to alter it and redistribute it
203
+ freely, subject to the following restrictions:
204
+
205
+ 1. The origin of this software must not be misrepresented; you must not
206
+ claim that you wrote the original software. If you use this software
207
+ in a product, an acknowledgment in the product documentation would be
208
+ appreciated but is not required.
209
+
210
+ 2. Altered source versions must be plainly marked as such, and must not be
211
+ misrepresented as being the original software.
212
+
213
+ 3. This notice may not be removed or altered from any source
214
+ distribution.
215
+ _______________________________________________________________________________________________________
216
+
217
+ 9. prism: Copyright (c) 2012-2013 Lea Verou.
218
+
219
+ jquery: Copyright (c) 2005, 2014 jQuery Foundation, Inc.
220
+
221
+ MIT License
222
+
223
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
224
+
225
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
226
+
227
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
228
+ _______________________________________________________________________________________________________
229
+
230
+ *Other names and brands may be claimed as the property of others.
@@ -0,0 +1,42 @@
1
+ The following is the MIT license, agreed upon by most contributors.
2
+ Copyright holders of new code should use this license statement where
3
+ possible. They may also add themselves to the list below.
4
+
5
+ /*
6
+ * Copyright 1987, 1988, 1989, 1998 The Open Group
7
+ * Copyright 1987, 1988, 1989 Digital Equipment Corporation
8
+ * Copyright 1999, 2004, 2008 Keith Packard
9
+ * Copyright 2000 SuSE, Inc.
10
+ * Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
11
+ * Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
12
+ * Copyright 2004 Nicholas Miell
13
+ * Copyright 2005 Lars Knoll & Zack Rusin, Trolltech
14
+ * Copyright 2005 Trolltech AS
15
+ * Copyright 2007 Luca Barbato
16
+ * Copyright 2008 Aaron Plattner, NVIDIA Corporation
17
+ * Copyright 2008 Rodrigo Kumpera
18
+ * Copyright 2008 André Tupinambá
19
+ * Copyright 2008 Mozilla Corporation
20
+ * Copyright 2008 Frederic Plourde
21
+ * Copyright 2009, Oracle and/or its affiliates. All rights reserved.
22
+ * Copyright 2009, 2010 Nokia Corporation
23
+ *
24
+ * Permission is hereby granted, free of charge, to any person obtaining a
25
+ * copy of this software and associated documentation files (the "Software"),
26
+ * to deal in the Software without restriction, including without limitation
27
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
28
+ * and/or sell copies of the Software, and to permit persons to whom the
29
+ * Software is furnished to do so, subject to the following conditions:
30
+ *
31
+ * The above copyright notice and this permission notice (including the next
32
+ * paragraph) shall be included in all copies or substantial portions of the
33
+ * Software.
34
+ *
35
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
36
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
37
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
38
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
39
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
40
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
41
+ * DEALINGS IN THE SOFTWARE.
42
+ */