├── .flake8 ├── .flake8_nb ├── .github ├── actions │ └── setup-system │ │ └── action.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── bootstrap.py ├── ci ├── info_platform.py └── requirements-pinned.txt ├── copyright ├── doc ├── Makefile ├── make.bat └── source │ ├── Tutorials │ ├── Image.ipynb │ ├── Sift │ │ └── sift.ipynb │ ├── array_widget.rst │ ├── codec │ │ └── Bitshuffle-LZ4.ipynb │ ├── convert.rst │ ├── fit.rst │ ├── fitconfig.rst │ ├── hdf5fromschema.rst │ ├── img │ │ ├── arraywidget3D_0.png │ │ ├── arraywidget3D_1.png │ │ ├── arraywidget5D_0.png │ │ ├── arraywidget5D_1.png │ │ ├── custom_config_scale0.5.png │ │ ├── custom_config_scale1.0.png │ │ ├── custom_config_scale2.1.png │ │ ├── fitwidget1.png │ │ ├── fitwidget2.png │ │ ├── fitwidget3.png │ │ ├── fitwidget4.png │ │ ├── fitwidget5.png │ │ ├── hdf5fromschema.png │ │ ├── hdf5fromschema_tiff.png │ │ ├── hdf5fromschema_vds.png │ │ ├── silx_view_edf.png │ │ ├── stripbg_plot1.png │ │ └── stripbg_plot2.png │ ├── io.rst │ ├── specfile_to_hdf5.rst │ └── writing_NXdata.rst │ ├── _static │ └── navbar_icons │ │ └── pypi.svg │ ├── _templates │ └── version.html │ ├── applications │ ├── compare.rst │ ├── convert.rst │ ├── img │ │ ├── silx-compare.png │ │ ├── silx-view-dropPlot.png │ │ ├── silx-view-hdf5.png │ │ ├── silx-view-image.png │ │ ├── silx-view-plotMenu.png │ │ ├── silx-view-plotSelection.png │ │ └── silx-view-table.png │ ├── index.rst │ └── view.rst │ ├── changelog.rst │ ├── conf.py │ ├── contribute │ ├── development.rst │ ├── icons.rst │ ├── index.rst │ └── release.rst │ ├── description │ ├── img │ │ ├── sift_bench_cpu0.png │ │ ├── sift_bench_cpu_kp.png │ │ ├── sift_bench_cpu_res.png │ │ ├── sift_bench_gpu0.png │ │ ├── sift_bench_gpu_kp.png │ │ ├── sift_bench_gpu_res.png │ │ ├── sift_dog1.png │ │ ├── sift_frame_ROI.png │ │ ├── sift_match1.png │ │ ├── sift_match2.png │ │ └── sift_orientation.png │ ├── index.rst │ └── sift.rst │ ├── ext │ ├── snapshotqt_directive.py │ └── sphinxext-archive.py │ ├── img │ ├── silx-view.gif │ ├── silx.ico │ ├── silx_large.png │ └── silx_small.png │ ├── index.rst │ ├── install.rst │ ├── license.rst │ ├── modules │ ├── gui │ │ ├── colors.rst │ │ ├── console.rst │ │ ├── data │ │ │ ├── arraytable.rst │ │ │ ├── dataviewer.rst │ │ │ ├── dataviewerframe.rst │ │ │ ├── img │ │ │ │ ├── ArrayTableWidget.png │ │ │ │ ├── DataViewer.png │ │ │ │ ├── DataViewerFrame.png │ │ │ │ └── NumpyAxesSelector.png │ │ │ ├── index.rst │ │ │ ├── numpyaxesselector.rst │ │ │ └── textformatter.rst │ │ ├── designer.rst │ │ ├── dialog │ │ │ ├── abstractdatafiledialog.rst │ │ │ ├── colormapdialog.rst │ │ │ ├── datafiledialog.rst │ │ │ ├── datasetdialog.rst │ │ │ ├── groupdialog.rst │ │ │ ├── imagefiledialog.rst │ │ │ ├── img │ │ │ │ ├── abstractdatafiledialog.png │ │ │ │ ├── abstractdatafiledialog.svg │ │ │ │ ├── colormapdialog.png │ │ │ │ ├── datafiledialog.png │ │ │ │ ├── datasetdialog.png │ │ │ │ ├── groupdialog.png │ │ │ │ ├── imagefiledialog_edf.png │ │ │ │ └── imagefiledialog_h5.png │ │ │ └── index.rst │ │ ├── fit │ │ │ ├── backgroundwidget.rst │ │ │ ├── fitwidget.rst │ │ │ ├── img │ │ │ │ ├── BackgroundDialog.png │ │ │ │ └── FitWidget.png │ │ │ └── index.rst │ │ ├── gallery.rst │ │ ├── hdf5 │ │ │ ├── examples_hdf5widget.rst │ │ │ ├── getting_started.rst │ │ │ ├── h5node.rst │ │ │ ├── hdf5contextmenuevent.rst │ │ │ ├── hdf5headerview.rst │ │ │ ├── hdf5treemodel.rst │ │ │ ├── hdf5treeview.rst │ │ │ ├── img │ │ │ │ ├── Hdf5Example.png │ │ │ │ └── Hdf5TreeView.png │ │ │ ├── index.rst │ │ │ └── nexussortfilterproxymodel.rst │ │ ├── icons.rst │ │ ├── img │ │ │ ├── IPythonDockWidget.png │ │ │ └── IPythonWidget.png │ │ ├── index.rst │ │ ├── plot │ │ │ ├── actions │ │ │ │ ├── control.rst │ │ │ │ ├── examples.rst │ │ │ │ ├── fit.rst │ │ │ │ ├── histogram.rst │ │ │ │ ├── img │ │ │ │ │ ├── fftAction0.png │ │ │ │ │ ├── fftAction1.png │ │ │ │ │ ├── shiftAction0.png │ │ │ │ │ └── shiftAction3.png │ │ │ │ ├── index.rst │ │ │ │ ├── io.rst │ │ │ │ └── medfilt.rst │ │ │ ├── compareimages.rst │ │ │ ├── compleximageview.rst │ │ │ ├── dev.rst │ │ │ ├── getting_started.rst │ │ │ ├── imageview.rst │ │ │ ├── img │ │ │ │ ├── BasicGridStatsWidget.png │ │ │ │ ├── BasicStatsWidget.png │ │ │ │ ├── CompareImages.png │ │ │ │ ├── ComplexImageView.png │ │ │ │ ├── ImageView.png │ │ │ │ ├── LimitsToolBar.png │ │ │ │ ├── Plot1D.png │ │ │ │ ├── Plot2D.png │ │ │ │ ├── PlotWidget.png │ │ │ │ ├── PlotWindow.png │ │ │ │ ├── PositionInfo.png │ │ │ │ ├── ROIStatsWidget.png │ │ │ │ ├── ScatterView.png │ │ │ │ ├── StackView.png │ │ │ │ ├── StackViewMainWindow.png │ │ │ │ ├── colorScale.png │ │ │ │ ├── colorScaleBar.png │ │ │ │ ├── logColorbar.png │ │ │ │ ├── netArea.png │ │ │ │ ├── netCounts.png │ │ │ │ ├── plot_and_backend.png │ │ │ │ ├── plot_and_backend.umlet │ │ │ │ ├── printPreviewMultiPlot.png │ │ │ │ ├── rawArea.png │ │ │ │ ├── rawCounts.png │ │ │ │ ├── roiwidget.png │ │ │ │ ├── statsWidget.png │ │ │ │ └── tickbar.png │ │ │ ├── index.rst │ │ │ ├── items.rst │ │ │ ├── plotsignal.rst │ │ │ ├── plottoolbuttons.rst │ │ │ ├── plotwidget.rst │ │ │ ├── plotwindow.rst │ │ │ ├── printpreviewtoolbutton.rst │ │ │ ├── profile.rst │ │ │ ├── roi.rst │ │ │ ├── roistatswidget.rst │ │ │ ├── scatterview.rst │ │ │ ├── stackview.rst │ │ │ ├── stats │ │ │ │ ├── index.rst │ │ │ │ ├── stats.rst │ │ │ │ └── statshandler.rst │ │ │ ├── statswidget.rst │ │ │ ├── tools │ │ │ │ ├── img │ │ │ │ │ ├── CurveLegendsWidget.png │ │ │ │ │ └── linearColorbar.png │ │ │ │ ├── index.rst │ │ │ │ └── profile.rst │ │ │ └── utils.rst │ │ ├── plot3d │ │ │ ├── actions.rst │ │ │ ├── dev.rst │ │ │ ├── glutils.rst │ │ │ ├── img │ │ │ │ ├── GroupPropertiesWidget.png │ │ │ │ ├── Plot3DWidget.png │ │ │ │ ├── Plot3DWindow.png │ │ │ │ ├── PositionInfoWidget.png │ │ │ │ ├── SFViewParamTree.png │ │ │ │ ├── ScalarFieldView.png │ │ │ │ ├── SceneWidget.png │ │ │ │ └── SceneWindow.png │ │ │ ├── index.rst │ │ │ ├── items.rst │ │ │ ├── plot3dwidget.rst │ │ │ ├── plot3dwindow.rst │ │ │ ├── scalarfieldview.rst │ │ │ ├── scene.rst │ │ │ ├── scenewidget.rst │ │ │ ├── scenewindow.rst │ │ │ ├── sfviewparamtree.rst │ │ │ ├── tools.rst │ │ │ └── utils.rst │ │ ├── qt.rst │ │ ├── utils.rst │ │ └── widgets │ │ │ ├── collapsiblewidget.rst │ │ │ ├── flowlayout.rst │ │ │ ├── framebrowser.rst │ │ │ ├── img │ │ │ ├── FrameBrowser.png │ │ │ ├── HorizontalSliderWithBrowser.png │ │ │ ├── PeriodicCombo.png │ │ │ ├── PeriodicList.png │ │ │ ├── PeriodicTable.png │ │ │ ├── RangeSlider.png │ │ │ ├── TableWidget.png │ │ │ ├── ThreadPoolPushButton.png │ │ │ └── WaitingPushButton.png │ │ │ ├── index.rst │ │ │ ├── overlaywidgets.rst │ │ │ ├── periodictable.rst │ │ │ ├── printpreview.rst │ │ │ ├── rangeslider.rst │ │ │ ├── tablewidget.rst │ │ │ ├── threadpoolpushbutton.rst │ │ │ └── waitingpushbutton.rst │ ├── image │ │ ├── backprojection.rst │ │ ├── bilinear.rst │ │ ├── index.rst │ │ ├── marchingsquares.rst │ │ ├── medianfilter.rst │ │ ├── projection.rst │ │ ├── reconstruction.rst │ │ ├── shapes.rst │ │ └── sift.rst │ ├── index.rst │ ├── io │ │ ├── commonh5.rst │ │ ├── configdict.rst │ │ ├── convert.rst │ │ ├── dictdump.rst │ │ ├── fioh5.rst │ │ ├── h5py_utils.rst │ │ ├── index.rst │ │ ├── nxdata.rst │ │ ├── octaveh5.rst │ │ ├── specfile.rst │ │ ├── specfilewrapper.rst │ │ ├── spech5.rst │ │ ├── url.rst │ │ └── utils.rst │ ├── math │ │ ├── colormap.rst │ │ ├── combo.rst │ │ ├── fit │ │ │ ├── bgtheories.rst │ │ │ ├── filters.rst │ │ │ ├── fitmanager.rst │ │ │ ├── fittheories.rst │ │ │ ├── fittheory.rst │ │ │ ├── functions.rst │ │ │ ├── index.rst │ │ │ ├── leastsq.rst │ │ │ └── peaksearch.rst │ │ ├── histogram.rst │ │ ├── index.rst │ │ └── medianfilter.rst │ ├── opencl │ │ ├── codec_cbf.rst │ │ ├── convolution.rst │ │ ├── fbp.rst │ │ ├── index.rst │ │ ├── medfilt.rst │ │ ├── processing.rst │ │ ├── sift │ │ │ ├── align.rst │ │ │ ├── index.rst │ │ │ ├── match.rst │ │ │ └── plan.rst │ │ ├── sinofilter.rst │ │ └── statistics.rst │ ├── resources.rst │ ├── sx.rst │ ├── test │ │ └── index.rst │ └── utils │ │ ├── array_like.rst │ │ ├── decorators.rst │ │ ├── enum.rst │ │ ├── index.rst │ │ ├── retry.rst │ │ ├── testutils.rst │ │ └── weakref.rst │ ├── overview.rst │ ├── sample_code │ ├── img │ │ ├── animatedicons.png │ │ ├── collapsibleWidget.png │ │ ├── colormapDialog.png │ │ ├── compareBackends.png │ │ ├── compareImages.png │ │ ├── customDataView.png │ │ ├── customHdf5TreeModel.png │ │ ├── customSilxView.png │ │ ├── dropZones.png │ │ ├── exampleBaseline.png │ │ ├── fftPlotAction.png │ │ ├── fileDialog.png │ │ ├── findContours.png │ │ ├── floatedit.png │ │ ├── hdf5fromschema.png │ │ ├── hdf5fromschema_tiff.png │ │ ├── hdf5fromschema_vds.png │ │ ├── hdf5widget.png │ │ ├── icons.png │ │ ├── imageStack.png │ │ ├── imageview.png │ │ ├── overlayWidgets.png │ │ ├── periodicTable.png │ │ ├── plot3dContextMenu.png │ │ ├── plot3dSceneWindow.png │ │ ├── plot3dUpdateScatterFromThread.png │ │ ├── plotClearAction.png │ │ ├── plotContextMenu.png │ │ ├── plotCurveLegendWidget.png │ │ ├── plotInteractiveImageROI.png │ │ ├── plotItemsSelector.png │ │ ├── plotLimits.png │ │ ├── plotProfile.png │ │ ├── plotROIStats.png │ │ ├── plotStats.png │ │ ├── plotUpdateCurveFromThread.png │ │ ├── plotUpdateImageFromGevent.png │ │ ├── plotUpdateImageFromThread.png │ │ ├── plotWidget.png │ │ ├── printPreview.png │ │ ├── scatterMask.png │ │ ├── scatterview.png │ │ ├── shiftPlotAction.png │ │ ├── simplewidget.png │ │ ├── stackView.png │ │ ├── stackedprogressbar.png │ │ ├── syncPlotLocation.png │ │ ├── syncaxis.png │ │ └── viewer3DVolume.png │ └── index.rst │ ├── troubleshooting.rst │ ├── tutorials.rst │ └── user_guide.rst ├── examples ├── __init__.py ├── collapsibleWidgets.py ├── colormapDialog.py ├── compareBackends.py ├── compareImages.py ├── customDataView.py ├── customHdf5TreeModel.py ├── customSilxView.py ├── dropZones.py ├── exampleBaseline.py ├── fft.png ├── fftPlotAction.py ├── fileDialog.py ├── findContours.py ├── floatedit.py ├── hdf5fromschema.py ├── hdf5fromschema_tiff.py ├── hdf5fromschema_vds.py ├── hdf5widget.py ├── icons.py ├── imageStack.py ├── imageview.py ├── overlayWidgets.py ├── periodicTable.py ├── plot3dContextMenu.py ├── plot3dSceneWindow.py ├── plot3dUpdateScatterFromThread.py ├── plotClearAction.py ├── plotContextMenu.py ├── plotCurveLegendWidget.py ├── plotInteractiveImageROI.py ├── plotItemsSelector.py ├── plotLimits.py ├── plotProfile.py ├── plotROIStats.py ├── plotStats.py ├── plotUpdateCurveFromThread.py ├── plotUpdateImageFromGevent.py ├── plotUpdateImageFromThread.py ├── plotWidget.py ├── printPreview.py ├── scatterMask.py ├── scatterview.py ├── shiftPlotAction.py ├── simplewidget.py ├── stackView.py ├── stackedprogressbar.py ├── syncPlotLocation.py ├── syncaxis.py ├── viewer3DVolume.py └── writetoh5.py ├── meson.build ├── meson.options ├── package ├── debian12 │ ├── changelog │ ├── control │ ├── gbp.conf │ ├── patches │ │ ├── 0002-use-the-system-mathjax-privacy-breach.patch │ │ └── series │ ├── py3dist-overrides │ ├── python-silx-doc.doc-base │ ├── rules │ ├── source │ │ ├── format │ │ └── options │ ├── tests │ │ └── control │ └── watch ├── debian13 │ ├── changelog │ ├── control │ ├── gbp.conf │ ├── patches │ │ ├── 0002-use-the-system-mathjax-privacy-breach.patch │ │ └── series │ ├── py3dist-overrides │ ├── python-silx-doc.doc-base │ ├── rules │ ├── source │ │ ├── format │ │ └── options │ ├── tests │ │ └── control │ └── watch ├── desktop │ ├── org.silx.SilxView.desktop │ ├── silx.png │ ├── silx.svg │ └── silx.xml └── pyinstaller │ ├── DS_Store │ ├── README.rst │ ├── background.pdf │ ├── bootstrap.py │ ├── codesign.sh │ ├── create-dmg.sh │ ├── create-installer.iss.template │ ├── entitlements.plist │ ├── notarize.sh │ ├── pyinstaller.spec │ ├── silx-view.sh │ ├── silx.icns │ └── silx.ico ├── pyproject.toml ├── qtdesigner_plugins ├── README.rst ├── plot1dplugin.py ├── plot2dplugin.py ├── plotwidgetplugin.py └── plotwindowplugin.py ├── run_tests.py ├── src └── silx │ ├── __init__.py │ ├── __main__.py │ ├── _config.py │ ├── _utils.py │ ├── _version.py │ ├── app │ ├── __init__.py │ ├── compare │ │ ├── CompareImagesWindow.py │ │ ├── __init__.py │ │ ├── main.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_compare.py │ │ │ └── test_launcher.py │ ├── convert.py │ ├── test │ │ ├── __init__.py │ │ └── test_convert.py │ ├── test_.py │ ├── utils │ │ ├── __init__.py │ │ ├── parseutils.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_parseutils.py │ └── view │ │ ├── About.py │ │ ├── ApplicationContext.py │ │ ├── CustomNxdataWidget.py │ │ ├── CustomPlotSelectionWindow.py │ │ ├── DataPanel.py │ │ ├── Viewer.py │ │ ├── __init__.py │ │ ├── main.py │ │ └── test │ │ ├── __init__.py │ │ ├── test_launcher.py │ │ ├── test_plotselection.py │ │ └── test_view.py │ ├── conftest.py │ ├── gui │ ├── __init__.py │ ├── _glutils │ │ ├── Context.py │ │ ├── FramebufferTexture.py │ │ ├── OpenGLWidget.py │ │ ├── Program.py │ │ ├── Texture.py │ │ ├── VertexBuffer.py │ │ ├── __init__.py │ │ ├── font.py │ │ ├── gl.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ └── test_gl.py │ │ └── utils.py │ ├── colors.py │ ├── conftest.py │ ├── console.py │ ├── constants.py │ ├── data │ │ ├── ArrayTableModel.py │ │ ├── ArrayTableWidget.py │ │ ├── DataViewer.py │ │ ├── DataViewerFrame.py │ │ ├── DataViewerSelector.py │ │ ├── DataViews.py │ │ ├── Hdf5TableView.py │ │ ├── HexaTableView.py │ │ ├── NXdataWidgets.py │ │ ├── NumpyAxesSelector.py │ │ ├── RecordTableView.py │ │ ├── TextFormatter.py │ │ ├── _RecordPlot.py │ │ ├── _SignalSelector.py │ │ ├── _VolumeWindow.py │ │ ├── __init__.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_arraywidget.py │ │ │ ├── test_dataviewer.py │ │ │ ├── test_nexus_dataviewer.py │ │ │ ├── test_numpyaxesselector.py │ │ │ └── test_textformatter.py │ ├── dialog │ │ ├── AbstractDataFileDialog.py │ │ ├── ColormapDialog.py │ │ ├── DataFileDialog.py │ │ ├── DatasetDialog.py │ │ ├── FileTypeComboBox.py │ │ ├── GroupDialog.py │ │ ├── ImageFileDialog.py │ │ ├── SafeFileIconProvider.py │ │ ├── SafeFileSystemModel.py │ │ ├── _ColormapPercentileWidget.py │ │ ├── __init__.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_colormapdialog.py │ │ │ ├── test_datafiledialog.py │ │ │ ├── test_hdf5ItemSelectionDialog.py │ │ │ └── test_imagefiledialog.py │ │ └── utils.py │ ├── fit │ │ ├── BackgroundWidget.py │ │ ├── FitConfig.py │ │ ├── FitWidget.py │ │ ├── FitWidgets.py │ │ ├── Parameters.py │ │ ├── __init__.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_backgroundwidget.py │ │ │ ├── test_fitconfig.py │ │ │ └── test_fitwidget.py │ ├── hdf5 │ │ ├── Hdf5Formatter.py │ │ ├── Hdf5HeaderView.py │ │ ├── Hdf5Item.py │ │ ├── Hdf5LoadingItem.py │ │ ├── Hdf5Node.py │ │ ├── Hdf5TreeModel.py │ │ ├── Hdf5TreeView.py │ │ ├── NexusSortFilterProxyModel.py │ │ ├── __init__.py │ │ ├── _utils.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_hdf5.py │ ├── icons.py │ ├── plot │ │ ├── AlphaSlider.py │ │ ├── ColorBar.py │ │ ├── CompareImages.py │ │ ├── ComplexImageView.py │ │ ├── CurvesROIWidget.py │ │ ├── ImageStack.py │ │ ├── ImageView.py │ │ ├── Interaction.py │ │ ├── ItemsSelectionDialog.py │ │ ├── LegendSelector.py │ │ ├── LimitsHistory.py │ │ ├── MaskToolsWidget.py │ │ ├── PlotEvents.py │ │ ├── PlotInteraction.py │ │ ├── PlotToolButtons.py │ │ ├── PlotWidget.py │ │ ├── PlotWindow.py │ │ ├── PrintPreviewToolButton.py │ │ ├── Profile.py │ │ ├── ROIStatsWidget.py │ │ ├── ScatterMaskToolsWidget.py │ │ ├── ScatterView.py │ │ ├── StackView.py │ │ ├── StatsWidget.py │ │ ├── _BaseMaskToolsWidget.py │ │ ├── __init__.py │ │ ├── _utils │ │ │ ├── __init__.py │ │ │ ├── dtime_ticklayout.py │ │ │ ├── panzoom.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_dtime_ticklayout.py │ │ │ │ └── test_ticklayout.py │ │ │ └── ticklayout.py │ │ ├── actions │ │ │ ├── PlotAction.py │ │ │ ├── PlotToolAction.py │ │ │ ├── __init__.py │ │ │ ├── control.py │ │ │ ├── fit.py │ │ │ ├── histogram.py │ │ │ ├── image.py │ │ │ ├── io.py │ │ │ ├── medfilt.py │ │ │ └── mode.py │ │ ├── backends │ │ │ ├── BackendBase.py │ │ │ ├── BackendMatplotlib.py │ │ │ ├── BackendOpenGL.py │ │ │ ├── __init__.py │ │ │ └── glutils │ │ │ │ ├── GLPlotCurve.py │ │ │ │ ├── GLPlotFrame.py │ │ │ │ ├── GLPlotImage.py │ │ │ │ ├── GLPlotItem.py │ │ │ │ ├── GLPlotTriangles.py │ │ │ │ ├── GLSupport.py │ │ │ │ ├── GLText.py │ │ │ │ ├── GLTexture.py │ │ │ │ ├── PlotImageFile.py │ │ │ │ └── __init__.py │ │ ├── items │ │ │ ├── __init__.py │ │ │ ├── _arc_roi.py │ │ │ ├── _band_roi.py │ │ │ ├── _cache.py │ │ │ ├── _pick.py │ │ │ ├── _roi_base.py │ │ │ ├── axis.py │ │ │ ├── complex.py │ │ │ ├── core.py │ │ │ ├── curve.py │ │ │ ├── histogram.py │ │ │ ├── image.py │ │ │ ├── image_aggregated.py │ │ │ ├── marker.py │ │ │ ├── roi.py │ │ │ ├── scatter.py │ │ │ └── shape.py │ │ ├── stats │ │ │ ├── __init__.py │ │ │ ├── stats.py │ │ │ └── statshandler.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_alphaslider.py │ │ │ ├── test_axis.py │ │ │ ├── test_cache.py │ │ │ ├── test_colorbar.py │ │ │ ├── test_compareimages.py │ │ │ ├── test_compleximageview.py │ │ │ ├── test_curvesroiwidget.py │ │ │ ├── test_imagestack.py │ │ │ ├── test_imageview.py │ │ │ ├── test_interaction.py │ │ │ ├── test_item.py │ │ │ ├── test_legendselector.py │ │ │ ├── test_limitconstraints.py │ │ │ ├── test_masktoolswidget.py │ │ │ ├── test_pixelintensityhistoaction.py │ │ │ ├── test_plotactions.py │ │ │ ├── test_plotinteraction.py │ │ │ ├── test_plotwidget.py │ │ │ ├── test_plotwidgetactiveitem.py │ │ │ ├── test_plotwidgetdatamargins.py │ │ │ ├── test_plotwidgetnobackend.py │ │ │ ├── test_plotwindow.py │ │ │ ├── test_roistatswidget.py │ │ │ ├── test_saveaction.py │ │ │ ├── test_scattermasktoolswidget.py │ │ │ ├── test_scatterview.py │ │ │ ├── test_stackview.py │ │ │ ├── test_stats.py │ │ │ ├── test_utilsaxis.py │ │ │ └── utils.py │ │ ├── tools │ │ │ ├── CurveLegendsWidget.py │ │ │ ├── LimitsToolBar.py │ │ │ ├── PlotToolButton.py │ │ │ ├── PositionInfo.py │ │ │ ├── RadarView.py │ │ │ ├── RulerToolButton.py │ │ │ ├── __init__.py │ │ │ ├── compare │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── profile.py │ │ │ │ ├── statusbar.py │ │ │ │ └── toolbar.py │ │ │ ├── menus.py │ │ │ ├── profile │ │ │ │ ├── ScatterProfileToolBar.py │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── editors.py │ │ │ │ ├── manager.py │ │ │ │ ├── rois.py │ │ │ │ └── toolbar.py │ │ │ ├── roi.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_curvelegendswidget.py │ │ │ │ ├── test_profile.py │ │ │ │ ├── test_roicore.py │ │ │ │ ├── test_roiitems.py │ │ │ │ ├── test_scatterprofiletoolbar.py │ │ │ │ └── test_tools.py │ │ │ └── toolbars.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── axis.py │ │ │ └── intersections.py │ ├── plot3d │ │ ├── ParamTreeView.py │ │ ├── Plot3DWidget.py │ │ ├── Plot3DWindow.py │ │ ├── SFViewParamTree.py │ │ ├── ScalarFieldView.py │ │ ├── SceneWidget.py │ │ ├── SceneWindow.py │ │ ├── __init__.py │ │ ├── _model │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── items.py │ │ │ └── model.py │ │ ├── actions │ │ │ ├── Plot3DAction.py │ │ │ ├── __init__.py │ │ │ ├── io.py │ │ │ ├── mode.py │ │ │ └── viewpoint.py │ │ ├── conftest.py │ │ ├── items │ │ │ ├── __init__.py │ │ │ ├── _pick.py │ │ │ ├── clipplane.py │ │ │ ├── core.py │ │ │ ├── image.py │ │ │ ├── mesh.py │ │ │ ├── mixins.py │ │ │ ├── scatter.py │ │ │ └── volume.py │ │ ├── scene │ │ │ ├── __init__.py │ │ │ ├── axes.py │ │ │ ├── camera.py │ │ │ ├── core.py │ │ │ ├── cutplane.py │ │ │ ├── event.py │ │ │ ├── function.py │ │ │ ├── interaction.py │ │ │ ├── primitives.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_transform.py │ │ │ │ └── test_utils.py │ │ │ ├── text.py │ │ │ ├── transform.py │ │ │ ├── utils.py │ │ │ ├── viewport.py │ │ │ └── window.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_gl.py │ │ │ ├── test_scalarfieldview.py │ │ │ ├── test_scenewidget.py │ │ │ ├── test_scenewidgetpicking.py │ │ │ ├── test_scenewindow.py │ │ │ └── test_statswidget.py │ │ ├── tools │ │ │ ├── GroupPropertiesWidget.py │ │ │ ├── PositionInfoWidget.py │ │ │ ├── ViewpointTools.py │ │ │ ├── __init__.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_positioninfowidget.py │ │ │ └── toolbars.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── mng.py │ ├── printer.py │ ├── qt │ │ ├── __init__.py │ │ ├── _pyqt6.py │ │ ├── _pyside_dynamic.py │ │ ├── _qt.py │ │ ├── _utils.py │ │ └── inspect.py │ ├── test │ │ ├── __init__.py │ │ ├── test_colors.py │ │ ├── test_console.py │ │ ├── test_icons.py │ │ └── test_qt.py │ ├── utils │ │ ├── __init__.py │ │ ├── concurrent.py │ │ ├── glutils │ │ │ └── __init__.py │ │ ├── image.py │ │ ├── matplotlib.py │ │ ├── projecturl.py │ │ ├── qtutils.py │ │ ├── signal.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_async.py │ │ │ ├── test_blocksignals.py │ │ │ ├── test_glutils.py │ │ │ ├── test_image.py │ │ │ ├── test_qtutils.py │ │ │ └── test_testutils.py │ │ └── testutils.py │ └── widgets │ │ ├── BoxLayoutDockWidget.py │ │ ├── ButtonOverlay.py │ │ ├── CollapsibleWidget.py │ │ ├── ColormapNameComboBox.py │ │ ├── ElidedLabel.py │ │ ├── FilenameCompleter.py │ │ ├── FloatEdit.py │ │ ├── FlowLayout.py │ │ ├── FormGridLayout.py │ │ ├── FrameBrowser.py │ │ ├── HierarchicalTableView.py │ │ ├── LabelOverlay.py │ │ ├── LegendIconWidget.py │ │ ├── MedianFilterDialog.py │ │ ├── MultiModeAction.py │ │ ├── OverlayMixIn.py │ │ ├── PeriodicTable.py │ │ ├── PrintGeometryDialog.py │ │ ├── PrintPreview.py │ │ ├── RangeSlider.py │ │ ├── StackedProgressBar.py │ │ ├── TableWidget.py │ │ ├── ThreadPoolPushButton.py │ │ ├── UrlList.py │ │ ├── UrlSelectionTable.py │ │ ├── WaitingOverlay.py │ │ ├── WaitingPushButton.py │ │ ├── __init__.py │ │ └── test │ │ ├── __init__.py │ │ ├── test_boxlayoutdockwidget.py │ │ ├── test_collapsiblewidget.py │ │ ├── test_elidedlabel.py │ │ ├── test_floatedit.py │ │ ├── test_flowlayout.py │ │ ├── test_framebrowser.py │ │ ├── test_hierarchicaltableview.py │ │ ├── test_legendiconwidget.py │ │ ├── test_overlay_widgets.py │ │ ├── test_periodictable.py │ │ ├── test_printpreview.py │ │ ├── test_rangeslider.py │ │ ├── test_stackedprogressbar.py │ │ ├── test_tablewidget.py │ │ ├── test_threadpoolpushbutton.py │ │ └── test_urlselectiontable.py │ ├── image │ ├── __init__.py │ ├── _boundingbox.py │ ├── backprojection.py │ ├── bilinear.pyx │ ├── marchingsquares │ │ ├── __init__.py │ │ ├── _have_openmp.pxd │ │ ├── _mergeimpl.pyx │ │ ├── _skimage.py │ │ ├── include │ │ │ ├── patterns.h │ │ │ └── silx_store_openmp.h │ │ ├── meson.build │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_funcapi.py │ │ │ └── test_mergeimpl.py │ ├── medianfilter.py │ ├── meson.build │ ├── phantomgenerator.py │ ├── projection.py │ ├── reconstruction.py │ ├── shapes.pyx │ ├── sift.py │ ├── test │ │ ├── __init__.py │ │ ├── test_bb.py │ │ ├── test_bilinear.py │ │ ├── test_medianfilter.py │ │ ├── test_shapes.py │ │ └── test_tomography.py │ ├── tomography.py │ └── utils.py │ ├── io │ ├── __init__.py │ ├── _sliceh5.py │ ├── commonh5.py │ ├── configdict.py │ ├── convert.py │ ├── dictdump.py │ ├── dictdumplinks │ │ ├── __init__.py │ │ ├── _base_types.py │ │ ├── _external_binary.py │ │ ├── _from_hdf5.py │ │ ├── _from_serialized.py │ │ ├── _link_types.py │ │ ├── _parse_fabio_targets.py │ │ ├── _parse_hdf5_targets.py │ │ ├── _parse_hdf5_utils.py │ │ ├── _parse_tiff_targets.py │ │ ├── _schemas.py │ │ ├── _utils.py │ │ └── _vds.py │ ├── fabioh5.py │ ├── fioh5.py │ ├── h5link_utils.py │ ├── h5py_utils.py │ ├── meson.build │ ├── nxdata │ │ ├── __init__.py │ │ ├── _utils.py │ │ ├── parse.py │ │ └── write.py │ ├── octaveh5.py │ ├── rawh5.py │ ├── specfile │ │ ├── include │ │ │ ├── Lists.h │ │ │ ├── SpecFile.h │ │ │ ├── SpecFileCython.h │ │ │ ├── SpecFileP.h │ │ │ └── locale_management.h │ │ ├── meson.build │ │ ├── specfile.pyx │ │ ├── specfile_wrapper.pxd │ │ └── src │ │ │ ├── locale_management.c │ │ │ ├── sfdata.c │ │ │ ├── sfheader.c │ │ │ ├── sfindex.c │ │ │ ├── sfinit.c │ │ │ ├── sflabel.c │ │ │ ├── sflists.c │ │ │ ├── sfmca.c │ │ │ ├── sftools.c │ │ │ └── sfwrite.c │ ├── specfilewrapper.py │ ├── spech5.py │ ├── test │ │ ├── __init__.py │ │ ├── test_commonh5.py │ │ ├── test_dictdump.py │ │ ├── test_dictdumplinks.py │ │ ├── test_fabioh5.py │ │ ├── test_fioh5.py │ │ ├── test_h5link_utils.py │ │ ├── test_h5py_utils.py │ │ ├── test_nxdata.py │ │ ├── test_octaveh5.py │ │ ├── test_rawh5.py │ │ ├── test_sliceh5.py │ │ ├── test_specfile.py │ │ ├── test_specfilewrapper.py │ │ ├── test_spech5.py │ │ ├── test_spectoh5.py │ │ ├── test_url.py │ │ ├── test_utils.py │ │ └── test_write_to_h5.py │ ├── url.py │ └── utils.py │ ├── math │ ├── __init__.py │ ├── _colormap.pyx │ ├── calibration.py │ ├── colormap.py │ ├── combo.pyi │ ├── combo.pyx │ ├── fft │ │ ├── __init__.py │ │ ├── basefft.py │ │ ├── clfft.py │ │ ├── cufft.py │ │ ├── fft.py │ │ ├── fftw.py │ │ ├── npfft.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_fft.py │ ├── fit │ │ ├── __init__.py │ │ ├── bgtheories.py │ │ ├── filters │ │ │ ├── filters.pyx │ │ │ ├── filters_wrapper.pxd │ │ │ ├── include │ │ │ │ └── filters.h │ │ │ ├── meson.build │ │ │ └── src │ │ │ │ ├── smoothnd.c │ │ │ │ ├── snip1d.c │ │ │ │ ├── snip2d.c │ │ │ │ ├── snip3d.c │ │ │ │ └── strip.c │ │ ├── fitmanager.py │ │ ├── fittheories.py │ │ ├── fittheory.py │ │ ├── functions │ │ │ ├── functions.pyx │ │ │ ├── functions_wrapper.pxd │ │ │ ├── include │ │ │ │ └── functions.h │ │ │ ├── meson.build │ │ │ └── src │ │ │ │ └── funs.c │ │ ├── leastsq.py │ │ ├── meson.build │ │ ├── peaks │ │ │ ├── include │ │ │ │ └── peaks.h │ │ │ ├── meson.build │ │ │ ├── peaks.pyx │ │ │ ├── peaks_wrapper.pxd │ │ │ └── src │ │ │ │ └── peaks.c │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_bgtheories.py │ │ │ ├── test_filters.py │ │ │ ├── test_fit.py │ │ │ ├── test_fitmanager.py │ │ │ ├── test_functions.py │ │ │ └── test_peaks.py │ ├── histogram.py │ ├── histogramnd │ │ ├── README │ │ ├── chistogramnd.pyx │ │ ├── chistogramnd_lut.pyx │ │ ├── histogramnd_c.pxd │ │ ├── include │ │ │ ├── histogramnd_c.h │ │ │ └── templates.h │ │ ├── meson.build │ │ └── src │ │ │ ├── histogramnd_c.c │ │ │ └── histogramnd_template.c │ ├── include │ │ └── math_compatibility.h │ ├── interpolate.pyx │ ├── marchingcubes │ │ ├── marchingcubes.pyx │ │ ├── mc.hpp │ │ ├── mc.pxd │ │ ├── mc_lut.cpp │ │ └── meson.build │ ├── medianfilter │ │ ├── __init__.py │ │ ├── include │ │ │ └── median_filter.hpp │ │ ├── median_filter.pxd │ │ ├── medianfilter.pyx │ │ ├── meson.build │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── benchmark.py │ │ │ └── test_medianfilter.py │ ├── meson.build │ └── test │ │ ├── __init__.py │ │ ├── benchmark_combo.py │ │ ├── histo_benchmarks.py │ │ ├── test_HistogramndLut_nominal.py │ │ ├── test_calibration.py │ │ ├── test_colormap.py │ │ ├── test_combo.py │ │ ├── test_histogramnd_error.py │ │ ├── test_histogramnd_nominal.py │ │ ├── test_histogramnd_vs_np.py │ │ ├── test_interpolate.py │ │ └── test_marchingcubes.py │ ├── meson.build │ ├── opencl │ ├── __init__.py │ ├── atomic.py │ ├── backprojection.py │ ├── codec │ │ ├── __init__.py │ │ ├── bitshuffle_lz4.py │ │ ├── byte_offset.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_bitshuffle_lz4.py │ │ │ └── test_byte_offset.py │ ├── common.py │ ├── conftest.py │ ├── convolution.py │ ├── image.py │ ├── linalg.py │ ├── medfilt.py │ ├── processing.py │ ├── projection.py │ ├── reconstruction.py │ ├── sift │ │ ├── __init__.py │ │ ├── alignment.py │ │ ├── match.py │ │ ├── param.py │ │ ├── plan.py │ │ ├── sift.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_algebra.py │ │ │ ├── test_align.py │ │ │ ├── test_convol.py │ │ │ ├── test_gaussian.py │ │ │ ├── test_image.py │ │ │ ├── test_image_functions.py │ │ │ ├── test_image_setup.py │ │ │ ├── test_keypoints.py │ │ │ ├── test_matching.py │ │ │ ├── test_preproc.py │ │ │ ├── test_reductions.py │ │ │ └── test_transform.py │ │ └── utils.py │ ├── sinofilter.py │ ├── sparse.py │ ├── statistics.py │ ├── test │ │ ├── __init__.py │ │ ├── test_addition.py │ │ ├── test_array_utils.py │ │ ├── test_backprojection.py │ │ ├── test_convolution.py │ │ ├── test_doubleword.py │ │ ├── test_image.py │ │ ├── test_kahan.py │ │ ├── test_linalg.py │ │ ├── test_medfilt.py │ │ ├── test_processing.py │ │ ├── test_projection.py │ │ ├── test_sparse.py │ │ └── test_stats.py │ └── utils.py │ ├── py.typed │ ├── resources │ ├── __init__.py │ ├── gui │ │ ├── colormaps │ │ │ ├── cividis.npy │ │ │ ├── inferno.npy │ │ │ ├── magma.npy │ │ │ ├── plasma.npy │ │ │ └── viridis.npy │ │ ├── icons │ │ │ ├── 3d-plane-normal-x.png │ │ │ ├── 3d-plane-normal-x.svg │ │ │ ├── 3d-plane-normal-y.png │ │ │ ├── 3d-plane-normal-y.svg │ │ │ ├── 3d-plane-normal-z.png │ │ │ ├── 3d-plane-normal-z.svg │ │ │ ├── 3d-plane-pan.png │ │ │ ├── 3d-plane-pan.svg │ │ │ ├── 3d-plane.png │ │ │ ├── 3d-plane.svg │ │ │ ├── add-range-horizontal.png │ │ │ ├── add-range-horizontal.svg │ │ │ ├── add-shape-arc.png │ │ │ ├── add-shape-arc.svg │ │ │ ├── add-shape-circle.png │ │ │ ├── add-shape-circle.svg │ │ │ ├── add-shape-cross.png │ │ │ ├── add-shape-cross.svg │ │ │ ├── add-shape-diagonal.png │ │ │ ├── add-shape-diagonal.svg │ │ │ ├── add-shape-ellipse.png │ │ │ ├── add-shape-ellipse.svg │ │ │ ├── add-shape-horizontal.png │ │ │ ├── add-shape-horizontal.svg │ │ │ ├── add-shape-point.png │ │ │ ├── add-shape-point.svg │ │ │ ├── add-shape-polygon.png │ │ │ ├── add-shape-polygon.svg │ │ │ ├── add-shape-rectangle.png │ │ │ ├── add-shape-rectangle.svg │ │ │ ├── add-shape-rotated-rectangle.png │ │ │ ├── add-shape-rotated-rectangle.svg │ │ │ ├── add-shape-unknown.png │ │ │ ├── add-shape-unknown.svg │ │ │ ├── add-shape-vertical.png │ │ │ ├── add-shape-vertical.svg │ │ │ ├── add.png │ │ │ ├── add.svg │ │ │ ├── aggregation-mode.png │ │ │ ├── aggregation-mode.svg │ │ │ ├── arrow-keys.png │ │ │ ├── arrow-keys.svg │ │ │ ├── axis.png │ │ │ ├── axis.svg │ │ │ ├── backend-opengl.png │ │ │ ├── backend-opengl.svg │ │ │ ├── camera.png │ │ │ ├── camera.svg │ │ │ ├── clipboard.png │ │ │ ├── clipboard.svg │ │ │ ├── close.png │ │ │ ├── close.svg │ │ │ ├── colorbar.png │ │ │ ├── colorbar.svg │ │ │ ├── colormap-histogram.png │ │ │ ├── colormap-histogram.svg │ │ │ ├── colormap-none.png │ │ │ ├── colormap-none.svg │ │ │ ├── colormap-norm-arcsinh.png │ │ │ ├── colormap-norm-arcsinh.svg │ │ │ ├── colormap-norm-gamma.png │ │ │ ├── colormap-norm-gamma.svg │ │ │ ├── colormap-norm-linear.png │ │ │ ├── colormap-norm-linear.svg │ │ │ ├── colormap-norm-log.png │ │ │ ├── colormap-norm-log.svg │ │ │ ├── colormap-norm-sqrt.png │ │ │ ├── colormap-norm-sqrt.svg │ │ │ ├── colormap-range.png │ │ │ ├── colormap-range.svg │ │ │ ├── colormap.png │ │ │ ├── colormap.svg │ │ │ ├── compare-align-auto.png │ │ │ ├── compare-align-auto.svg │ │ │ ├── compare-align-center.png │ │ │ ├── compare-align-center.svg │ │ │ ├── compare-align-origin.png │ │ │ ├── compare-align-origin.svg │ │ │ ├── compare-align-stretch.png │ │ │ ├── compare-align-stretch.svg │ │ │ ├── compare-keypoints.png │ │ │ ├── compare-keypoints.svg │ │ │ ├── compare-mode-a-minus-b.png │ │ │ ├── compare-mode-a-minus-b.svg │ │ │ ├── compare-mode-a.png │ │ │ ├── compare-mode-a.svg │ │ │ ├── compare-mode-b.png │ │ │ ├── compare-mode-b.svg │ │ │ ├── compare-mode-hline.png │ │ │ ├── compare-mode-hline.svg │ │ │ ├── compare-mode-rb-channel.png │ │ │ ├── compare-mode-rb-channel.svg │ │ │ ├── compare-mode-rbneg-channel.png │ │ │ ├── compare-mode-rbneg-channel.svg │ │ │ ├── compare-mode-vline.png │ │ │ ├── compare-mode-vline.svg │ │ │ ├── crop.png │ │ │ ├── crop.svg │ │ │ ├── crosshair.png │ │ │ ├── crosshair.svg │ │ │ ├── cube-back.png │ │ │ ├── cube-back.svg │ │ │ ├── cube-bottom.png │ │ │ ├── cube-bottom.svg │ │ │ ├── cube-front.png │ │ │ ├── cube-front.svg │ │ │ ├── cube-left.png │ │ │ ├── cube-left.svg │ │ │ ├── cube-right.png │ │ │ ├── cube-right.svg │ │ │ ├── cube-rotate.png │ │ │ ├── cube-rotate.svg │ │ │ ├── cube-top.png │ │ │ ├── cube-top.svg │ │ │ ├── cube.png │ │ │ ├── cube.svg │ │ │ ├── description-description.png │ │ │ ├── description-description.svg │ │ │ ├── description-error.png │ │ │ ├── description-error.svg │ │ │ ├── description-name.png │ │ │ ├── description-name.svg │ │ │ ├── description-program.png │ │ │ ├── description-program.svg │ │ │ ├── description-title.png │ │ │ ├── description-title.svg │ │ │ ├── description-value.png │ │ │ ├── description-value.svg │ │ │ ├── document-open.png │ │ │ ├── document-open.svg │ │ │ ├── document-print.png │ │ │ ├── document-print.svg │ │ │ ├── document-save.png │ │ │ ├── document-save.svg │ │ │ ├── draw-brush.png │ │ │ ├── draw-brush.svg │ │ │ ├── draw-pencil.png │ │ │ ├── draw-pencil.svg │ │ │ ├── draw-rubber.png │ │ │ ├── draw-rubber.svg │ │ │ ├── edit-copy.png │ │ │ ├── edit-copy.svg │ │ │ ├── eye.png │ │ │ ├── eye.svg │ │ │ ├── first.png │ │ │ ├── first.svg │ │ │ ├── folder.png │ │ │ ├── folder.svg │ │ │ ├── image-mask.png │ │ │ ├── image-mask.svg │ │ │ ├── image-select-add.png │ │ │ ├── image-select-add.svg │ │ │ ├── image-select-box.png │ │ │ ├── image-select-box.svg │ │ │ ├── image-select-brush.png │ │ │ ├── image-select-brush.svg │ │ │ ├── image-select-erase-rubber.png │ │ │ ├── image-select-erase-rubber.svg │ │ │ ├── image-select-erase.png │ │ │ ├── image-select-erase.svg │ │ │ ├── image.png │ │ │ ├── image.svg │ │ │ ├── item-0dim.png │ │ │ ├── item-0dim.svg │ │ │ ├── item-1dim.png │ │ │ ├── item-1dim.svg │ │ │ ├── item-2dim.png │ │ │ ├── item-2dim.svg │ │ │ ├── item-3dim.png │ │ │ ├── item-3dim.svg │ │ │ ├── item-ndim.png │ │ │ ├── item-ndim.svg │ │ │ ├── item-none.png │ │ │ ├── item-none.svg │ │ │ ├── item-object.png │ │ │ ├── item-object.svg │ │ │ ├── last.png │ │ │ ├── last.svg │ │ │ ├── layer-nx.png │ │ │ ├── layer-nx.svg │ │ │ ├── mask-clear-all.png │ │ │ ├── mask-clear-all.svg │ │ │ ├── mask-clear.png │ │ │ ├── mask-clear.svg │ │ │ ├── mask-invert.png │ │ │ ├── mask-invert.svg │ │ │ ├── math-amplitude.png │ │ │ ├── math-amplitude.svg │ │ │ ├── math-average.png │ │ │ ├── math-average.svg │ │ │ ├── math-derive.png │ │ │ ├── math-derive.svg │ │ │ ├── math-energy.png │ │ │ ├── math-energy.svg │ │ │ ├── math-fit.png │ │ │ ├── math-fit.svg │ │ │ ├── math-imaginary.png │ │ │ ├── math-imaginary.svg │ │ │ ├── math-mean.png │ │ │ ├── math-mean.svg │ │ │ ├── math-normalize.png │ │ │ ├── math-normalize.svg │ │ │ ├── math-peak-reset.png │ │ │ ├── math-peak-reset.svg │ │ │ ├── math-peak-search.png │ │ │ ├── math-peak-search.svg │ │ │ ├── math-peak.png │ │ │ ├── math-peak.svg │ │ │ ├── math-phase-color-log.png │ │ │ ├── math-phase-color-log.svg │ │ │ ├── math-phase-color.png │ │ │ ├── math-phase-color.svg │ │ │ ├── math-phase.png │ │ │ ├── math-phase.svg │ │ │ ├── math-real.png │ │ │ ├── math-real.svg │ │ │ ├── math-sigma.png │ │ │ ├── math-sigma.svg │ │ │ ├── math-smooth.png │ │ │ ├── math-smooth.svg │ │ │ ├── math-square-amplitude.png │ │ │ ├── math-square-amplitude.svg │ │ │ ├── math-substract.png │ │ │ ├── math-substract.svg │ │ │ ├── math-swap-sign.png │ │ │ ├── math-swap-sign.svg │ │ │ ├── math-ymin-to-zero.png │ │ │ ├── math-ymin-to-zero.svg │ │ │ ├── median-filter.png │ │ │ ├── median-filter.svg │ │ │ ├── next.png │ │ │ ├── next.svg │ │ │ ├── normal.png │ │ │ ├── normal.svg │ │ │ ├── nxdata-axis-add.png │ │ │ ├── nxdata-axis-add.svg │ │ │ ├── nxdata-axis-remove.png │ │ │ ├── nxdata-axis-remove.svg │ │ │ ├── nxdata-create.png │ │ │ ├── nxdata-create.svg │ │ │ ├── nxdata-remove.png │ │ │ ├── nxdata-remove.svg │ │ │ ├── pan.png │ │ │ ├── pan.svg │ │ │ ├── pixel-intensities.png │ │ │ ├── pixel-intensities.svg │ │ │ ├── plot-grid.png │ │ │ ├── plot-grid.svg │ │ │ ├── plot-roi-above.png │ │ │ ├── plot-roi-above.svg │ │ │ ├── plot-roi-below.png │ │ │ ├── plot-roi-below.svg │ │ │ ├── plot-roi-between.png │ │ │ ├── plot-roi-between.svg │ │ │ ├── plot-roi-reset.png │ │ │ ├── plot-roi-reset.svg │ │ │ ├── plot-roi.png │ │ │ ├── plot-roi.svg │ │ │ ├── plot-symbols.png │ │ │ ├── plot-symbols.svg │ │ │ ├── plot-toggle-points.png │ │ │ ├── plot-toggle-points.svg │ │ │ ├── plot-widget.png │ │ │ ├── plot-widget.svg │ │ │ ├── plot-window-image.png │ │ │ ├── plot-window-image.svg │ │ │ ├── plot-window.png │ │ │ ├── plot-window.svg │ │ │ ├── plot-xauto.png │ │ │ ├── plot-xauto.svg │ │ │ ├── plot-xleft.png │ │ │ ├── plot-xleft.svg │ │ │ ├── plot-xlog.png │ │ │ ├── plot-xlog.svg │ │ │ ├── plot-xright.png │ │ │ ├── plot-xright.svg │ │ │ ├── plot-yauto.png │ │ │ ├── plot-yauto.svg │ │ │ ├── plot-ydown.png │ │ │ ├── plot-ydown.svg │ │ │ ├── plot-ylog.png │ │ │ ├── plot-ylog.svg │ │ │ ├── plot-yup.png │ │ │ ├── plot-yup.svg │ │ │ ├── pointing-hand.png │ │ │ ├── pointing-hand.svg │ │ │ ├── previous.png │ │ │ ├── previous.svg │ │ │ ├── process-working.mng │ │ │ ├── process-working │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 09.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ └── 30.png │ │ │ ├── profile-clear.png │ │ │ ├── profile-clear.svg │ │ │ ├── profile1D.png │ │ │ ├── profile1D.svg │ │ │ ├── profile2D.png │ │ │ ├── profile2D.svg │ │ │ ├── remove.png │ │ │ ├── remove.svg │ │ │ ├── rm.png │ │ │ ├── rm.svg │ │ │ ├── rotate-3d.png │ │ │ ├── rotate-3d.svg │ │ │ ├── rudder.png │ │ │ ├── rudder.svg │ │ │ ├── ruler.png │ │ │ ├── ruler.svg │ │ │ ├── scale-auto.png │ │ │ ├── scale-auto.svg │ │ │ ├── scale-fixed.png │ │ │ ├── scale-fixed.svg │ │ │ ├── selected.png │ │ │ ├── selected.svg │ │ │ ├── shape-circle-solid.png │ │ │ ├── shape-circle-solid.svg │ │ │ ├── shape-circle.png │ │ │ ├── shape-circle.svg │ │ │ ├── shape-cross.png │ │ │ ├── shape-cross.svg │ │ │ ├── shape-diagonal-directed.png │ │ │ ├── shape-diagonal-directed.svg │ │ │ ├── shape-diagonal.png │ │ │ ├── shape-diagonal.svg │ │ │ ├── shape-ellipse-solid.png │ │ │ ├── shape-ellipse-solid.svg │ │ │ ├── shape-ellipse.png │ │ │ ├── shape-ellipse.svg │ │ │ ├── shape-horizontal.png │ │ │ ├── shape-horizontal.svg │ │ │ ├── shape-polygon.png │ │ │ ├── shape-polygon.svg │ │ │ ├── shape-rectangle.png │ │ │ ├── shape-rectangle.svg │ │ │ ├── shape-square.png │ │ │ ├── shape-square.svg │ │ │ ├── shape-vertical.png │ │ │ ├── shape-vertical.svg │ │ │ ├── side-histograms.png │ │ │ ├── side-histograms.svg │ │ │ ├── silx.png │ │ │ ├── silx.svg │ │ │ ├── slice-cross.png │ │ │ ├── slice-cross.svg │ │ │ ├── slice-horizontal.png │ │ │ ├── slice-horizontal.svg │ │ │ ├── slice-vertical.png │ │ │ ├── slice-vertical.svg │ │ │ ├── sliders-off.png │ │ │ ├── sliders-off.svg │ │ │ ├── sliders-on.png │ │ │ ├── sliders-on.svg │ │ │ ├── spec.png │ │ │ ├── spec.svg │ │ │ ├── stats-active-items.png │ │ │ ├── stats-active-items.svg │ │ │ ├── stats-visible-data.png │ │ │ ├── stats-visible-data.svg │ │ │ ├── stats-whole-data.png │ │ │ ├── stats-whole-data.svg │ │ │ ├── stats-whole-items.png │ │ │ ├── stats-whole-items.svg │ │ │ ├── tree-collapse-all.png │ │ │ ├── tree-collapse-all.svg │ │ │ ├── tree-expand-all.png │ │ │ ├── tree-expand-all.svg │ │ │ ├── tree-sort.png │ │ │ ├── tree-sort.svg │ │ │ ├── view-1d.png │ │ │ ├── view-1d.svg │ │ │ ├── view-2d-stack.png │ │ │ ├── view-2d-stack.svg │ │ │ ├── view-2d.png │ │ │ ├── view-2d.svg │ │ │ ├── view-3d.png │ │ │ ├── view-3d.svg │ │ │ ├── view-fullscreen.png │ │ │ ├── view-fullscreen.svg │ │ │ ├── view-hdf5.png │ │ │ ├── view-hdf5.svg │ │ │ ├── view-nexus.png │ │ │ ├── view-nexus.svg │ │ │ ├── view-nofullscreen.png │ │ │ ├── view-nofullscreen.svg │ │ │ ├── view-raw.png │ │ │ ├── view-raw.svg │ │ │ ├── view-refresh.png │ │ │ ├── view-refresh.svg │ │ │ ├── view-text.png │ │ │ ├── view-text.svg │ │ │ ├── window-new.png │ │ │ ├── window-new.svg │ │ │ ├── zoom-back.png │ │ │ ├── zoom-back.svg │ │ │ ├── zoom-in.png │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-original.png │ │ │ ├── zoom-original.svg │ │ │ ├── zoom-out.png │ │ │ ├── zoom-out.svg │ │ │ ├── zoom.png │ │ │ └── zoom.svg │ │ └── logo │ │ │ ├── silx.png │ │ │ └── silx.svg │ └── opencl │ │ ├── addition.cl │ │ ├── array_utils.cl │ │ ├── backproj.cl │ │ ├── backproj_helper.cl │ │ ├── bitonic.cl │ │ ├── codec │ │ ├── bitshuffle_lz4.cl │ │ └── byte_offset.cl │ │ ├── convolution.cl │ │ ├── convolution_textures.cl │ │ ├── doubleword.cl │ │ ├── image │ │ ├── cast.cl │ │ ├── histogram.cl │ │ ├── map.cl │ │ └── max_min.cl │ │ ├── kahan.cl │ │ ├── linalg.cl │ │ ├── medfilt.cl │ │ ├── preprocess.cl │ │ ├── proj.cl │ │ ├── sift │ │ ├── addition.cl │ │ ├── algebra.cl │ │ ├── convolution.cl │ │ ├── descriptor_cpu.cl │ │ ├── descriptor_gpu1.cl │ │ ├── descriptor_gpu2.cl │ │ ├── gaussian.cl │ │ ├── image.cl │ │ ├── interpolation.cl │ │ ├── matching_cpu.cl │ │ ├── matching_gpu.cl │ │ ├── memset.cl │ │ ├── orientation_cpu.cl │ │ ├── orientation_gpu.cl │ │ ├── preprocess.cl │ │ ├── reductions.cl │ │ ├── sift.cl │ │ └── transform.cl │ │ ├── sparse.cl │ │ └── statistics.cl │ ├── sx │ ├── __init__.py │ ├── _plot.py │ └── _plot3d.py │ ├── test │ ├── __init__.py │ ├── test_resources.py │ ├── test_sx.py │ ├── test_version.py │ └── utils.py │ ├── third_party │ ├── EdfFile.py │ ├── TiffIO.py │ └── __init__.py │ └── utils │ ├── ExternalResources.py │ ├── __init__.py │ ├── array_like.py │ ├── debug.py │ ├── deprecation.py │ ├── enum.py │ ├── exceptions.py │ ├── files.py │ ├── launcher.py │ ├── number.py │ ├── property.py │ ├── proxy.py │ ├── retry.py │ ├── test │ ├── __init__.py │ ├── test_array_like.py │ ├── test_debug.py │ ├── test_deprecation.py │ ├── test_enum.py │ ├── test_external_resources.py │ ├── test_launcher.py │ ├── test_launcher_command.py │ ├── test_number.py │ ├── test_proxy.py │ ├── test_retry.py │ ├── test_testutils.py │ └── test_weakref.py │ ├── testutils.py │ └── weakref.py ├── stdeb.cfg └── tools ├── build_man_page.py ├── check_meson.py ├── create_h5_sample.py ├── export_svg.sh ├── format_GH_release_notes.py ├── mesonify.py ├── optimize_svg.sh ├── svg2icns.sh └── update_icons_rst.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/.flake8 -------------------------------------------------------------------------------- /.flake8_nb: -------------------------------------------------------------------------------- 1 | [flake8_nb] 2 | extend-ignore = E203,E501,E701 3 | max-line-length = 88 -------------------------------------------------------------------------------- /.github/actions/setup-system/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/.github/actions/setup-system/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/README.rst -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/bootstrap.py -------------------------------------------------------------------------------- /ci/info_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/ci/info_platform.py -------------------------------------------------------------------------------- /ci/requirements-pinned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/ci/requirements-pinned.txt -------------------------------------------------------------------------------- /copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/copyright -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/Tutorials/Image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/Image.ipynb -------------------------------------------------------------------------------- /doc/source/Tutorials/Sift/sift.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/Sift/sift.ipynb -------------------------------------------------------------------------------- /doc/source/Tutorials/array_widget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/array_widget.rst -------------------------------------------------------------------------------- /doc/source/Tutorials/convert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/convert.rst -------------------------------------------------------------------------------- /doc/source/Tutorials/fit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/fit.rst -------------------------------------------------------------------------------- /doc/source/Tutorials/fitconfig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/fitconfig.rst -------------------------------------------------------------------------------- /doc/source/Tutorials/hdf5fromschema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/hdf5fromschema.rst -------------------------------------------------------------------------------- /doc/source/Tutorials/img/fitwidget1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/fitwidget1.png -------------------------------------------------------------------------------- /doc/source/Tutorials/img/fitwidget2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/fitwidget2.png -------------------------------------------------------------------------------- /doc/source/Tutorials/img/fitwidget3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/fitwidget3.png -------------------------------------------------------------------------------- /doc/source/Tutorials/img/fitwidget4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/fitwidget4.png -------------------------------------------------------------------------------- /doc/source/Tutorials/img/fitwidget5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/fitwidget5.png -------------------------------------------------------------------------------- /doc/source/Tutorials/img/silx_view_edf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/silx_view_edf.png -------------------------------------------------------------------------------- /doc/source/Tutorials/img/stripbg_plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/stripbg_plot1.png -------------------------------------------------------------------------------- /doc/source/Tutorials/img/stripbg_plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/img/stripbg_plot2.png -------------------------------------------------------------------------------- /doc/source/Tutorials/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/io.rst -------------------------------------------------------------------------------- /doc/source/Tutorials/specfile_to_hdf5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/specfile_to_hdf5.rst -------------------------------------------------------------------------------- /doc/source/Tutorials/writing_NXdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/Tutorials/writing_NXdata.rst -------------------------------------------------------------------------------- /doc/source/_static/navbar_icons/pypi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/_static/navbar_icons/pypi.svg -------------------------------------------------------------------------------- /doc/source/_templates/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/_templates/version.html -------------------------------------------------------------------------------- /doc/source/applications/compare.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/applications/compare.rst -------------------------------------------------------------------------------- /doc/source/applications/convert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/applications/convert.rst -------------------------------------------------------------------------------- /doc/source/applications/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/applications/index.rst -------------------------------------------------------------------------------- /doc/source/applications/view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/applications/view.rst -------------------------------------------------------------------------------- /doc/source/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contribute/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/contribute/development.rst -------------------------------------------------------------------------------- /doc/source/contribute/icons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/contribute/icons.rst -------------------------------------------------------------------------------- /doc/source/contribute/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/contribute/index.rst -------------------------------------------------------------------------------- /doc/source/contribute/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/contribute/release.rst -------------------------------------------------------------------------------- /doc/source/description/img/sift_dog1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/description/img/sift_dog1.png -------------------------------------------------------------------------------- /doc/source/description/img/sift_match1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/description/img/sift_match1.png -------------------------------------------------------------------------------- /doc/source/description/img/sift_match2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/description/img/sift_match2.png -------------------------------------------------------------------------------- /doc/source/description/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/description/index.rst -------------------------------------------------------------------------------- /doc/source/description/sift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/description/sift.rst -------------------------------------------------------------------------------- /doc/source/ext/snapshotqt_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/ext/snapshotqt_directive.py -------------------------------------------------------------------------------- /doc/source/ext/sphinxext-archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/ext/sphinxext-archive.py -------------------------------------------------------------------------------- /doc/source/img/silx-view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/img/silx-view.gif -------------------------------------------------------------------------------- /doc/source/img/silx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/img/silx.ico -------------------------------------------------------------------------------- /doc/source/img/silx_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/img/silx_large.png -------------------------------------------------------------------------------- /doc/source/img/silx_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/img/silx_small.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/install.rst -------------------------------------------------------------------------------- /doc/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/license.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/colors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/colors.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/console.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/data/arraytable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/data/arraytable.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/data/dataviewer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/data/dataviewer.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/data/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/data/index.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/designer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/designer.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/dialog/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/dialog/index.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/fit/fitwidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/fit/fitwidget.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/fit/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/fit/index.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/gallery.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/hdf5/h5node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/hdf5/h5node.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/hdf5/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/hdf5/index.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/icons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/icons.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/index.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/actions/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/actions/io.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/dev.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/imageview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/imageview.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/img/Plot1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/img/Plot1D.png -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/img/Plot2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/img/Plot2D.png -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/index.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/items.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/plotsignal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/plotsignal.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/plotwidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/plotwidget.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/plotwindow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/plotwindow.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/profile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/profile.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/roi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/roi.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/stackview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/stackview.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot/utils.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/actions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/actions.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/dev.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/glutils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/glutils.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/index.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/items.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/scene.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/scene.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/tools.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/plot3d/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/plot3d/utils.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/qt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/qt.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/utils.rst -------------------------------------------------------------------------------- /doc/source/modules/gui/widgets/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/gui/widgets/index.rst -------------------------------------------------------------------------------- /doc/source/modules/image/bilinear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/image/bilinear.rst -------------------------------------------------------------------------------- /doc/source/modules/image/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/image/index.rst -------------------------------------------------------------------------------- /doc/source/modules/image/medianfilter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/image/medianfilter.rst -------------------------------------------------------------------------------- /doc/source/modules/image/projection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/image/projection.rst -------------------------------------------------------------------------------- /doc/source/modules/image/shapes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/image/shapes.rst -------------------------------------------------------------------------------- /doc/source/modules/image/sift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/image/sift.rst -------------------------------------------------------------------------------- /doc/source/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/index.rst -------------------------------------------------------------------------------- /doc/source/modules/io/commonh5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/commonh5.rst -------------------------------------------------------------------------------- /doc/source/modules/io/configdict.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/configdict.rst -------------------------------------------------------------------------------- /doc/source/modules/io/convert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/convert.rst -------------------------------------------------------------------------------- /doc/source/modules/io/dictdump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/dictdump.rst -------------------------------------------------------------------------------- /doc/source/modules/io/fioh5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/fioh5.rst -------------------------------------------------------------------------------- /doc/source/modules/io/h5py_utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/h5py_utils.rst -------------------------------------------------------------------------------- /doc/source/modules/io/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/index.rst -------------------------------------------------------------------------------- /doc/source/modules/io/nxdata.rst: -------------------------------------------------------------------------------- 1 | 2 | .. automodule:: silx.io.nxdata 3 | -------------------------------------------------------------------------------- /doc/source/modules/io/octaveh5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/octaveh5.rst -------------------------------------------------------------------------------- /doc/source/modules/io/specfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/specfile.rst -------------------------------------------------------------------------------- /doc/source/modules/io/specfilewrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/specfilewrapper.rst -------------------------------------------------------------------------------- /doc/source/modules/io/spech5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/spech5.rst -------------------------------------------------------------------------------- /doc/source/modules/io/url.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/url.rst -------------------------------------------------------------------------------- /doc/source/modules/io/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/io/utils.rst -------------------------------------------------------------------------------- /doc/source/modules/math/colormap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/colormap.rst -------------------------------------------------------------------------------- /doc/source/modules/math/combo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/combo.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/bgtheories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/bgtheories.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/filters.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/fitmanager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/fitmanager.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/fittheory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/fittheory.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/functions.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/index.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/leastsq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/leastsq.rst -------------------------------------------------------------------------------- /doc/source/modules/math/fit/peaksearch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/fit/peaksearch.rst -------------------------------------------------------------------------------- /doc/source/modules/math/histogram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/histogram.rst -------------------------------------------------------------------------------- /doc/source/modules/math/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/index.rst -------------------------------------------------------------------------------- /doc/source/modules/math/medianfilter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/math/medianfilter.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/codec_cbf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/codec_cbf.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/convolution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/convolution.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/fbp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/fbp.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/index.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/medfilt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/medfilt.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/processing.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/sift/align.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/sift/align.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/sift/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/sift/index.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/sift/match.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/sift/match.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/sift/plan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/sift/plan.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/sinofilter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/sinofilter.rst -------------------------------------------------------------------------------- /doc/source/modules/opencl/statistics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/opencl/statistics.rst -------------------------------------------------------------------------------- /doc/source/modules/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/resources.rst -------------------------------------------------------------------------------- /doc/source/modules/sx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/sx.rst -------------------------------------------------------------------------------- /doc/source/modules/test/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/test/index.rst -------------------------------------------------------------------------------- /doc/source/modules/utils/array_like.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/utils/array_like.rst -------------------------------------------------------------------------------- /doc/source/modules/utils/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/utils/decorators.rst -------------------------------------------------------------------------------- /doc/source/modules/utils/enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/utils/enum.rst -------------------------------------------------------------------------------- /doc/source/modules/utils/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/utils/index.rst -------------------------------------------------------------------------------- /doc/source/modules/utils/retry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/utils/retry.rst -------------------------------------------------------------------------------- /doc/source/modules/utils/testutils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/utils/testutils.rst -------------------------------------------------------------------------------- /doc/source/modules/utils/weakref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/modules/utils/weakref.rst -------------------------------------------------------------------------------- /doc/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/overview.rst -------------------------------------------------------------------------------- /doc/source/sample_code/img/dropZones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/dropZones.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/fileDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/fileDialog.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/floatedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/floatedit.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/hdf5widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/hdf5widget.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/icons.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/imageStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/imageStack.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/imageview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/imageview.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/plotLimits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/plotLimits.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/plotProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/plotProfile.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/plotStats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/plotStats.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/plotWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/plotWidget.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/scatterMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/scatterMask.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/scatterview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/scatterview.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/stackView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/stackView.png -------------------------------------------------------------------------------- /doc/source/sample_code/img/syncaxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/img/syncaxis.png -------------------------------------------------------------------------------- /doc/source/sample_code/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/sample_code/index.rst -------------------------------------------------------------------------------- /doc/source/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/troubleshooting.rst -------------------------------------------------------------------------------- /doc/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/tutorials.rst -------------------------------------------------------------------------------- /doc/source/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/doc/source/user_guide.rst -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/collapsibleWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/collapsibleWidgets.py -------------------------------------------------------------------------------- /examples/colormapDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/colormapDialog.py -------------------------------------------------------------------------------- /examples/compareBackends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/compareBackends.py -------------------------------------------------------------------------------- /examples/compareImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/compareImages.py -------------------------------------------------------------------------------- /examples/customDataView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/customDataView.py -------------------------------------------------------------------------------- /examples/customHdf5TreeModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/customHdf5TreeModel.py -------------------------------------------------------------------------------- /examples/customSilxView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/customSilxView.py -------------------------------------------------------------------------------- /examples/dropZones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/dropZones.py -------------------------------------------------------------------------------- /examples/exampleBaseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/exampleBaseline.py -------------------------------------------------------------------------------- /examples/fft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/fft.png -------------------------------------------------------------------------------- /examples/fftPlotAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/fftPlotAction.py -------------------------------------------------------------------------------- /examples/fileDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/fileDialog.py -------------------------------------------------------------------------------- /examples/findContours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/findContours.py -------------------------------------------------------------------------------- /examples/floatedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/floatedit.py -------------------------------------------------------------------------------- /examples/hdf5fromschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/hdf5fromschema.py -------------------------------------------------------------------------------- /examples/hdf5fromschema_tiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/hdf5fromschema_tiff.py -------------------------------------------------------------------------------- /examples/hdf5fromschema_vds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/hdf5fromschema_vds.py -------------------------------------------------------------------------------- /examples/hdf5widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/hdf5widget.py -------------------------------------------------------------------------------- /examples/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/icons.py -------------------------------------------------------------------------------- /examples/imageStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/imageStack.py -------------------------------------------------------------------------------- /examples/imageview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/imageview.py -------------------------------------------------------------------------------- /examples/overlayWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/overlayWidgets.py -------------------------------------------------------------------------------- /examples/periodicTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/periodicTable.py -------------------------------------------------------------------------------- /examples/plot3dContextMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plot3dContextMenu.py -------------------------------------------------------------------------------- /examples/plot3dSceneWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plot3dSceneWindow.py -------------------------------------------------------------------------------- /examples/plot3dUpdateScatterFromThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plot3dUpdateScatterFromThread.py -------------------------------------------------------------------------------- /examples/plotClearAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotClearAction.py -------------------------------------------------------------------------------- /examples/plotContextMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotContextMenu.py -------------------------------------------------------------------------------- /examples/plotCurveLegendWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotCurveLegendWidget.py -------------------------------------------------------------------------------- /examples/plotInteractiveImageROI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotInteractiveImageROI.py -------------------------------------------------------------------------------- /examples/plotItemsSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotItemsSelector.py -------------------------------------------------------------------------------- /examples/plotLimits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotLimits.py -------------------------------------------------------------------------------- /examples/plotProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotProfile.py -------------------------------------------------------------------------------- /examples/plotROIStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotROIStats.py -------------------------------------------------------------------------------- /examples/plotStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotStats.py -------------------------------------------------------------------------------- /examples/plotUpdateCurveFromThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotUpdateCurveFromThread.py -------------------------------------------------------------------------------- /examples/plotUpdateImageFromGevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotUpdateImageFromGevent.py -------------------------------------------------------------------------------- /examples/plotUpdateImageFromThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotUpdateImageFromThread.py -------------------------------------------------------------------------------- /examples/plotWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/plotWidget.py -------------------------------------------------------------------------------- /examples/printPreview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/printPreview.py -------------------------------------------------------------------------------- /examples/scatterMask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/scatterMask.py -------------------------------------------------------------------------------- /examples/scatterview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/scatterview.py -------------------------------------------------------------------------------- /examples/shiftPlotAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/shiftPlotAction.py -------------------------------------------------------------------------------- /examples/simplewidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/simplewidget.py -------------------------------------------------------------------------------- /examples/stackView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/stackView.py -------------------------------------------------------------------------------- /examples/stackedprogressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/stackedprogressbar.py -------------------------------------------------------------------------------- /examples/syncPlotLocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/syncPlotLocation.py -------------------------------------------------------------------------------- /examples/syncaxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/syncaxis.py -------------------------------------------------------------------------------- /examples/viewer3DVolume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/viewer3DVolume.py -------------------------------------------------------------------------------- /examples/writetoh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/examples/writetoh5.py -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/meson.build -------------------------------------------------------------------------------- /meson.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/meson.options -------------------------------------------------------------------------------- /package/debian12/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian12/changelog -------------------------------------------------------------------------------- /package/debian12/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian12/control -------------------------------------------------------------------------------- /package/debian12/gbp.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | debian-branch = master -------------------------------------------------------------------------------- /package/debian12/patches/series: -------------------------------------------------------------------------------- 1 | 0002-use-the-system-mathjax-privacy-breach.patch 2 | -------------------------------------------------------------------------------- /package/debian12/py3dist-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian12/py3dist-overrides -------------------------------------------------------------------------------- /package/debian12/python-silx-doc.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian12/python-silx-doc.doc-base -------------------------------------------------------------------------------- /package/debian12/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian12/rules -------------------------------------------------------------------------------- /package/debian12/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /package/debian12/source/options: -------------------------------------------------------------------------------- 1 | extend-diff-ignore="^[^/]+\.egg-info/" -------------------------------------------------------------------------------- /package/debian12/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian12/tests/control -------------------------------------------------------------------------------- /package/debian12/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian12/watch -------------------------------------------------------------------------------- /package/debian13/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian13/changelog -------------------------------------------------------------------------------- /package/debian13/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian13/control -------------------------------------------------------------------------------- /package/debian13/gbp.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | debian-branch = master -------------------------------------------------------------------------------- /package/debian13/patches/series: -------------------------------------------------------------------------------- 1 | 0002-use-the-system-mathjax-privacy-breach.patch 2 | -------------------------------------------------------------------------------- /package/debian13/py3dist-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian13/py3dist-overrides -------------------------------------------------------------------------------- /package/debian13/python-silx-doc.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian13/python-silx-doc.doc-base -------------------------------------------------------------------------------- /package/debian13/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian13/rules -------------------------------------------------------------------------------- /package/debian13/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /package/debian13/source/options: -------------------------------------------------------------------------------- 1 | extend-diff-ignore="^[^/]+\.egg-info/" -------------------------------------------------------------------------------- /package/debian13/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian13/tests/control -------------------------------------------------------------------------------- /package/debian13/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/debian13/watch -------------------------------------------------------------------------------- /package/desktop/org.silx.SilxView.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/desktop/org.silx.SilxView.desktop -------------------------------------------------------------------------------- /package/desktop/silx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/desktop/silx.png -------------------------------------------------------------------------------- /package/desktop/silx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/desktop/silx.svg -------------------------------------------------------------------------------- /package/desktop/silx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/desktop/silx.xml -------------------------------------------------------------------------------- /package/pyinstaller/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/DS_Store -------------------------------------------------------------------------------- /package/pyinstaller/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/README.rst -------------------------------------------------------------------------------- /package/pyinstaller/background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/background.pdf -------------------------------------------------------------------------------- /package/pyinstaller/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/bootstrap.py -------------------------------------------------------------------------------- /package/pyinstaller/codesign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/codesign.sh -------------------------------------------------------------------------------- /package/pyinstaller/create-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/create-dmg.sh -------------------------------------------------------------------------------- /package/pyinstaller/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/entitlements.plist -------------------------------------------------------------------------------- /package/pyinstaller/notarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/notarize.sh -------------------------------------------------------------------------------- /package/pyinstaller/pyinstaller.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/pyinstaller.spec -------------------------------------------------------------------------------- /package/pyinstaller/silx-view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/silx-view.sh -------------------------------------------------------------------------------- /package/pyinstaller/silx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/silx.icns -------------------------------------------------------------------------------- /package/pyinstaller/silx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/package/pyinstaller/silx.ico -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qtdesigner_plugins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/qtdesigner_plugins/README.rst -------------------------------------------------------------------------------- /qtdesigner_plugins/plot1dplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/qtdesigner_plugins/plot1dplugin.py -------------------------------------------------------------------------------- /qtdesigner_plugins/plot2dplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/qtdesigner_plugins/plot2dplugin.py -------------------------------------------------------------------------------- /qtdesigner_plugins/plotwidgetplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/qtdesigner_plugins/plotwidgetplugin.py -------------------------------------------------------------------------------- /qtdesigner_plugins/plotwindowplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/qtdesigner_plugins/plotwindowplugin.py -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/run_tests.py -------------------------------------------------------------------------------- /src/silx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/__init__.py -------------------------------------------------------------------------------- /src/silx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/__main__.py -------------------------------------------------------------------------------- /src/silx/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/_config.py -------------------------------------------------------------------------------- /src/silx/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/_utils.py -------------------------------------------------------------------------------- /src/silx/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/_version.py -------------------------------------------------------------------------------- /src/silx/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/__init__.py -------------------------------------------------------------------------------- /src/silx/app/compare/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/compare/__init__.py -------------------------------------------------------------------------------- /src/silx/app/compare/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/compare/main.py -------------------------------------------------------------------------------- /src/silx/app/compare/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/compare/test/__init__.py -------------------------------------------------------------------------------- /src/silx/app/compare/test/test_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/compare/test/test_compare.py -------------------------------------------------------------------------------- /src/silx/app/compare/test/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/compare/test/test_launcher.py -------------------------------------------------------------------------------- /src/silx/app/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/convert.py -------------------------------------------------------------------------------- /src/silx/app/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/test/__init__.py -------------------------------------------------------------------------------- /src/silx/app/test/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/test/test_convert.py -------------------------------------------------------------------------------- /src/silx/app/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/test_.py -------------------------------------------------------------------------------- /src/silx/app/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/utils/__init__.py -------------------------------------------------------------------------------- /src/silx/app/utils/parseutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/utils/parseutils.py -------------------------------------------------------------------------------- /src/silx/app/utils/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/utils/test/__init__.py -------------------------------------------------------------------------------- /src/silx/app/utils/test/test_parseutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/utils/test/test_parseutils.py -------------------------------------------------------------------------------- /src/silx/app/view/About.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/About.py -------------------------------------------------------------------------------- /src/silx/app/view/ApplicationContext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/ApplicationContext.py -------------------------------------------------------------------------------- /src/silx/app/view/CustomNxdataWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/CustomNxdataWidget.py -------------------------------------------------------------------------------- /src/silx/app/view/DataPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/DataPanel.py -------------------------------------------------------------------------------- /src/silx/app/view/Viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/Viewer.py -------------------------------------------------------------------------------- /src/silx/app/view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/__init__.py -------------------------------------------------------------------------------- /src/silx/app/view/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/main.py -------------------------------------------------------------------------------- /src/silx/app/view/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/test/__init__.py -------------------------------------------------------------------------------- /src/silx/app/view/test/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/test/test_launcher.py -------------------------------------------------------------------------------- /src/silx/app/view/test/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/app/view/test/test_view.py -------------------------------------------------------------------------------- /src/silx/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/conftest.py -------------------------------------------------------------------------------- /src/silx/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/Context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/Context.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/OpenGLWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/OpenGLWidget.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/Program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/Program.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/Texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/Texture.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/VertexBuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/VertexBuffer.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/font.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/gl.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/test/test_gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/test/test_gl.py -------------------------------------------------------------------------------- /src/silx/gui/_glutils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/_glutils/utils.py -------------------------------------------------------------------------------- /src/silx/gui/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/colors.py -------------------------------------------------------------------------------- /src/silx/gui/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/conftest.py -------------------------------------------------------------------------------- /src/silx/gui/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/console.py -------------------------------------------------------------------------------- /src/silx/gui/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/constants.py -------------------------------------------------------------------------------- /src/silx/gui/data/ArrayTableModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/ArrayTableModel.py -------------------------------------------------------------------------------- /src/silx/gui/data/ArrayTableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/ArrayTableWidget.py -------------------------------------------------------------------------------- /src/silx/gui/data/DataViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/DataViewer.py -------------------------------------------------------------------------------- /src/silx/gui/data/DataViewerFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/DataViewerFrame.py -------------------------------------------------------------------------------- /src/silx/gui/data/DataViewerSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/DataViewerSelector.py -------------------------------------------------------------------------------- /src/silx/gui/data/DataViews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/DataViews.py -------------------------------------------------------------------------------- /src/silx/gui/data/Hdf5TableView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/Hdf5TableView.py -------------------------------------------------------------------------------- /src/silx/gui/data/HexaTableView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/HexaTableView.py -------------------------------------------------------------------------------- /src/silx/gui/data/NXdataWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/NXdataWidgets.py -------------------------------------------------------------------------------- /src/silx/gui/data/NumpyAxesSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/NumpyAxesSelector.py -------------------------------------------------------------------------------- /src/silx/gui/data/RecordTableView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/RecordTableView.py -------------------------------------------------------------------------------- /src/silx/gui/data/TextFormatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/TextFormatter.py -------------------------------------------------------------------------------- /src/silx/gui/data/_RecordPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/_RecordPlot.py -------------------------------------------------------------------------------- /src/silx/gui/data/_SignalSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/_SignalSelector.py -------------------------------------------------------------------------------- /src/silx/gui/data/_VolumeWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/_VolumeWindow.py -------------------------------------------------------------------------------- /src/silx/gui/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/data/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/data/test/test_arraywidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/test/test_arraywidget.py -------------------------------------------------------------------------------- /src/silx/gui/data/test/test_dataviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/data/test/test_dataviewer.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/ColormapDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/ColormapDialog.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/DataFileDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/DataFileDialog.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/DatasetDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/DatasetDialog.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/FileTypeComboBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/FileTypeComboBox.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/GroupDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/GroupDialog.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/ImageFileDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/ImageFileDialog.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/SafeFileSystemModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/SafeFileSystemModel.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/dialog/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/dialog/utils.py -------------------------------------------------------------------------------- /src/silx/gui/fit/BackgroundWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/BackgroundWidget.py -------------------------------------------------------------------------------- /src/silx/gui/fit/FitConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/FitConfig.py -------------------------------------------------------------------------------- /src/silx/gui/fit/FitWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/FitWidget.py -------------------------------------------------------------------------------- /src/silx/gui/fit/FitWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/FitWidgets.py -------------------------------------------------------------------------------- /src/silx/gui/fit/Parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/Parameters.py -------------------------------------------------------------------------------- /src/silx/gui/fit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/fit/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/fit/test/test_fitconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/test/test_fitconfig.py -------------------------------------------------------------------------------- /src/silx/gui/fit/test/test_fitwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/fit/test/test_fitwidget.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/Hdf5Formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/Hdf5Formatter.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/Hdf5HeaderView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/Hdf5HeaderView.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/Hdf5Item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/Hdf5Item.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/Hdf5LoadingItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/Hdf5LoadingItem.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/Hdf5Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/Hdf5Node.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/Hdf5TreeModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/Hdf5TreeModel.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/Hdf5TreeView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/Hdf5TreeView.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/_utils.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/hdf5/test/test_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/hdf5/test/test_hdf5.py -------------------------------------------------------------------------------- /src/silx/gui/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/icons.py -------------------------------------------------------------------------------- /src/silx/gui/plot/AlphaSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/AlphaSlider.py -------------------------------------------------------------------------------- /src/silx/gui/plot/ColorBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/ColorBar.py -------------------------------------------------------------------------------- /src/silx/gui/plot/CompareImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/CompareImages.py -------------------------------------------------------------------------------- /src/silx/gui/plot/ComplexImageView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/ComplexImageView.py -------------------------------------------------------------------------------- /src/silx/gui/plot/CurvesROIWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/CurvesROIWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot/ImageStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/ImageStack.py -------------------------------------------------------------------------------- /src/silx/gui/plot/ImageView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/ImageView.py -------------------------------------------------------------------------------- /src/silx/gui/plot/Interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/Interaction.py -------------------------------------------------------------------------------- /src/silx/gui/plot/ItemsSelectionDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/ItemsSelectionDialog.py -------------------------------------------------------------------------------- /src/silx/gui/plot/LegendSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/LegendSelector.py -------------------------------------------------------------------------------- /src/silx/gui/plot/LimitsHistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/LimitsHistory.py -------------------------------------------------------------------------------- /src/silx/gui/plot/MaskToolsWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/MaskToolsWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot/PlotEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/PlotEvents.py -------------------------------------------------------------------------------- /src/silx/gui/plot/PlotInteraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/PlotInteraction.py -------------------------------------------------------------------------------- /src/silx/gui/plot/PlotToolButtons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/PlotToolButtons.py -------------------------------------------------------------------------------- /src/silx/gui/plot/PlotWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/PlotWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot/PlotWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/PlotWindow.py -------------------------------------------------------------------------------- /src/silx/gui/plot/Profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/Profile.py -------------------------------------------------------------------------------- /src/silx/gui/plot/ROIStatsWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/ROIStatsWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot/ScatterView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/ScatterView.py -------------------------------------------------------------------------------- /src/silx/gui/plot/StackView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/StackView.py -------------------------------------------------------------------------------- /src/silx/gui/plot/StatsWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/StatsWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot/_BaseMaskToolsWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/_BaseMaskToolsWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/_utils/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/_utils/panzoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/_utils/panzoom.py -------------------------------------------------------------------------------- /src/silx/gui/plot/_utils/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/_utils/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/_utils/ticklayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/_utils/ticklayout.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/PlotAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/PlotAction.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/control.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/fit.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/histogram.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/image.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/io.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/medfilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/medfilt.py -------------------------------------------------------------------------------- /src/silx/gui/plot/actions/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/actions/mode.py -------------------------------------------------------------------------------- /src/silx/gui/plot/backends/BackendBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/backends/BackendBase.py -------------------------------------------------------------------------------- /src/silx/gui/plot/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/backends/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/_arc_roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/_arc_roi.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/_band_roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/_band_roi.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/_cache.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/_pick.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/_roi_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/_roi_base.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/axis.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/complex.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/core.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/curve.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/histogram.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/image.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/marker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/marker.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/roi.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/scatter.py -------------------------------------------------------------------------------- /src/silx/gui/plot/items/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/items/shape.py -------------------------------------------------------------------------------- /src/silx/gui/plot/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/stats/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/stats/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/stats/stats.py -------------------------------------------------------------------------------- /src/silx/gui/plot/stats/statshandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/stats/statshandler.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/conftest.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_alphaslider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_alphaslider.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_axis.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_cache.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_colorbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_colorbar.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_imagestack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_imagestack.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_imageview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_imageview.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_interaction.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_item.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_plotactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_plotactions.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_plotwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_plotwidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_plotwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_plotwindow.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_saveaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_saveaction.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_scatterview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_scatterview.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_stackview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_stackview.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_stats.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/test_utilsaxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/test_utilsaxis.py -------------------------------------------------------------------------------- /src/silx/gui/plot/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/test/utils.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/LimitsToolBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/LimitsToolBar.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/PlotToolButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/PlotToolButton.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/PositionInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/PositionInfo.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/RadarView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/RadarView.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/RulerToolButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/RulerToolButton.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/compare/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/compare/core.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/compare/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/compare/profile.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/compare/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/compare/toolbar.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/menus.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/profile/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/profile/core.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/profile/editors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/profile/editors.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/profile/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/profile/manager.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/profile/rois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/profile/rois.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/profile/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/profile/toolbar.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/roi.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/test/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/test/test_tools.py -------------------------------------------------------------------------------- /src/silx/gui/plot/tools/toolbars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/tools/toolbars.py -------------------------------------------------------------------------------- /src/silx/gui/plot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/utils/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot/utils/axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/utils/axis.py -------------------------------------------------------------------------------- /src/silx/gui/plot/utils/intersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot/utils/intersections.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/ParamTreeView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/ParamTreeView.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/Plot3DWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/Plot3DWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/Plot3DWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/Plot3DWindow.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/SFViewParamTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/SFViewParamTree.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/ScalarFieldView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/ScalarFieldView.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/SceneWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/SceneWidget.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/SceneWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/SceneWindow.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/_model/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/_model/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/_model/core.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/_model/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/_model/items.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/_model/model.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/actions/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/actions/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/actions/io.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/actions/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/actions/mode.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/actions/viewpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/actions/viewpoint.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/conftest.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/_pick.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/clipplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/clipplane.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/core.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/image.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/mesh.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/mixins.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/scatter.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/items/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/items/volume.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/axes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/axes.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/camera.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/core.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/cutplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/cutplane.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/event.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/function.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/interaction.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/primitives.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/text.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/transform.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/utils.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/viewport.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/scene/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/scene/window.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/test/test_gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/test/test_gl.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/tools/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/tools/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/tools/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/tools/toolbars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/tools/toolbars.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/utils/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/plot3d/utils/mng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/plot3d/utils/mng.py -------------------------------------------------------------------------------- /src/silx/gui/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/printer.py -------------------------------------------------------------------------------- /src/silx/gui/qt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/qt/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/qt/_pyqt6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/qt/_pyqt6.py -------------------------------------------------------------------------------- /src/silx/gui/qt/_pyside_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/qt/_pyside_dynamic.py -------------------------------------------------------------------------------- /src/silx/gui/qt/_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/qt/_qt.py -------------------------------------------------------------------------------- /src/silx/gui/qt/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/qt/_utils.py -------------------------------------------------------------------------------- /src/silx/gui/qt/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/qt/inspect.py -------------------------------------------------------------------------------- /src/silx/gui/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/test/test_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/test/test_colors.py -------------------------------------------------------------------------------- /src/silx/gui/test/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/test/test_console.py -------------------------------------------------------------------------------- /src/silx/gui/test/test_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/test/test_icons.py -------------------------------------------------------------------------------- /src/silx/gui/test/test_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/test/test_qt.py -------------------------------------------------------------------------------- /src/silx/gui/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/utils/concurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/concurrent.py -------------------------------------------------------------------------------- /src/silx/gui/utils/glutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/glutils/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/image.py -------------------------------------------------------------------------------- /src/silx/gui/utils/matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/matplotlib.py -------------------------------------------------------------------------------- /src/silx/gui/utils/projecturl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/projecturl.py -------------------------------------------------------------------------------- /src/silx/gui/utils/qtutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/qtutils.py -------------------------------------------------------------------------------- /src/silx/gui/utils/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/signal.py -------------------------------------------------------------------------------- /src/silx/gui/utils/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/test/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/utils/test/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/test/test_async.py -------------------------------------------------------------------------------- /src/silx/gui/utils/test/test_glutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/test/test_glutils.py -------------------------------------------------------------------------------- /src/silx/gui/utils/test/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/test/test_image.py -------------------------------------------------------------------------------- /src/silx/gui/utils/test/test_qtutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/test/test_qtutils.py -------------------------------------------------------------------------------- /src/silx/gui/utils/test/test_testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/test/test_testutils.py -------------------------------------------------------------------------------- /src/silx/gui/utils/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/utils/testutils.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/ButtonOverlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/ButtonOverlay.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/CollapsibleWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/CollapsibleWidget.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/ElidedLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/ElidedLabel.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/FilenameCompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/FilenameCompleter.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/FloatEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/FloatEdit.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/FlowLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/FlowLayout.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/FormGridLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/FormGridLayout.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/FrameBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/FrameBrowser.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/LabelOverlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/LabelOverlay.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/LegendIconWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/LegendIconWidget.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/MedianFilterDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/MedianFilterDialog.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/MultiModeAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/MultiModeAction.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/OverlayMixIn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/OverlayMixIn.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/PeriodicTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/PeriodicTable.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/PrintPreview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/PrintPreview.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/RangeSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/RangeSlider.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/StackedProgressBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/StackedProgressBar.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/TableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/TableWidget.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/UrlList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/UrlList.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/UrlSelectionTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/UrlSelectionTable.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/WaitingOverlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/WaitingOverlay.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/WaitingPushButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/WaitingPushButton.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/__init__.py -------------------------------------------------------------------------------- /src/silx/gui/widgets/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/gui/widgets/test/__init__.py -------------------------------------------------------------------------------- /src/silx/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/__init__.py -------------------------------------------------------------------------------- /src/silx/image/_boundingbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/_boundingbox.py -------------------------------------------------------------------------------- /src/silx/image/backprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/backprojection.py -------------------------------------------------------------------------------- /src/silx/image/bilinear.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/bilinear.pyx -------------------------------------------------------------------------------- /src/silx/image/marchingsquares/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/marchingsquares/__init__.py -------------------------------------------------------------------------------- /src/silx/image/marchingsquares/_skimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/marchingsquares/_skimage.py -------------------------------------------------------------------------------- /src/silx/image/marchingsquares/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/marchingsquares/meson.build -------------------------------------------------------------------------------- /src/silx/image/medianfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/medianfilter.py -------------------------------------------------------------------------------- /src/silx/image/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/meson.build -------------------------------------------------------------------------------- /src/silx/image/phantomgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/phantomgenerator.py -------------------------------------------------------------------------------- /src/silx/image/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/projection.py -------------------------------------------------------------------------------- /src/silx/image/reconstruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/reconstruction.py -------------------------------------------------------------------------------- /src/silx/image/shapes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/shapes.pyx -------------------------------------------------------------------------------- /src/silx/image/sift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/sift.py -------------------------------------------------------------------------------- /src/silx/image/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/test/__init__.py -------------------------------------------------------------------------------- /src/silx/image/test/test_bb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/test/test_bb.py -------------------------------------------------------------------------------- /src/silx/image/test/test_bilinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/test/test_bilinear.py -------------------------------------------------------------------------------- /src/silx/image/test/test_medianfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/test/test_medianfilter.py -------------------------------------------------------------------------------- /src/silx/image/test/test_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/test/test_shapes.py -------------------------------------------------------------------------------- /src/silx/image/test/test_tomography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/test/test_tomography.py -------------------------------------------------------------------------------- /src/silx/image/tomography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/tomography.py -------------------------------------------------------------------------------- /src/silx/image/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/image/utils.py -------------------------------------------------------------------------------- /src/silx/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/__init__.py -------------------------------------------------------------------------------- /src/silx/io/_sliceh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/_sliceh5.py -------------------------------------------------------------------------------- /src/silx/io/commonh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/commonh5.py -------------------------------------------------------------------------------- /src/silx/io/configdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/configdict.py -------------------------------------------------------------------------------- /src/silx/io/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/convert.py -------------------------------------------------------------------------------- /src/silx/io/dictdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdump.py -------------------------------------------------------------------------------- /src/silx/io/dictdumplinks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdumplinks/__init__.py -------------------------------------------------------------------------------- /src/silx/io/dictdumplinks/_base_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdumplinks/_base_types.py -------------------------------------------------------------------------------- /src/silx/io/dictdumplinks/_from_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdumplinks/_from_hdf5.py -------------------------------------------------------------------------------- /src/silx/io/dictdumplinks/_link_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdumplinks/_link_types.py -------------------------------------------------------------------------------- /src/silx/io/dictdumplinks/_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdumplinks/_schemas.py -------------------------------------------------------------------------------- /src/silx/io/dictdumplinks/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdumplinks/_utils.py -------------------------------------------------------------------------------- /src/silx/io/dictdumplinks/_vds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/dictdumplinks/_vds.py -------------------------------------------------------------------------------- /src/silx/io/fabioh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/fabioh5.py -------------------------------------------------------------------------------- /src/silx/io/fioh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/fioh5.py -------------------------------------------------------------------------------- /src/silx/io/h5link_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/h5link_utils.py -------------------------------------------------------------------------------- /src/silx/io/h5py_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/h5py_utils.py -------------------------------------------------------------------------------- /src/silx/io/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/meson.build -------------------------------------------------------------------------------- /src/silx/io/nxdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/nxdata/__init__.py -------------------------------------------------------------------------------- /src/silx/io/nxdata/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/nxdata/_utils.py -------------------------------------------------------------------------------- /src/silx/io/nxdata/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/nxdata/parse.py -------------------------------------------------------------------------------- /src/silx/io/nxdata/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/nxdata/write.py -------------------------------------------------------------------------------- /src/silx/io/octaveh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/octaveh5.py -------------------------------------------------------------------------------- /src/silx/io/rawh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/rawh5.py -------------------------------------------------------------------------------- /src/silx/io/specfile/include/Lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/include/Lists.h -------------------------------------------------------------------------------- /src/silx/io/specfile/include/SpecFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/include/SpecFile.h -------------------------------------------------------------------------------- /src/silx/io/specfile/include/SpecFileP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/include/SpecFileP.h -------------------------------------------------------------------------------- /src/silx/io/specfile/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/meson.build -------------------------------------------------------------------------------- /src/silx/io/specfile/specfile.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/specfile.pyx -------------------------------------------------------------------------------- /src/silx/io/specfile/specfile_wrapper.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/specfile_wrapper.pxd -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sfdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sfdata.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sfheader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sfheader.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sfindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sfindex.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sfinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sfinit.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sflabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sflabel.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sflists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sflists.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sfmca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sfmca.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sftools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sftools.c -------------------------------------------------------------------------------- /src/silx/io/specfile/src/sfwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfile/src/sfwrite.c -------------------------------------------------------------------------------- /src/silx/io/specfilewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/specfilewrapper.py -------------------------------------------------------------------------------- /src/silx/io/spech5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/spech5.py -------------------------------------------------------------------------------- /src/silx/io/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/__init__.py -------------------------------------------------------------------------------- /src/silx/io/test/test_commonh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_commonh5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_dictdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_dictdump.py -------------------------------------------------------------------------------- /src/silx/io/test/test_dictdumplinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_dictdumplinks.py -------------------------------------------------------------------------------- /src/silx/io/test/test_fabioh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_fabioh5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_fioh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_fioh5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_h5link_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_h5link_utils.py -------------------------------------------------------------------------------- /src/silx/io/test/test_h5py_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_h5py_utils.py -------------------------------------------------------------------------------- /src/silx/io/test/test_nxdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_nxdata.py -------------------------------------------------------------------------------- /src/silx/io/test/test_octaveh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_octaveh5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_rawh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_rawh5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_sliceh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_sliceh5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_specfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_specfile.py -------------------------------------------------------------------------------- /src/silx/io/test/test_specfilewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_specfilewrapper.py -------------------------------------------------------------------------------- /src/silx/io/test/test_spech5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_spech5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_spectoh5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_spectoh5.py -------------------------------------------------------------------------------- /src/silx/io/test/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_url.py -------------------------------------------------------------------------------- /src/silx/io/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_utils.py -------------------------------------------------------------------------------- /src/silx/io/test/test_write_to_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/test/test_write_to_h5.py -------------------------------------------------------------------------------- /src/silx/io/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/url.py -------------------------------------------------------------------------------- /src/silx/io/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/io/utils.py -------------------------------------------------------------------------------- /src/silx/math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/__init__.py -------------------------------------------------------------------------------- /src/silx/math/_colormap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/_colormap.pyx -------------------------------------------------------------------------------- /src/silx/math/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/calibration.py -------------------------------------------------------------------------------- /src/silx/math/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/colormap.py -------------------------------------------------------------------------------- /src/silx/math/combo.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/combo.pyi -------------------------------------------------------------------------------- /src/silx/math/combo.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/combo.pyx -------------------------------------------------------------------------------- /src/silx/math/fft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/__init__.py -------------------------------------------------------------------------------- /src/silx/math/fft/basefft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/basefft.py -------------------------------------------------------------------------------- /src/silx/math/fft/clfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/clfft.py -------------------------------------------------------------------------------- /src/silx/math/fft/cufft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/cufft.py -------------------------------------------------------------------------------- /src/silx/math/fft/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/fft.py -------------------------------------------------------------------------------- /src/silx/math/fft/fftw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/fftw.py -------------------------------------------------------------------------------- /src/silx/math/fft/npfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/npfft.py -------------------------------------------------------------------------------- /src/silx/math/fft/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/test/__init__.py -------------------------------------------------------------------------------- /src/silx/math/fft/test/test_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fft/test/test_fft.py -------------------------------------------------------------------------------- /src/silx/math/fit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/__init__.py -------------------------------------------------------------------------------- /src/silx/math/fit/bgtheories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/bgtheories.py -------------------------------------------------------------------------------- /src/silx/math/fit/filters/filters.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/filters/filters.pyx -------------------------------------------------------------------------------- /src/silx/math/fit/filters/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/filters/meson.build -------------------------------------------------------------------------------- /src/silx/math/fit/filters/src/smoothnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/filters/src/smoothnd.c -------------------------------------------------------------------------------- /src/silx/math/fit/filters/src/snip1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/filters/src/snip1d.c -------------------------------------------------------------------------------- /src/silx/math/fit/filters/src/snip2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/filters/src/snip2d.c -------------------------------------------------------------------------------- /src/silx/math/fit/filters/src/snip3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/filters/src/snip3d.c -------------------------------------------------------------------------------- /src/silx/math/fit/filters/src/strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/filters/src/strip.c -------------------------------------------------------------------------------- /src/silx/math/fit/fitmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/fitmanager.py -------------------------------------------------------------------------------- /src/silx/math/fit/fittheories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/fittheories.py -------------------------------------------------------------------------------- /src/silx/math/fit/fittheory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/fittheory.py -------------------------------------------------------------------------------- /src/silx/math/fit/functions/functions.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/functions/functions.pyx -------------------------------------------------------------------------------- /src/silx/math/fit/functions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/functions/meson.build -------------------------------------------------------------------------------- /src/silx/math/fit/functions/src/funs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/functions/src/funs.c -------------------------------------------------------------------------------- /src/silx/math/fit/leastsq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/leastsq.py -------------------------------------------------------------------------------- /src/silx/math/fit/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/meson.build -------------------------------------------------------------------------------- /src/silx/math/fit/peaks/include/peaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/peaks/include/peaks.h -------------------------------------------------------------------------------- /src/silx/math/fit/peaks/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/peaks/meson.build -------------------------------------------------------------------------------- /src/silx/math/fit/peaks/peaks.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/peaks/peaks.pyx -------------------------------------------------------------------------------- /src/silx/math/fit/peaks/peaks_wrapper.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/peaks/peaks_wrapper.pxd -------------------------------------------------------------------------------- /src/silx/math/fit/peaks/src/peaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/peaks/src/peaks.c -------------------------------------------------------------------------------- /src/silx/math/fit/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/test/__init__.py -------------------------------------------------------------------------------- /src/silx/math/fit/test/test_bgtheories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/test/test_bgtheories.py -------------------------------------------------------------------------------- /src/silx/math/fit/test/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/test/test_filters.py -------------------------------------------------------------------------------- /src/silx/math/fit/test/test_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/test/test_fit.py -------------------------------------------------------------------------------- /src/silx/math/fit/test/test_fitmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/test/test_fitmanager.py -------------------------------------------------------------------------------- /src/silx/math/fit/test/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/test/test_functions.py -------------------------------------------------------------------------------- /src/silx/math/fit/test/test_peaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/fit/test/test_peaks.py -------------------------------------------------------------------------------- /src/silx/math/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/histogram.py -------------------------------------------------------------------------------- /src/silx/math/histogramnd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/histogramnd/README -------------------------------------------------------------------------------- /src/silx/math/histogramnd/chistogramnd.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/histogramnd/chistogramnd.pyx -------------------------------------------------------------------------------- /src/silx/math/histogramnd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/histogramnd/meson.build -------------------------------------------------------------------------------- /src/silx/math/include/math_compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/include/math_compatibility.h -------------------------------------------------------------------------------- /src/silx/math/interpolate.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/interpolate.pyx -------------------------------------------------------------------------------- /src/silx/math/marchingcubes/mc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/marchingcubes/mc.hpp -------------------------------------------------------------------------------- /src/silx/math/marchingcubes/mc.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/marchingcubes/mc.pxd -------------------------------------------------------------------------------- /src/silx/math/marchingcubes/mc_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/marchingcubes/mc_lut.cpp -------------------------------------------------------------------------------- /src/silx/math/marchingcubes/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/marchingcubes/meson.build -------------------------------------------------------------------------------- /src/silx/math/medianfilter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/medianfilter/__init__.py -------------------------------------------------------------------------------- /src/silx/math/medianfilter/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/medianfilter/meson.build -------------------------------------------------------------------------------- /src/silx/math/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/meson.build -------------------------------------------------------------------------------- /src/silx/math/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/__init__.py -------------------------------------------------------------------------------- /src/silx/math/test/benchmark_combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/benchmark_combo.py -------------------------------------------------------------------------------- /src/silx/math/test/histo_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/histo_benchmarks.py -------------------------------------------------------------------------------- /src/silx/math/test/test_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/test_calibration.py -------------------------------------------------------------------------------- /src/silx/math/test/test_colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/test_colormap.py -------------------------------------------------------------------------------- /src/silx/math/test/test_combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/test_combo.py -------------------------------------------------------------------------------- /src/silx/math/test/test_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/test_interpolate.py -------------------------------------------------------------------------------- /src/silx/math/test/test_marchingcubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/math/test/test_marchingcubes.py -------------------------------------------------------------------------------- /src/silx/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/meson.build -------------------------------------------------------------------------------- /src/silx/opencl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/__init__.py -------------------------------------------------------------------------------- /src/silx/opencl/atomic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/atomic.py -------------------------------------------------------------------------------- /src/silx/opencl/backprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/backprojection.py -------------------------------------------------------------------------------- /src/silx/opencl/codec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/silx/opencl/codec/bitshuffle_lz4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/codec/bitshuffle_lz4.py -------------------------------------------------------------------------------- /src/silx/opencl/codec/byte_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/codec/byte_offset.py -------------------------------------------------------------------------------- /src/silx/opencl/codec/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/codec/test/__init__.py -------------------------------------------------------------------------------- /src/silx/opencl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/common.py -------------------------------------------------------------------------------- /src/silx/opencl/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/conftest.py -------------------------------------------------------------------------------- /src/silx/opencl/convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/convolution.py -------------------------------------------------------------------------------- /src/silx/opencl/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/image.py -------------------------------------------------------------------------------- /src/silx/opencl/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/linalg.py -------------------------------------------------------------------------------- /src/silx/opencl/medfilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/medfilt.py -------------------------------------------------------------------------------- /src/silx/opencl/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/processing.py -------------------------------------------------------------------------------- /src/silx/opencl/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/projection.py -------------------------------------------------------------------------------- /src/silx/opencl/reconstruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/reconstruction.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/__init__.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/alignment.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/match.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/param.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/plan.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/sift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/sift.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/test/__init__.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/test/test_algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/test/test_algebra.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/test/test_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/test/test_align.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/test/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/test/test_image.py -------------------------------------------------------------------------------- /src/silx/opencl/sift/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sift/utils.py -------------------------------------------------------------------------------- /src/silx/opencl/sinofilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sinofilter.py -------------------------------------------------------------------------------- /src/silx/opencl/sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/sparse.py -------------------------------------------------------------------------------- /src/silx/opencl/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/statistics.py -------------------------------------------------------------------------------- /src/silx/opencl/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/__init__.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_addition.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_doubleword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_doubleword.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_image.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_kahan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_kahan.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_linalg.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_medfilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_medfilt.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_processing.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_projection.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_sparse.py -------------------------------------------------------------------------------- /src/silx/opencl/test/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/test/test_stats.py -------------------------------------------------------------------------------- /src/silx/opencl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/opencl/utils.py -------------------------------------------------------------------------------- /src/silx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/silx/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/__init__.py -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/add.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/add.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/axis.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/axis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/axis.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/camera.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/camera.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/close.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/close.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/crop.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/crop.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/cube.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/cube.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/eye.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/eye.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/first.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/first.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/folder.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/folder.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/image.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/image.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/last.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/last.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/last.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/next.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/next.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/normal.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/normal.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/pan.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/pan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/pan.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/remove.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/remove.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/rm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/rm.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/rm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/rm.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/rudder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/rudder.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/rudder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/rudder.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/ruler.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/ruler.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/silx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/silx.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/silx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/silx.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/spec.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/spec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/spec.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/zoom.png -------------------------------------------------------------------------------- /src/silx/resources/gui/icons/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/icons/zoom.svg -------------------------------------------------------------------------------- /src/silx/resources/gui/logo/silx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/logo/silx.png -------------------------------------------------------------------------------- /src/silx/resources/gui/logo/silx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/gui/logo/silx.svg -------------------------------------------------------------------------------- /src/silx/resources/opencl/addition.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/addition.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/backproj.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/backproj.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/bitonic.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/bitonic.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/doubleword.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/doubleword.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/image/cast.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/image/cast.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/image/map.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/image/map.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/kahan.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/kahan.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/linalg.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/linalg.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/medfilt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/medfilt.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/preprocess.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/preprocess.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/proj.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/proj.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/sift/image.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/sift/image.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/sift/sift.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/sift/sift.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/sparse.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/sparse.cl -------------------------------------------------------------------------------- /src/silx/resources/opencl/statistics.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/resources/opencl/statistics.cl -------------------------------------------------------------------------------- /src/silx/sx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/sx/__init__.py -------------------------------------------------------------------------------- /src/silx/sx/_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/sx/_plot.py -------------------------------------------------------------------------------- /src/silx/sx/_plot3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/sx/_plot3d.py -------------------------------------------------------------------------------- /src/silx/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/test/__init__.py -------------------------------------------------------------------------------- /src/silx/test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/test/test_resources.py -------------------------------------------------------------------------------- /src/silx/test/test_sx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/test/test_sx.py -------------------------------------------------------------------------------- /src/silx/test/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/test/test_version.py -------------------------------------------------------------------------------- /src/silx/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/test/utils.py -------------------------------------------------------------------------------- /src/silx/third_party/EdfFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/third_party/EdfFile.py -------------------------------------------------------------------------------- /src/silx/third_party/TiffIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/third_party/TiffIO.py -------------------------------------------------------------------------------- /src/silx/third_party/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/third_party/__init__.py -------------------------------------------------------------------------------- /src/silx/utils/ExternalResources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/ExternalResources.py -------------------------------------------------------------------------------- /src/silx/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/__init__.py -------------------------------------------------------------------------------- /src/silx/utils/array_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/array_like.py -------------------------------------------------------------------------------- /src/silx/utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/debug.py -------------------------------------------------------------------------------- /src/silx/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/deprecation.py -------------------------------------------------------------------------------- /src/silx/utils/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/enum.py -------------------------------------------------------------------------------- /src/silx/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/exceptions.py -------------------------------------------------------------------------------- /src/silx/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/files.py -------------------------------------------------------------------------------- /src/silx/utils/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/launcher.py -------------------------------------------------------------------------------- /src/silx/utils/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/number.py -------------------------------------------------------------------------------- /src/silx/utils/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/property.py -------------------------------------------------------------------------------- /src/silx/utils/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/proxy.py -------------------------------------------------------------------------------- /src/silx/utils/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/retry.py -------------------------------------------------------------------------------- /src/silx/utils/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/__init__.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_array_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_array_like.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_debug.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_deprecation.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_enum.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_launcher.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_number.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_proxy.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_retry.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_testutils.py -------------------------------------------------------------------------------- /src/silx/utils/test/test_weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/test/test_weakref.py -------------------------------------------------------------------------------- /src/silx/utils/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/testutils.py -------------------------------------------------------------------------------- /src/silx/utils/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/src/silx/utils/weakref.py -------------------------------------------------------------------------------- /stdeb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/stdeb.cfg -------------------------------------------------------------------------------- /tools/build_man_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/build_man_page.py -------------------------------------------------------------------------------- /tools/check_meson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/check_meson.py -------------------------------------------------------------------------------- /tools/create_h5_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/create_h5_sample.py -------------------------------------------------------------------------------- /tools/export_svg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/export_svg.sh -------------------------------------------------------------------------------- /tools/format_GH_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/format_GH_release_notes.py -------------------------------------------------------------------------------- /tools/mesonify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/mesonify.py -------------------------------------------------------------------------------- /tools/optimize_svg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/optimize_svg.sh -------------------------------------------------------------------------------- /tools/svg2icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/svg2icns.sh -------------------------------------------------------------------------------- /tools/update_icons_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silx-kit/silx/HEAD/tools/update_icons_rst.py --------------------------------------------------------------------------------