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.
- fast/README.md +41 -0
- fast/__init__.py +22 -0
- fast/bin/UFFviewer +0 -0
- fast/bin/fast_configuration.txt +14 -0
- fast/bin/runPipeline +0 -0
- fast/bin/systemCheck +0 -0
- fast/doc/bright-plotting-style.ini +66 -0
- fast/doc/dark-plotting-style.ini +66 -0
- fast/doc/fonts/UFL.txt +96 -0
- fast/doc/fonts/Ubuntu-Bold.ttf +0 -0
- fast/doc/fonts/Ubuntu-BoldItalic.ttf +0 -0
- fast/doc/fonts/Ubuntu-Italic.ttf +0 -0
- fast/doc/fonts/Ubuntu-Light.ttf +0 -0
- fast/doc/fonts/Ubuntu-LightItalic.ttf +0 -0
- fast/doc/fonts/Ubuntu-Medium.ttf +0 -0
- fast/doc/fonts/Ubuntu-MediumItalic.ttf +0 -0
- fast/doc/fonts/Ubuntu-Regular.ttf +0 -0
- fast/doc/fonts/UbuntuMono-Bold.ttf +0 -0
- fast/doc/fonts/UbuntuMono-BoldItalic.ttf +0 -0
- fast/doc/fonts/UbuntuMono-Italic.ttf +0 -0
- fast/doc/fonts/UbuntuMono-Regular.ttf +0 -0
- fast/doc/images/FAST_logo_square.png +0 -0
- fast/doc/images/fast_icon.ico +0 -0
- fast/doc/images/fast_icon.png +0 -0
- fast/entry_points.py +14 -0
- fast/fast.py +20057 -0
- fast/kernels/Algorithms/AirwaySegmentation/AirwaySegmentation.cl +85 -0
- fast/kernels/Algorithms/ApplyColormap/ApplyColormap.cl +146 -0
- fast/kernels/Algorithms/BinaryThresholding/BinaryThresholding2D.cl +61 -0
- fast/kernels/Algorithms/BinaryThresholding/BinaryThresholding3D.cl +61 -0
- fast/kernels/Algorithms/BlockMatching/BlockMatching.cl +257 -0
- fast/kernels/Algorithms/CenterlineExtraction/CenterlineExtraction.cl +153 -0
- fast/kernels/Algorithms/CoherentPointDrift/CoherentPointDrift.cl +0 -0
- fast/kernels/Algorithms/Color/ColorToGrayscale.cl +22 -0
- fast/kernels/Algorithms/Color/GrayscaleToColor.cl +19 -0
- fast/kernels/Algorithms/GaussianSmoothing/GaussianSmoothing2D.cl +35 -0
- fast/kernels/Algorithms/GaussianSmoothing/GaussianSmoothing3D.cl +75 -0
- fast/kernels/Algorithms/GradientVectorFlow/EulerGradientVectorFlow.cl +174 -0
- fast/kernels/Algorithms/GradientVectorFlow/MultigridGradientVectorFlow.cl +407 -0
- fast/kernels/Algorithms/HounsefieldConverter/HounsefieldConverter.cl +22 -0
- fast/kernels/Algorithms/ImageAdd/ImageAdd.cl +79 -0
- fast/kernels/Algorithms/ImageCaster/ImageCaster.cl +38 -0
- fast/kernels/Algorithms/ImageChannelConverter/ImageChannelConverter.cl +121 -0
- fast/kernels/Algorithms/ImageFlipper/ImageFlipper2D.cl +23 -0
- fast/kernels/Algorithms/ImageFlipper/ImageFlipper3D.cl +51 -0
- fast/kernels/Algorithms/ImageGradient/ImageGradient.cl +71 -0
- fast/kernels/Algorithms/ImageInverter/ImageInverter.cl +30 -0
- fast/kernels/Algorithms/ImageMultiply/ImageMultiply.cl +79 -0
- fast/kernels/Algorithms/ImagePatch/PatchStitcher2D.cl +22 -0
- fast/kernels/Algorithms/ImagePatch/PatchStitcher3D.cl +95 -0
- fast/kernels/Algorithms/ImageResampler/ImageResampler2D.cl +40 -0
- fast/kernels/Algorithms/ImageResampler/ImageResampler3D.cl +32 -0
- fast/kernels/Algorithms/ImageResizer/ImageResizer.cl +134 -0
- fast/kernels/Algorithms/ImageSharpening/ImageSharpening.cl +47 -0
- fast/kernels/Algorithms/ImageSlicer/ImageSlicer.cl +77 -0
- fast/kernels/Algorithms/ImageTransposer/ImageTransposer2D.cl +16 -0
- fast/kernels/Algorithms/ImageTransposer/ImageTransposer3D.cl +45 -0
- fast/kernels/Algorithms/IntensityClipping/IntensityClipping2D.cl +19 -0
- fast/kernels/Algorithms/IntensityClipping/IntensityClipping3D.cl +20 -0
- fast/kernels/Algorithms/IntensityNormalization/IntensityNormalization.cl +85 -0
- fast/kernels/Algorithms/IntensityNormalization/ZeroMeanUnitVariance.cl +76 -0
- fast/kernels/Algorithms/KalmanFilterModelSegmentation/AppearanceModels/RidgeEdge/RidgeEdgeModel.cl +81 -0
- fast/kernels/Algorithms/LabelModifier/LabelModifier.cl +20 -0
- fast/kernels/Algorithms/LaplacianOfGaussian/LaplacianOfGaussian2D.cl +27 -0
- fast/kernels/Algorithms/LevelSet/LevelSetSegmentation.cl +132 -0
- fast/kernels/Algorithms/LungSegmentation/LungSegmentation.cl +22 -0
- fast/kernels/Algorithms/MeshToSegmentation/MeshToSegmentation.cl +184 -0
- fast/kernels/Algorithms/Morphology/Dilation.cl +56 -0
- fast/kernels/Algorithms/Morphology/Erosion.cl +64 -0
- fast/kernels/Algorithms/NeuralNetwork/NeuralNetwork.cl +122 -0
- fast/kernels/Algorithms/NeuralNetwork/VertexTensorToSegmentation.cl +13 -0
- fast/kernels/Algorithms/NonLocalMeans/NonLocalMeans2D.cl +94 -0
- fast/kernels/Algorithms/SeededRegionGrowing/SeededRegionGrowing2D.cl +57 -0
- fast/kernels/Algorithms/SeededRegionGrowing/SeededRegionGrowing3D.cl +58 -0
- fast/kernels/Algorithms/Skeletonization/Skeletonization2D.cl +77 -0
- fast/kernels/Algorithms/SurfaceExtraction/SurfaceExtraction.cl +519 -0
- fast/kernels/Algorithms/SurfaceExtraction/SurfaceExtraction_no_3d_write.cl +739 -0
- fast/kernels/Algorithms/TemporalSmoothing/ImageMovingAverage.cl +66 -0
- fast/kernels/Algorithms/TemporalSmoothing/ImageWeightedMovingAverage.cl +74 -0
- fast/kernels/Algorithms/TissueSegmentation/TissueSegmentation.cl +18 -0
- fast/kernels/Algorithms/TubeSegmentationAndCenterlineExtraction/InverseGradientSegmentation.cl +203 -0
- fast/kernels/Algorithms/TubeSegmentationAndCenterlineExtraction/TubeSegmentationAndCenterlineExtraction.cl +566 -0
- fast/kernels/Algorithms/Ultrasound/EnvelopeAndLogCompressor.cl +45 -0
- fast/kernels/Algorithms/Ultrasound/ScanConverter.cl +76 -0
- fast/kernels/Algorithms/UltrasoundImageCropper/UltrasoundImageCropper.cl +31 -0
- fast/kernels/Algorithms/UltrasoundImageEnhancement/UltrasoundImageEnhancement.cl +27 -0
- fast/kernels/Algorithms/VectorMedianFilter/VectorMedianFilter.cl +31 -0
- fast/kernels/ImageFill.cl +30 -0
- fast/kernels/ImageMinMax.cl +196 -0
- fast/kernels/ImageSum.cl +170 -0
- fast/kernels/Tests/Algorithms/DoubleFilter.cl +7 -0
- fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.frag +8 -0
- fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.geom +69 -0
- fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.vert +17 -0
- fast/kernels/Visualization/HeatmapRenderer/HeatmapRenderer.cl +51 -0
- fast/kernels/Visualization/ImagePyramidRenderer/ImagePyramidRenderer.frag +11 -0
- fast/kernels/Visualization/ImagePyramidRenderer/ImagePyramidRenderer.vert +15 -0
- fast/kernels/Visualization/ImageRenderer/ImageRenderer.vert +15 -0
- fast/kernels/Visualization/ImageRenderer/ImageRendererFLOAT.frag +18 -0
- fast/kernels/Visualization/ImageRenderer/ImageRendererINT.frag +18 -0
- fast/kernels/Visualization/ImageRenderer/ImageRendererUINT.frag +18 -0
- fast/kernels/Visualization/LineRenderer/LineRenderer.frag +8 -0
- fast/kernels/Visualization/LineRenderer/LineRenderer.geom +35 -0
- fast/kernels/Visualization/LineRenderer/LineRenderer.vert +20 -0
- fast/kernels/Visualization/LineRenderer/LineRenderer3D.frag +8 -0
- fast/kernels/Visualization/LineRenderer/LineRenderer3D.vert +20 -0
- fast/kernels/Visualization/LineRenderer/LineRendererJoints.frag +15 -0
- fast/kernels/Visualization/LineRenderer/LineRendererJoints.vert +24 -0
- fast/kernels/Visualization/SegmentationLabelRenderer/SegmentationLabelRenderer.frag +11 -0
- fast/kernels/Visualization/SegmentationLabelRenderer/SegmentationLabelRenderer.vert +16 -0
- fast/kernels/Visualization/SegmentationRenderer/SegmentationPyramidRenderer.frag +53 -0
- fast/kernels/Visualization/SegmentationRenderer/SegmentationRenderer.frag +52 -0
- fast/kernels/Visualization/SegmentationRenderer/SegmentationRenderer.vert +15 -0
- fast/kernels/Visualization/TextRenderer/TextRenderer.frag +11 -0
- fast/kernels/Visualization/TextRenderer/TextRenderer.vert +20 -0
- fast/kernels/Visualization/TriangleRenderer/TriangleRenderer.frag +49 -0
- fast/kernels/Visualization/TriangleRenderer/TriangleRenderer.vert +35 -0
- fast/kernels/Visualization/VectorFieldRenderer/VectorFieldColorRenderer.cl +30 -0
- fast/kernels/Visualization/VertexRenderer/VertexRenderer.frag +14 -0
- fast/kernels/Visualization/VertexRenderer/VertexRenderer.vert +23 -0
- fast/kernels/Visualization/View.cl +10 -0
- fast/kernels/Visualization/VolumeRenderer/AlphaBlendingVolumeRenderer.cl +211 -0
- fast/kernels/Visualization/VolumeRenderer/MaximumIntensityProjection.cl +139 -0
- fast/kernels/Visualization/VolumeRenderer/ThresholdVolumeRenderer.cl +178 -0
- fast/lib/_fast.abi3.so +0 -0
- fast/lib/cache.json +114134 -0
- fast/lib/libFAST.so.4 +0 -0
- fast/lib/libInferenceEngineONNXRuntime.so +0 -0
- fast/lib/libInferenceEngineOpenVINO.so +0 -0
- fast/lib/libInferenceEngineTensorFlow.so +0 -0
- fast/lib/libInferenceEngineTensorRT.so +0 -0
- fast/lib/libJKQTCommonSharedLib_Release.so.4.0.0 +0 -0
- fast/lib/libJKQTMathTextSharedLib_Release.so.4.0.0 +0 -0
- fast/lib/libJKQTPlotterSharedLib_Release.so.4.0.0 +0 -0
- fast/lib/libOpenCL.so.1 +0 -0
- fast/lib/libOpenIGTLink.so.3 +0 -0
- fast/lib/libQt5Core.so.5 +0 -0
- fast/lib/libQt5DBus.so.5 +0 -0
- fast/lib/libQt5Gui.so.5 +0 -0
- fast/lib/libQt5Multimedia.so.5 +0 -0
- fast/lib/libQt5MultimediaGstTools.so.5 +0 -0
- fast/lib/libQt5MultimediaWidgets.so.5 +0 -0
- fast/lib/libQt5Network.so.5 +0 -0
- fast/lib/libQt5OpenGL.so.5 +0 -0
- fast/lib/libQt5PrintSupport.so.5 +0 -0
- fast/lib/libQt5Svg.so.5 +0 -0
- fast/lib/libQt5Widgets.so.5 +0 -0
- fast/lib/libQt5XcbQpa.so.5 +0 -0
- fast/lib/libQt5Xml.so.5 +0 -0
- fast/lib/libbrotlicommon.so.1 +0 -0
- fast/lib/libbrotlidec.so.1 +0 -0
- fast/lib/libbrotlienc.so.1 +0 -0
- fast/lib/libcrypto.so.1.1 +0 -0
- fast/lib/libdcmdata.so.17 +0 -0
- fast/lib/libdcmimage.so.17 +0 -0
- fast/lib/libdcmimgle.so.17 +0 -0
- fast/lib/libdcmjpeg.so.17 +0 -0
- fast/lib/libgna.so.3 +0 -0
- fast/lib/libijg12.so +0 -0
- fast/lib/libijg12.so.17 +0 -0
- fast/lib/libijg16.so +0 -0
- fast/lib/libijg16.so.17 +0 -0
- fast/lib/libijg8.so +0 -0
- fast/lib/libijg8.so.17 +0 -0
- fast/lib/libjxl.so.0.11 +0 -0
- fast/lib/libjxl_cms.so.0.11 +0 -0
- fast/lib/libjxl_threads.so.0.11 +0 -0
- fast/lib/liboflog.so.17 +0 -0
- fast/lib/libofstd.so.17 +0 -0
- fast/lib/libonnxruntime.so.1 +0 -0
- fast/lib/libopenslide.so.1 +0 -0
- fast/lib/libopenvino.so.2230 +0 -0
- fast/lib/libopenvino_auto_batch_plugin.so +0 -0
- fast/lib/libopenvino_auto_plugin.so +0 -0
- fast/lib/libopenvino_gapi_preproc.so +0 -0
- fast/lib/libopenvino_hetero_plugin.so +0 -0
- fast/lib/libopenvino_intel_cpu_plugin.so +0 -0
- fast/lib/libopenvino_intel_gna_plugin.so +0 -0
- fast/lib/libopenvino_intel_gpu_plugin.so +0 -0
- fast/lib/libopenvino_ir_frontend.so.2230 +0 -0
- fast/lib/libopenvino_onnx_frontend.so.2230 +0 -0
- fast/lib/libopenvino_paddle_frontend.so.2230 +0 -0
- fast/lib/libopenvino_tensorflow_frontend.so.2230 +0 -0
- fast/lib/libpugixml.so.1 +0 -0
- fast/lib/librealsense2.so.2.40 +0 -0
- fast/lib/libssl.so.1.1 +0 -0
- fast/lib/libtbb.so.2 +0 -0
- fast/lib/libtiff.so.5 +0 -0
- fast/lib/libz.so.1 +0 -0
- fast/lib/plugins.xml +22 -0
- fast/licenses/OpenIGTLink/LICENSE.txt +30 -0
- fast/licenses/OpenJPEG/LICENSE +39 -0
- fast/licenses/OpenSlide/CHANGELOG.md +153 -0
- fast/licenses/OpenSlide/COPYING.LESSER +504 -0
- fast/licenses/OpenSlide/README.md +99 -0
- fast/licenses/OpenSlide/VERSIONS.md +20 -0
- fast/licenses/OpenSlide/versions.json +112 -0
- fast/licenses/PCRE2/LICENCE.md +103 -0
- fast/licenses/SQLite/PUBLIC-DOMAIN.txt +9 -0
- fast/licenses/cairo/COPYING +33 -0
- fast/licenses/cairo/COPYING-LGPL-2.1 +510 -0
- fast/licenses/cairo/COPYING-MPL-1.1 +470 -0
- fast/licenses/clarius/LICENSE +29 -0
- fast/licenses/dcmtk/COPYRIGHT +1034 -0
- fast/licenses/eigen/COPYING.APACHE +203 -0
- fast/licenses/eigen/COPYING.BSD +26 -0
- fast/licenses/eigen/COPYING.GPL +674 -0
- fast/licenses/eigen/COPYING.LGPL +502 -0
- fast/licenses/eigen/COPYING.MINPACK +51 -0
- fast/licenses/eigen/COPYING.MPL2 +373 -0
- fast/licenses/eigen/COPYING.README +18 -0
- fast/licenses/fast/LICENSE +25 -0
- fast/licenses/gdk-pixbuf/COPYING +502 -0
- fast/licenses/glib/COPYING +175 -0
- fast/licenses/hdf5/COPYING +106 -0
- fast/licenses/jkqtplotter/LICENSE +505 -0
- fast/licenses/jpegxl/LICENSE.brotli +19 -0
- fast/licenses/jpegxl/LICENSE.highway +201 -0
- fast/licenses/jpegxl/LICENSE.jpeg-xl +27 -0
- fast/licenses/jpegxl/LICENSE.skcms +29 -0
- fast/licenses/jpegxl/PATENTS +22 -0
- fast/licenses/libdicom/LICENSE +21 -0
- fast/licenses/libffi/LICENSE +21 -0
- fast/licenses/libjpeg-turbo/LICENSE.md +135 -0
- fast/licenses/libjpeg-turbo/README.ijg +260 -0
- fast/licenses/libpng/LICENSE +134 -0
- fast/licenses/libtiff/LICENSE.md +23 -0
- fast/licenses/libxml2/Copyright +24 -0
- fast/licenses/onnxruntime/LICENSE +21 -0
- fast/licenses/onnxruntime/Privacy.md +21 -0
- fast/licenses/onnxruntime/ThirdPartyNotices.txt +6156 -0
- fast/licenses/opencl/LICENSE +201 -0
- fast/licenses/openssl/copyright +135 -0
- fast/licenses/openvino/Apache_license.txt +201 -0
- fast/licenses/openvino/EULA.htm +43 -0
- fast/licenses/openvino/EULA.rtf +61 -0
- fast/licenses/openvino/EULA.txt +163 -0
- fast/licenses/openvino/GNA SOFTWARE LICENSE AGREEMENT.txt +1 -0
- fast/licenses/openvino/Intel_Software_Development_Products.rtf +1217 -0
- fast/licenses/openvino/Intel_Software_Development_Products.txt +707 -0
- fast/licenses/openvino/LICENSE +201 -0
- fast/licenses/openvino/OpenVINOsupport.txt +12 -0
- fast/licenses/openvino/onednn_third-party-programs.txt +557 -0
- fast/licenses/openvino/readme.txt +60 -0
- fast/licenses/openvino/redist.txt +42 -0
- fast/licenses/openvino/runtime-third-party-programs.txt +1400 -0
- fast/licenses/openvino/tbb_third-party-programs.txt +230 -0
- fast/licenses/pixman/COPYING +42 -0
- fast/licenses/qt5/LICENSE.FDL +450 -0
- fast/licenses/qt5/LICENSE.GPL3-EXCEPT +704 -0
- fast/licenses/qt5/LICENSE.GPLv2 +292 -0
- fast/licenses/qt5/LICENSE.GPLv3 +686 -0
- fast/licenses/qt5/LICENSE.LGPLv21 +514 -0
- fast/licenses/qt5/LICENSE.LGPLv3 +175 -0
- fast/licenses/qt5/LICENSE.QT-LICENSE-AGREEMENT +1331 -0
- fast/licenses/realsense/LICENSE +202 -0
- fast/licenses/realsense/NOTICE +937 -0
- fast/licenses/semaphore/Semaphore_LICENSE.txt +17 -0
- fast/licenses/tensorflow/LICENSE +203 -0
- fast/licenses/tensorflow/THIRD_PARTY_TF_C_LICENSES +8992 -0
- fast/licenses/tiff/COPYRIGHT +21 -0
- fast/licenses/uthash/LICENSE +21 -0
- fast/licenses/zip/UNLICENSE +26 -0
- fast/licenses/zlib/README +115 -0
- fast/licenses/zlib-ng/LICENSE.md +19 -0
- fast/pipelines/uff_viewer/colormap_and_reject.fpl +26 -0
- fast/pipelines/uff_viewer/default.fpl +9 -0
- fast/pipelines/uff_viewer/non_local_means.fpl +34 -0
- fast/plugins/bearer/libqconnmanbearer.so +0 -0
- fast/plugins/bearer/libqgenericbearer.so +0 -0
- fast/plugins/bearer/libqnmbearer.so +0 -0
- fast/plugins/egldeviceintegrations/libqeglfs-emu-integration.so +0 -0
- fast/plugins/egldeviceintegrations/libqeglfs-kms-egldevice-integration.so +0 -0
- fast/plugins/egldeviceintegrations/libqeglfs-x11-integration.so +0 -0
- fast/plugins/generic/libqevdevkeyboardplugin.so +0 -0
- fast/plugins/generic/libqevdevmouseplugin.so +0 -0
- fast/plugins/generic/libqevdevtabletplugin.so +0 -0
- fast/plugins/generic/libqevdevtouchplugin.so +0 -0
- fast/plugins/generic/libqtuiotouchplugin.so +0 -0
- fast/plugins/iconengines/libqsvgicon.so +0 -0
- fast/plugins/imageformats/libqgif.so +0 -0
- fast/plugins/imageformats/libqicns.so +0 -0
- fast/plugins/imageformats/libqico.so +0 -0
- fast/plugins/imageformats/libqjpeg.so +0 -0
- fast/plugins/imageformats/libqsvg.so +0 -0
- fast/plugins/imageformats/libqtga.so +0 -0
- fast/plugins/imageformats/libqtiff.so +0 -0
- fast/plugins/imageformats/libqwbmp.so +0 -0
- fast/plugins/imageformats/libqwebp.so +0 -0
- fast/plugins/mediaservice/libgstaudiodecoder.so +0 -0
- fast/plugins/mediaservice/libgstcamerabin.so +0 -0
- fast/plugins/mediaservice/libgstmediacapture.so +0 -0
- fast/plugins/mediaservice/libgstmediaplayer.so +0 -0
- fast/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so +0 -0
- fast/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so +0 -0
- fast/plugins/platforms/libqeglfs.so +0 -0
- fast/plugins/platforms/libqminimal.so +0 -0
- fast/plugins/platforms/libqminimalegl.so +0 -0
- fast/plugins/platforms/libqoffscreen.so +0 -0
- fast/plugins/platforms/libqvnc.so +0 -0
- fast/plugins/platforms/libqxcb.so +0 -0
- fast/plugins/platformthemes/libqxdgdesktopportal.so +0 -0
- fast/plugins/playlistformats/libqtmultimedia_m3u.so +0 -0
- fast/plugins/sqldrivers/libqsqlite.so +0 -0
- fast/plugins/xcbglintegrations/libqxcb-egl-integration.so +0 -0
- fast/plugins/xcbglintegrations/libqxcb-glx-integration.so +0 -0
- pyfast-4.12.0.dist-info/METADATA +81 -0
- pyfast-4.12.0.dist-info/RECORD +311 -0
- pyfast-4.12.0.dist-info/WHEEL +5 -0
- pyfast-4.12.0.dist-info/entry_points.txt +5 -0
- pyfast-4.12.0.dist-info/top_level.txt +1 -0
fast/lib/libFAST.so.4
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
fast/lib/libOpenCL.so.1
ADDED
|
Binary file
|
|
Binary file
|
fast/lib/libQt5Core.so.5
ADDED
|
Binary file
|
fast/lib/libQt5DBus.so.5
ADDED
|
Binary file
|
fast/lib/libQt5Gui.so.5
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
fast/lib/libQt5Svg.so.5
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
fast/lib/libQt5Xml.so.5
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
fast/lib/libgna.so.3
ADDED
|
Binary file
|
fast/lib/libijg12.so
ADDED
|
Binary file
|
fast/lib/libijg12.so.17
ADDED
|
Binary file
|
fast/lib/libijg16.so
ADDED
|
Binary file
|
fast/lib/libijg16.so.17
ADDED
|
Binary file
|
fast/lib/libijg8.so
ADDED
|
Binary file
|
fast/lib/libijg8.so.17
ADDED
|
Binary file
|
fast/lib/libjxl.so.0.11
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
fast/lib/liboflog.so.17
ADDED
|
Binary file
|
fast/lib/libofstd.so.17
ADDED
|
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/lib/libpugixml.so.1
ADDED
|
Binary file
|
|
Binary file
|
fast/lib/libssl.so.1.1
ADDED
|
Binary file
|
fast/lib/libtbb.so.2
ADDED
|
Binary file
|
fast/lib/libtiff.so.5
ADDED
|
Binary file
|
fast/lib/libz.so.1
ADDED
|
Binary file
|
fast/lib/plugins.xml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<ie>
|
|
2
|
+
<plugins>
|
|
3
|
+
<plugin name="AUTO" location="libopenvino_auto_plugin.so">
|
|
4
|
+
</plugin>
|
|
5
|
+
<plugin name="BATCH" location="libopenvino_auto_batch_plugin.so">
|
|
6
|
+
</plugin>
|
|
7
|
+
<plugin name="CPU" location="libopenvino_intel_cpu_plugin.so">
|
|
8
|
+
</plugin>
|
|
9
|
+
<plugin name="GNA" location="libopenvino_intel_gna_plugin.so">
|
|
10
|
+
</plugin>
|
|
11
|
+
<plugin name="GPU" location="libopenvino_intel_gpu_plugin.so">
|
|
12
|
+
</plugin>
|
|
13
|
+
<plugin name="HETERO" location="libopenvino_hetero_plugin.so">
|
|
14
|
+
</plugin>
|
|
15
|
+
<plugin name="MULTI" location="libopenvino_auto_plugin.so">
|
|
16
|
+
</plugin>
|
|
17
|
+
<plugin name="MYRIAD" location="libopenvino_intel_myriad_plugin.so">
|
|
18
|
+
</plugin>
|
|
19
|
+
<plugin name="HDDL" location="libopenvino_intel_hddl_plugin.so">
|
|
20
|
+
</plugin>
|
|
21
|
+
</plugins>
|
|
22
|
+
</ie>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Copyright (c) 2008, Insight Software Consortium
|
|
2
|
+
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
* Redistributions of source code must retain the above copyright notice,
|
|
9
|
+
this list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
* Neither the name of the Insight Software Consortium nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from this
|
|
17
|
+
software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
20
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
21
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
22
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
23
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
24
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
25
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
26
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
27
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
28
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
29
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
30
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* The copyright in this software is being made available under the 2-clauses
|
|
3
|
+
* BSD License, included below. This software may be subject to other third
|
|
4
|
+
* party and contributor rights, including patent rights, and no such rights
|
|
5
|
+
* are granted under this license.
|
|
6
|
+
*
|
|
7
|
+
* Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
|
|
8
|
+
* Copyright (c) 2002-2014, Professor Benoit Macq
|
|
9
|
+
* Copyright (c) 2003-2014, Antonin Descampe
|
|
10
|
+
* Copyright (c) 2003-2009, Francois-Olivier Devaux
|
|
11
|
+
* Copyright (c) 2005, Herve Drolon, FreeImage Team
|
|
12
|
+
* Copyright (c) 2002-2003, Yannick Verschueren
|
|
13
|
+
* Copyright (c) 2001-2003, David Janssens
|
|
14
|
+
* Copyright (c) 2011-2012, Centre National d'Etudes Spatiales (CNES), France
|
|
15
|
+
* Copyright (c) 2012, CS Systemes d'Information, France
|
|
16
|
+
*
|
|
17
|
+
* All rights reserved.
|
|
18
|
+
*
|
|
19
|
+
* Redistribution and use in source and binary forms, with or without
|
|
20
|
+
* modification, are permitted provided that the following conditions
|
|
21
|
+
* are met:
|
|
22
|
+
* 1. Redistributions of source code must retain the above copyright
|
|
23
|
+
* notice, this list of conditions and the following disclaimer.
|
|
24
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
25
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
26
|
+
* documentation and/or other materials provided with the distribution.
|
|
27
|
+
*
|
|
28
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
|
29
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
30
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
31
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
32
|
+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
33
|
+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
34
|
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
35
|
+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
36
|
+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
37
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
38
|
+
* POSSIBILITY OF SUCH DAMAGE.
|
|
39
|
+
*/
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
# Notable Changes in openslide-bin
|
|
2
|
+
|
|
3
|
+
## Version 4.0.0.8, 2025-04-27
|
|
4
|
+
|
|
5
|
+
* Update many dependencies
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Version 4.0.0.6, 2024-09-29
|
|
9
|
+
|
|
10
|
+
* Switch from zlib to zlib-ng
|
|
11
|
+
* Export type hints from Python package
|
|
12
|
+
* Reduce size of source archive
|
|
13
|
+
* Update various dependencies
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## Version 4.0.0.5, 2024-09-10
|
|
17
|
+
|
|
18
|
+
* Add Linux aarch64 build
|
|
19
|
+
* Update cairo
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## Version 4.0.0.4, 2024-09-01
|
|
23
|
+
|
|
24
|
+
* Update many dependencies
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## Version 4.0.0.3, 2024-05-04
|
|
28
|
+
|
|
29
|
+
* Remove OpenSlide Java, which no longer has a platform-dependent component
|
|
30
|
+
* Update SQLite
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## Version 4.0.0.2, 2024-03-29
|
|
34
|
+
|
|
35
|
+
* Add Linux and macOS builds
|
|
36
|
+
* Add [Python package][py] with compiled library for OpenSlide Python ≥ 1.4.0
|
|
37
|
+
* Drop 32-bit Windows build
|
|
38
|
+
* Update OpenSlide Java to 0.12.4
|
|
39
|
+
* Update many dependencies
|
|
40
|
+
* Add `CHANGELOG.md` to source and binary archives
|
|
41
|
+
* Add `versions.json` to binary archives
|
|
42
|
+
* Rename project from openslide-winbuild to openslide-bin
|
|
43
|
+
* Change version number to OpenSlide version plus openslide-bin build number
|
|
44
|
+
* Restructure filenames of source and binary archives
|
|
45
|
+
* Switch source archive from Zip to `tar.gz`
|
|
46
|
+
* Rewrite build scripts
|
|
47
|
+
|
|
48
|
+
[py]: https://pypi.org/project/openslide-bin/
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
## Windows build 20231011
|
|
52
|
+
|
|
53
|
+
* Update OpenSlide to 4.0.0
|
|
54
|
+
* Integrate all dependencies into the OpenSlide DLL
|
|
55
|
+
* Replace the separate command-line tools with `slidetool`
|
|
56
|
+
* Switch from MSVCRT to the [Universal C Runtime][ucrt] (UCRT)
|
|
57
|
+
|
|
58
|
+
[ucrt]: https://learn.microsoft.com/en-us/cpp/windows/universal-crt-deployment
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## Windows build 20230414
|
|
62
|
+
|
|
63
|
+
* Integrate most dependencies into the OpenSlide DLL
|
|
64
|
+
* Update various dependencies
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
## Windows build 20221217
|
|
68
|
+
|
|
69
|
+
* Update OpenSlide Java to 0.12.3
|
|
70
|
+
* Update several dependencies
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
## Windows build 20221111
|
|
74
|
+
|
|
75
|
+
* Update many dependencies
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## Windows build 20220811
|
|
79
|
+
|
|
80
|
+
* Fix crashes in the 64-bit binaries when reading invalid JPEG or PNG images
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
## Windows build 20220806
|
|
84
|
+
|
|
85
|
+
* Update the compiler and all dependencies to current versions
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## Windows build 20171122
|
|
89
|
+
|
|
90
|
+
* Update OpenSlide Java to 0.12.2
|
|
91
|
+
* Update many dependencies
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
## Windows build 20160717
|
|
95
|
+
|
|
96
|
+
* Update OpenJPEG to version 2.1.1
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
## Windows build 20160612
|
|
100
|
+
|
|
101
|
+
* Fix crashes in the 32-bit binaries when called from code compiled with MSVC
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
## Windows build 20150527
|
|
105
|
+
|
|
106
|
+
* Fix crashes in the 32-bit binaries
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
## Windows build 20150420
|
|
110
|
+
|
|
111
|
+
* Update OpenSlide to 3.4.1
|
|
112
|
+
* Update OpenSlide Java to 0.12.1
|
|
113
|
+
* Add separate debug symbols for all binaries
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
## Windows build 20140125
|
|
117
|
+
|
|
118
|
+
* Update OpenSlide to 3.4.0
|
|
119
|
+
* Update OpenSlide Java to 0.12.0
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
## Windows build 20130727
|
|
123
|
+
|
|
124
|
+
* Prevent libtiff from opening a dialog box upon encountering an invalid TIFF
|
|
125
|
+
file
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
## Windows build 20130413
|
|
129
|
+
|
|
130
|
+
* Update OpenSlide to 3.3.3
|
|
131
|
+
* Fix a runtime crash when linked with `/OPT:REF`
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
## Windows build 20121201
|
|
135
|
+
|
|
136
|
+
* Update OpenSlide to 3.3.2
|
|
137
|
+
* Fix a serious thread safety issue
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
## Windows build 20121014
|
|
141
|
+
|
|
142
|
+
* Update OpenSlide to 3.3.1
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
## Windows build 20120908
|
|
146
|
+
|
|
147
|
+
* Update OpenSlide to 3.3.0
|
|
148
|
+
* Update OpenSlide Java to 0.11.0
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
## Windows build 20120802
|
|
152
|
+
|
|
153
|
+
* Initial release with OpenSlide 3.2.6 and OpenSlide Java 0.10.0
|