datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- datalab/__init__.py +35 -2
- datalab/adapters_metadata/__init__.py +31 -0
- datalab/adapters_metadata/base_adapter.py +316 -0
- datalab/adapters_metadata/common.py +422 -0
- datalab/adapters_metadata/geometry_adapter.py +98 -0
- datalab/adapters_metadata/table_adapter.py +84 -0
- datalab/adapters_plotpy/__init__.py +54 -0
- datalab/adapters_plotpy/annotations.py +124 -0
- datalab/adapters_plotpy/base.py +110 -0
- datalab/adapters_plotpy/converters.py +86 -0
- datalab/adapters_plotpy/factories.py +80 -0
- datalab/adapters_plotpy/objects/__init__.py +0 -0
- datalab/adapters_plotpy/objects/base.py +197 -0
- datalab/adapters_plotpy/objects/image.py +157 -0
- datalab/adapters_plotpy/objects/scalar.py +565 -0
- datalab/adapters_plotpy/objects/signal.py +264 -0
- datalab/adapters_plotpy/roi/__init__.py +0 -0
- datalab/adapters_plotpy/roi/base.py +146 -0
- datalab/adapters_plotpy/roi/factory.py +93 -0
- datalab/adapters_plotpy/roi/image.py +207 -0
- datalab/adapters_plotpy/roi/signal.py +72 -0
- datalab/app.py +98 -0
- datalab/config.py +817 -0
- datalab/control/__init__.py +0 -0
- datalab/control/baseproxy.py +776 -0
- datalab/control/proxy.py +343 -0
- datalab/control/remote.py +1005 -0
- datalab/data/doc/DataLab_en.pdf +0 -0
- datalab/data/doc/DataLab_fr.pdf +0 -0
- datalab/data/icons/analysis/delete_results.svg +109 -0
- datalab/data/icons/analysis/fw1e2.svg +156 -0
- datalab/data/icons/analysis/fwhm.svg +156 -0
- datalab/data/icons/analysis/histogram.svg +49 -0
- datalab/data/icons/analysis/peak_detect.svg +160 -0
- datalab/data/icons/analysis/plot_results.svg +151 -0
- datalab/data/icons/analysis/show_results.svg +83 -0
- datalab/data/icons/analysis/stats.svg +49 -0
- datalab/data/icons/analysis.svg +120 -0
- datalab/data/icons/apply.svg +3 -0
- datalab/data/icons/check_all.svg +15 -0
- datalab/data/icons/collapse.svg +44 -0
- datalab/data/icons/collapse_selection.svg +63 -0
- datalab/data/icons/console.svg +101 -0
- datalab/data/icons/create/1d-normal.svg +8 -0
- datalab/data/icons/create/1d-poisson.svg +9 -0
- datalab/data/icons/create/1d-uniform.svg +8 -0
- datalab/data/icons/create/1d-zero.svg +57 -0
- datalab/data/icons/create/2d-gaussian.svg +56 -0
- datalab/data/icons/create/2d-normal.svg +38 -0
- datalab/data/icons/create/2d-poisson.svg +38 -0
- datalab/data/icons/create/2d-ramp.svg +90 -0
- datalab/data/icons/create/2d-sinc.svg +62 -0
- datalab/data/icons/create/2d-uniform.svg +38 -0
- datalab/data/icons/create/2d-zero.svg +13 -0
- datalab/data/icons/create/checkerboard.svg +39 -0
- datalab/data/icons/create/cosine.svg +12 -0
- datalab/data/icons/create/exponential.svg +55 -0
- datalab/data/icons/create/gaussian.svg +12 -0
- datalab/data/icons/create/grating.svg +29 -0
- datalab/data/icons/create/linear_chirp.svg +7 -0
- datalab/data/icons/create/logistic.svg +7 -0
- datalab/data/icons/create/lorentzian.svg +12 -0
- datalab/data/icons/create/planck.svg +12 -0
- datalab/data/icons/create/polynomial.svg +7 -0
- datalab/data/icons/create/pulse.svg +12 -0
- datalab/data/icons/create/ring.svg +18 -0
- datalab/data/icons/create/sawtooth.svg +7 -0
- datalab/data/icons/create/siemens.svg +35 -0
- datalab/data/icons/create/sinc.svg +12 -0
- datalab/data/icons/create/sine.svg +7 -0
- datalab/data/icons/create/square.svg +7 -0
- datalab/data/icons/create/square_pulse.svg +7 -0
- datalab/data/icons/create/step.svg +7 -0
- datalab/data/icons/create/step_pulse.svg +12 -0
- datalab/data/icons/create/triangle.svg +7 -0
- datalab/data/icons/create/voigt.svg +12 -0
- datalab/data/icons/edit/annotations.svg +72 -0
- datalab/data/icons/edit/annotations_copy.svg +114 -0
- datalab/data/icons/edit/annotations_delete.svg +83 -0
- datalab/data/icons/edit/annotations_edit.svg +98 -0
- datalab/data/icons/edit/annotations_export.svg +85 -0
- datalab/data/icons/edit/annotations_import.svg +85 -0
- datalab/data/icons/edit/annotations_paste.svg +100 -0
- datalab/data/icons/edit/copy_titles.svg +109 -0
- datalab/data/icons/edit/delete.svg +84 -0
- datalab/data/icons/edit/delete_all.svg +214 -0
- datalab/data/icons/edit/duplicate.svg +64 -0
- datalab/data/icons/edit/goto_source.svg +60 -0
- datalab/data/icons/edit/metadata.svg +60 -0
- datalab/data/icons/edit/metadata_add.svg +80 -0
- datalab/data/icons/edit/metadata_copy.svg +96 -0
- datalab/data/icons/edit/metadata_delete.svg +62 -0
- datalab/data/icons/edit/metadata_export.svg +68 -0
- datalab/data/icons/edit/metadata_import.svg +68 -0
- datalab/data/icons/edit/metadata_paste.svg +79 -0
- datalab/data/icons/edit/move_down.svg +55 -0
- datalab/data/icons/edit/move_up.svg +54 -0
- datalab/data/icons/edit/new_group.svg +76 -0
- datalab/data/icons/edit/recompute.svg +60 -0
- datalab/data/icons/edit/rename.svg +49 -0
- datalab/data/icons/edit.svg +16 -0
- datalab/data/icons/expand.svg +44 -0
- datalab/data/icons/expand_selection.svg +63 -0
- datalab/data/icons/fit/cdf_fit.svg +56 -0
- datalab/data/icons/fit/exponential_fit.svg +55 -0
- datalab/data/icons/fit/gaussian_fit.svg +62 -0
- datalab/data/icons/fit/interactive_fit.svg +101 -0
- datalab/data/icons/fit/linear_fit.svg +57 -0
- datalab/data/icons/fit/lorentzian_fit.svg +209 -0
- datalab/data/icons/fit/multigaussian_fit.svg +85 -0
- datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
- datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
- datalab/data/icons/fit/planckian_fit.svg +62 -0
- datalab/data/icons/fit/polynomial_fit.svg +59 -0
- datalab/data/icons/fit/sigmoid_fit.svg +56 -0
- datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
- datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
- datalab/data/icons/fit/voigt_fit.svg +57 -0
- datalab/data/icons/group.svg +56 -0
- datalab/data/icons/h5/h5array.svg +59 -0
- datalab/data/icons/h5/h5attrs.svg +75 -0
- datalab/data/icons/h5/h5browser.svg +133 -0
- datalab/data/icons/h5/h5file.svg +69 -0
- datalab/data/icons/h5/h5group.svg +49 -0
- datalab/data/icons/h5/h5scalar.svg +1 -0
- datalab/data/icons/help_pdf.svg +46 -0
- datalab/data/icons/history.svg +7 -0
- datalab/data/icons/image.svg +135 -0
- datalab/data/icons/io/fileopen_directory.svg +60 -0
- datalab/data/icons/io/fileopen_h5.svg +84 -0
- datalab/data/icons/io/fileopen_ima.svg +187 -0
- datalab/data/icons/io/fileopen_py.svg +123 -0
- datalab/data/icons/io/fileopen_sig.svg +138 -0
- datalab/data/icons/io/filesave_h5.svg +97 -0
- datalab/data/icons/io/filesave_ima.svg +200 -0
- datalab/data/icons/io/filesave_py.svg +136 -0
- datalab/data/icons/io/filesave_sig.svg +151 -0
- datalab/data/icons/io/import_text.svg +144 -0
- datalab/data/icons/io/save_to_directory.svg +134 -0
- datalab/data/icons/io.svg +84 -0
- datalab/data/icons/libre-camera-flash-off.svg +1 -0
- datalab/data/icons/libre-camera-flash-on.svg +1 -0
- datalab/data/icons/libre-gui-about.svg +1 -0
- datalab/data/icons/libre-gui-action-delete.svg +1 -0
- datalab/data/icons/libre-gui-add.svg +1 -0
- datalab/data/icons/libre-gui-arrow-down.svg +1 -0
- datalab/data/icons/libre-gui-arrow-left.svg +1 -0
- datalab/data/icons/libre-gui-arrow-right.svg +1 -0
- datalab/data/icons/libre-gui-arrow-up.svg +1 -0
- datalab/data/icons/libre-gui-close.svg +40 -0
- datalab/data/icons/libre-gui-cogs.svg +1 -0
- datalab/data/icons/libre-gui-globe.svg +1 -0
- datalab/data/icons/libre-gui-help.svg +1 -0
- datalab/data/icons/libre-gui-link.svg +1 -0
- datalab/data/icons/libre-gui-menu.svg +1 -0
- datalab/data/icons/libre-gui-pencil.svg +1 -0
- datalab/data/icons/libre-gui-plugin.svg +1 -0
- datalab/data/icons/libre-gui-questions.svg +1 -0
- datalab/data/icons/libre-gui-settings.svg +1 -0
- datalab/data/icons/libre-gui-unlink.svg +1 -0
- datalab/data/icons/libre-tech-ram.svg +1 -0
- datalab/data/icons/libre-toolbox.svg +1 -0
- datalab/data/icons/logs.svg +1 -0
- datalab/data/icons/markers.svg +74 -0
- datalab/data/icons/menu.svg +13 -0
- datalab/data/icons/new_ima.svg +148 -0
- datalab/data/icons/new_sig.svg +123 -0
- datalab/data/icons/operations/abs.svg +116 -0
- datalab/data/icons/operations/arithmetic.svg +123 -0
- datalab/data/icons/operations/average.svg +124 -0
- datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
- datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
- datalab/data/icons/operations/constant.svg +116 -0
- datalab/data/icons/operations/constant_add.svg +109 -0
- datalab/data/icons/operations/constant_divide.svg +109 -0
- datalab/data/icons/operations/constant_multiply.svg +109 -0
- datalab/data/icons/operations/constant_subtract.svg +109 -0
- datalab/data/icons/operations/convert_dtype.svg +117 -0
- datalab/data/icons/operations/convolution.svg +46 -0
- datalab/data/icons/operations/deconvolution.svg +57 -0
- datalab/data/icons/operations/derivative.svg +127 -0
- datalab/data/icons/operations/difference.svg +52 -0
- datalab/data/icons/operations/division.svg +139 -0
- datalab/data/icons/operations/exp.svg +116 -0
- datalab/data/icons/operations/flip_horizontally.svg +69 -0
- datalab/data/icons/operations/flip_vertically.svg +74 -0
- datalab/data/icons/operations/im.svg +124 -0
- datalab/data/icons/operations/integral.svg +50 -0
- datalab/data/icons/operations/inverse.svg +143 -0
- datalab/data/icons/operations/log10.svg +109 -0
- datalab/data/icons/operations/phase.svg +116 -0
- datalab/data/icons/operations/power.svg +118 -0
- datalab/data/icons/operations/product.svg +124 -0
- datalab/data/icons/operations/profile.svg +379 -0
- datalab/data/icons/operations/profile_average.svg +399 -0
- datalab/data/icons/operations/profile_radial.svg +261 -0
- datalab/data/icons/operations/profile_segment.svg +262 -0
- datalab/data/icons/operations/quadratic_difference.svg +84 -0
- datalab/data/icons/operations/re.svg +124 -0
- datalab/data/icons/operations/rotate_left.svg +72 -0
- datalab/data/icons/operations/rotate_right.svg +72 -0
- datalab/data/icons/operations/signals_to_image.svg +314 -0
- datalab/data/icons/operations/sqrt.svg +110 -0
- datalab/data/icons/operations/std.svg +124 -0
- datalab/data/icons/operations/sum.svg +102 -0
- datalab/data/icons/play_demo.svg +9 -0
- datalab/data/icons/processing/axis_transform.svg +62 -0
- datalab/data/icons/processing/bandpass.svg +79 -0
- datalab/data/icons/processing/bandstop.svg +71 -0
- datalab/data/icons/processing/binning.svg +126 -0
- datalab/data/icons/processing/clip.svg +119 -0
- datalab/data/icons/processing/detrending.svg +173 -0
- datalab/data/icons/processing/distribute_on_grid.svg +769 -0
- datalab/data/icons/processing/edge_detection.svg +46 -0
- datalab/data/icons/processing/erase.svg +1 -0
- datalab/data/icons/processing/exposure.svg +143 -0
- datalab/data/icons/processing/fourier.svg +104 -0
- datalab/data/icons/processing/highpass.svg +59 -0
- datalab/data/icons/processing/interpolation.svg +71 -0
- datalab/data/icons/processing/level_adjustment.svg +70 -0
- datalab/data/icons/processing/lowpass.svg +60 -0
- datalab/data/icons/processing/morphology.svg +49 -0
- datalab/data/icons/processing/noise_addition.svg +114 -0
- datalab/data/icons/processing/noise_reduction.svg +38 -0
- datalab/data/icons/processing/normalize.svg +84 -0
- datalab/data/icons/processing/offset_correction.svg +131 -0
- datalab/data/icons/processing/resampling1d.svg +101 -0
- datalab/data/icons/processing/resampling2d.svg +240 -0
- datalab/data/icons/processing/reset_positions.svg +185 -0
- datalab/data/icons/processing/resize.svg +9 -0
- datalab/data/icons/processing/reverse_signal_x.svg +171 -0
- datalab/data/icons/processing/stability.svg +11 -0
- datalab/data/icons/processing/swap_x_y.svg +65 -0
- datalab/data/icons/processing/thresholding.svg +63 -0
- datalab/data/icons/processing/windowing.svg +45 -0
- datalab/data/icons/properties.svg +26 -0
- datalab/data/icons/reset.svg +9 -0
- datalab/data/icons/restore.svg +40 -0
- datalab/data/icons/roi/roi.svg +76 -0
- datalab/data/icons/roi/roi_coordinate.svg +78 -0
- datalab/data/icons/roi/roi_copy.svg +112 -0
- datalab/data/icons/roi/roi_delete.svg +81 -0
- datalab/data/icons/roi/roi_export.svg +87 -0
- datalab/data/icons/roi/roi_graphical.svg +78 -0
- datalab/data/icons/roi/roi_grid.svg +67 -0
- datalab/data/icons/roi/roi_ima.svg +188 -0
- datalab/data/icons/roi/roi_import.svg +87 -0
- datalab/data/icons/roi/roi_new.svg +81 -0
- datalab/data/icons/roi/roi_new_circle.svg +95 -0
- datalab/data/icons/roi/roi_new_polygon.svg +110 -0
- datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
- datalab/data/icons/roi/roi_paste.svg +98 -0
- datalab/data/icons/roi/roi_sig.svg +124 -0
- datalab/data/icons/shapes.svg +134 -0
- datalab/data/icons/signal.svg +103 -0
- datalab/data/icons/table.svg +85 -0
- datalab/data/icons/table_unavailable.svg +102 -0
- datalab/data/icons/to_signal.svg +124 -0
- datalab/data/icons/tour/next.svg +44 -0
- datalab/data/icons/tour/previous.svg +44 -0
- datalab/data/icons/tour/rewind.svg +51 -0
- datalab/data/icons/tour/stop.svg +47 -0
- datalab/data/icons/tour/tour.svg +16 -0
- datalab/data/icons/uncheck_all.svg +78 -0
- datalab/data/icons/view/curve_antialiasing.svg +50 -0
- datalab/data/icons/view/new_window.svg +98 -0
- datalab/data/icons/view/refresh-auto.svg +57 -0
- datalab/data/icons/view/refresh-manual.svg +51 -0
- datalab/data/icons/view/reset_curve_styles.svg +96 -0
- datalab/data/icons/view/show_first.svg +55 -0
- datalab/data/icons/view/show_titles.svg +46 -0
- datalab/data/icons/visualization.svg +51 -0
- datalab/data/logo/DataLab-Banner-150.png +0 -0
- datalab/data/logo/DataLab-Banner-200.png +0 -0
- datalab/data/logo/DataLab-Banner2-100.png +0 -0
- datalab/data/logo/DataLab-Splash.png +0 -0
- datalab/data/logo/DataLab-watermark.png +0 -0
- datalab/data/logo/DataLab.svg +83 -0
- datalab/data/tests/reordering_test.h5 +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
- datalab/env.py +542 -0
- datalab/gui/__init__.py +89 -0
- datalab/gui/actionhandler.py +1701 -0
- datalab/gui/docks.py +473 -0
- datalab/gui/h5io.py +150 -0
- datalab/gui/macroeditor.py +310 -0
- datalab/gui/main.py +2081 -0
- datalab/gui/newobject.py +217 -0
- datalab/gui/objectview.py +766 -0
- datalab/gui/panel/__init__.py +48 -0
- datalab/gui/panel/base.py +3254 -0
- datalab/gui/panel/image.py +157 -0
- datalab/gui/panel/macro.py +607 -0
- datalab/gui/panel/signal.py +164 -0
- datalab/gui/plothandler.py +800 -0
- datalab/gui/processor/__init__.py +84 -0
- datalab/gui/processor/base.py +2456 -0
- datalab/gui/processor/catcher.py +75 -0
- datalab/gui/processor/image.py +1214 -0
- datalab/gui/processor/signal.py +755 -0
- datalab/gui/profiledialog.py +333 -0
- datalab/gui/roieditor.py +633 -0
- datalab/gui/roigrideditor.py +208 -0
- datalab/gui/settings.py +612 -0
- datalab/gui/tour.py +908 -0
- datalab/h5/__init__.py +12 -0
- datalab/h5/common.py +314 -0
- datalab/h5/generic.py +580 -0
- datalab/h5/native.py +39 -0
- datalab/h5/utils.py +95 -0
- datalab/objectmodel.py +640 -0
- datalab/plugins/_readme_.txt +9 -0
- datalab/plugins/datalab_imageformats.py +175 -0
- datalab/plugins/datalab_testdata.py +190 -0
- datalab/plugins.py +355 -0
- datalab/tests/__init__.py +199 -0
- datalab/tests/backbone/__init__.py +1 -0
- datalab/tests/backbone/config_unit_test.py +170 -0
- datalab/tests/backbone/config_versioning_unit_test.py +34 -0
- datalab/tests/backbone/dictlistserial_app_test.py +38 -0
- datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
- datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
- datalab/tests/backbone/execenv_unit.py +262 -0
- datalab/tests/backbone/loadtest_gdi.py +147 -0
- datalab/tests/backbone/long_callback.py +96 -0
- datalab/tests/backbone/main_app_test.py +137 -0
- datalab/tests/backbone/memory_leak.py +43 -0
- datalab/tests/backbone/procisolation1_unit.py +128 -0
- datalab/tests/backbone/procisolation2_unit.py +171 -0
- datalab/tests/backbone/procisolation_unit_test.py +22 -0
- datalab/tests/backbone/profiling_app.py +27 -0
- datalab/tests/backbone/strings_unit_test.py +65 -0
- datalab/tests/backbone/title_formatting_unit_test.py +82 -0
- datalab/tests/conftest.py +131 -0
- datalab/tests/features/__init__.py +1 -0
- datalab/tests/features/applauncher/__init__.py +1 -0
- datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
- datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
- datalab/tests/features/common/__init__.py +1 -0
- datalab/tests/features/common/add_metadata_app_test.py +134 -0
- datalab/tests/features/common/add_metadata_unit_test.py +267 -0
- datalab/tests/features/common/annotations_management_unit_test.py +152 -0
- datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
- datalab/tests/features/common/createobject_unit_test.py +50 -0
- datalab/tests/features/common/geometry_results_app_test.py +135 -0
- datalab/tests/features/common/interactive_processing_test.py +1109 -0
- datalab/tests/features/common/io_app_test.py +75 -0
- datalab/tests/features/common/large_results_app_test.py +187 -0
- datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
- datalab/tests/features/common/metadata_app_test.py +139 -0
- datalab/tests/features/common/metadata_io_unit_test.py +60 -0
- datalab/tests/features/common/misc_app_test.py +236 -0
- datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
- datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
- datalab/tests/features/common/operation_modes_app_test.py +392 -0
- datalab/tests/features/common/plot_results_app_test.py +278 -0
- datalab/tests/features/common/reorder_app_test.py +75 -0
- datalab/tests/features/common/result_deletion_unit_test.py +96 -0
- datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
- datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
- datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
- datalab/tests/features/common/roieditor_unit_test.py +102 -0
- datalab/tests/features/common/save_to_dir_app_test.py +163 -0
- datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
- datalab/tests/features/common/stat_app_test.py +40 -0
- datalab/tests/features/common/stats_tools_unit_test.py +77 -0
- datalab/tests/features/common/table_results_app_test.py +52 -0
- datalab/tests/features/common/textimport_unit_test.py +131 -0
- datalab/tests/features/common/uuid_preservation_test.py +281 -0
- datalab/tests/features/common/worker_unit_test.py +402 -0
- datalab/tests/features/control/__init__.py +1 -0
- datalab/tests/features/control/connect_dialog.py +28 -0
- datalab/tests/features/control/embedded1_unit_test.py +304 -0
- datalab/tests/features/control/embedded2_unit_test.py +52 -0
- datalab/tests/features/control/remoteclient_app_test.py +219 -0
- datalab/tests/features/control/remoteclient_unit.py +75 -0
- datalab/tests/features/control/simpleclient_unit_test.py +321 -0
- datalab/tests/features/hdf5/__init__.py +1 -0
- datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
- datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
- datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
- datalab/tests/features/hdf5/h5import_app_test.py +25 -0
- datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
- datalab/tests/features/image/__init__.py +1 -0
- datalab/tests/features/image/annotations_app_test.py +28 -0
- datalab/tests/features/image/annotations_unit_test.py +80 -0
- datalab/tests/features/image/average_app_test.py +46 -0
- datalab/tests/features/image/background_dialog_test.py +70 -0
- datalab/tests/features/image/blobs_app_test.py +50 -0
- datalab/tests/features/image/contour_app_test.py +42 -0
- datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
- datalab/tests/features/image/denoise_app_test.py +31 -0
- datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
- datalab/tests/features/image/edges_app_test.py +31 -0
- datalab/tests/features/image/erase_app_test.py +21 -0
- datalab/tests/features/image/fft2d_app_test.py +27 -0
- datalab/tests/features/image/flatfield_app_test.py +40 -0
- datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
- datalab/tests/features/image/imagetools_app_test.py +51 -0
- datalab/tests/features/image/imagetools_unit_test.py +27 -0
- datalab/tests/features/image/load_app_test.py +73 -0
- datalab/tests/features/image/morph_app_test.py +32 -0
- datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
- datalab/tests/features/image/peak2d_app_test.py +53 -0
- datalab/tests/features/image/profile_app_test.py +73 -0
- datalab/tests/features/image/profile_dialog_test.py +56 -0
- datalab/tests/features/image/roi_app_test.py +98 -0
- datalab/tests/features/image/roi_circ_app_test.py +62 -0
- datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
- datalab/tests/features/image/roigrid_unit_test.py +60 -0
- datalab/tests/features/image/side_by_side_app_test.py +52 -0
- datalab/tests/features/macro/__init__.py +1 -0
- datalab/tests/features/macro/macro_app_test.py +28 -0
- datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
- datalab/tests/features/signal/__init__.py +1 -0
- datalab/tests/features/signal/baseline_dialog_test.py +53 -0
- datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
- datalab/tests/features/signal/fft1d_app_test.py +26 -0
- datalab/tests/features/signal/filter_app_test.py +44 -0
- datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
- datalab/tests/features/signal/interpolation_app_test.py +110 -0
- datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
- datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
- datalab/tests/features/signal/pulse_features_app_test.py +118 -0
- datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
- datalab/tests/features/signal/roi_app_test.py +78 -0
- datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
- datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
- datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
- datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
- datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
- datalab/tests/features/tour_unit_test.py +22 -0
- datalab/tests/features/utilities/__init__.py +1 -0
- datalab/tests/features/utilities/installconf_unit_test.py +21 -0
- datalab/tests/features/utilities/logview_app_test.py +21 -0
- datalab/tests/features/utilities/logview_error.py +24 -0
- datalab/tests/features/utilities/logview_unit_test.py +21 -0
- datalab/tests/features/utilities/memstatus_app_test.py +42 -0
- datalab/tests/features/utilities/settings_unit_test.py +88 -0
- datalab/tests/scenarios/__init__.py +1 -0
- datalab/tests/scenarios/beautiful_app.py +121 -0
- datalab/tests/scenarios/common.py +463 -0
- datalab/tests/scenarios/demo.py +212 -0
- datalab/tests/scenarios/example_app_test.py +47 -0
- datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
- datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
- datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
- datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
- datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
- datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
- datalab/utils/__init__.py +1 -0
- datalab/utils/conf.py +304 -0
- datalab/utils/dephash.py +105 -0
- datalab/utils/qthelpers.py +633 -0
- datalab/utils/strings.py +34 -0
- datalab/utils/tests.py +0 -0
- datalab/widgets/__init__.py +1 -0
- datalab/widgets/connection.py +138 -0
- datalab/widgets/filedialog.py +91 -0
- datalab/widgets/fileviewer.py +84 -0
- datalab/widgets/fitdialog.py +788 -0
- datalab/widgets/h5browser.py +1048 -0
- datalab/widgets/imagebackground.py +111 -0
- datalab/widgets/instconfviewer.py +175 -0
- datalab/widgets/logviewer.py +80 -0
- datalab/widgets/signalbaseline.py +90 -0
- datalab/widgets/signalcursor.py +208 -0
- datalab/widgets/signaldeltax.py +151 -0
- datalab/widgets/signalpeak.py +199 -0
- datalab/widgets/status.py +249 -0
- datalab/widgets/textimport.py +786 -0
- datalab/widgets/warningerror.py +223 -0
- datalab/widgets/wizard.py +286 -0
- datalab_platform-1.0.0.dist-info/METADATA +121 -0
- datalab_platform-1.0.0.dist-info/RECORD +494 -0
- datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
- datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="edge_detection.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="21.137442"
|
|
28
|
+
inkscape:cx="11.780044"
|
|
29
|
+
inkscape:cy="10.668273"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<path
|
|
37
|
+
id="path1"
|
|
38
|
+
style="opacity:1;fill:#008000;stroke-width:0.835741;stroke-miterlimit:10"
|
|
39
|
+
d="M 7.7374572,2.4634343 C 7.3644895,2.4712299 7.0129844,2.7309089 6.8938703,3.0841605 6.3632477,3.8416265 5.4839317,3.6989949 4.6141333,3.1989024 4.2402236,3.0265198 3.7820372,3.0518568 3.4312376,3.2684403 3.1059149,3.4637423 2.8758554,3.8113634 2.8305164,4.1889264 2.7750036,4.6078102 2.9419428,5.0517582 3.269605,5.3210613 3.9536806,7.0656654 2.9972855,7.3950847 2.5702001,8.4407161 c -0.089506,0.2849776 -0.032181,0.6112552 0.1521293,0.8468357 0.2003349,0.2638328 0.9107352,0.080957 1.7842183,0.5331139 0.873483,0.4521543 0.9480814,1.1229083 0.9480814,1.1229083 0.1936075,0.375825 0.5832588,0.646154 1.0061741,0.682078 0.4214107,0.04187 0.8595757,-0.141769 1.1186276,-0.478205 C 7.9645744,10.197177 8.178309,9.9382597 9.1043795,9.9672807 9.3765063,10.0732 9.6984943,10.039191 9.9403992,9.8748407 10.193176,9.7090994 10.360258,9.4170004 10.363654,9.1134677 10.371054,8.795196 10.204277,8.4778349 9.9329252,8.3095053 9.6928523,7.9617139 10.175869,7.4392863 10.855642,7.025654 11.164579,6.7517085 11.329531,6.3210955 11.270044,5.9110181 11.215424,5.4927268 10.940458,5.1078445 10.555892,4.9309485 c 0,0 -1.2361266,-0.3174174 -1.6198476,-0.7669209 C 8.5523242,3.7145292 8.5487649,2.4385768 7.737457,2.4634343 Z"
|
|
40
|
+
sodipodi:nodetypes="sccccccczcccccccccczss" />
|
|
41
|
+
<path
|
|
42
|
+
id="path1-6"
|
|
43
|
+
style="fill:none;stroke:#362fff;stroke-width:0.744;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
44
|
+
d="M 8.0393895,1.276323 C 7.5736958,1.286053 7.1348006,1.610296 6.9860728,2.051372 6.3235285,2.9971566 5.2255998,2.8190644 4.1395549,2.1946406 3.6726852,1.9794008 3.1005858,2.011037 2.6625716,2.2814666 2.2563681,2.5253239 1.969112,2.9593694 1.912501,3.4308009 1.8431868,3.9538265 2.0516298,4.5081473 2.4607544,4.8444037 3.3149027,7.0227456 2.1207318,7.434064 1.5874657,8.739657 1.4757063,9.0954847 1.5472839,9.5028804 1.7774169,9.7970302 c 0.2501415,0.3294258 1.1371592,0.1010843 2.2278048,0.6656538 1.0906456,0.564569 1.1837904,1.402083 1.1837904,1.402083 0.2417415,0.469263 0.7282667,0.806799 1.2563258,0.851655 0.5261805,0.05227 1.0732806,-0.177017 1.3967371,-0.597095 0.4808968,-1.186523 0.7477693,-1.509813 1.9040764,-1.473576 0.3397816,0.132253 0.7418216,0.08979 1.0438676,-0.115417 0.315621,-0.206946 0.524243,-0.5716657 0.528483,-0.9506619 0.0093,-0.3973994 -0.199001,-0.7936617 -0.537815,-1.003841 -0.299759,-0.4342581 0.303344,-1.08657 1.15212,-1.6030382 0.385744,-0.342053 0.591706,-0.8797235 0.51743,-1.3917531 -0.0682,-0.5222854 -0.411527,-1.002856 -0.891703,-1.2237312 0,0 -1.543449,-0.3963327 -2.0225685,-0.9575903 C 9.0568461,2.8384608 9.0524018,1.2452854 8.0393895,1.276323 Z"
|
|
45
|
+
sodipodi:nodetypes="sccccccczcccccccccczss" />
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#26a6d1" d="M8.86813404 1.19820285l3.92120103 3.92120144c.26422773.26422763.26422773.6931591 0 .95738673l-6.7005097 6.70008258c-.26422762.26461194-.6931591.26461194-.95738672 0L1.21066483 8.85567196c-.2642276-.26422763-.2642276-.6927742 0-.95700183L7.91079 1.19820285c.26461254-.26427044.6931164-.26427044.95734403 0z"/><path fill="#e2574c" d="M4.61949218 4.48984279L1.21066483 7.89867013c-.2642276.26422764-.2642276.6927742 0 .95700183l3.92120143 3.92120164c.26422764.26461194.6931592.26461194.95738684 0l3.40882734-3.40844254-4.87858826-4.87858827z"/><path d="M5.4604647 12.32859099l7.3710485.03300202-.00319343.63840698-7.37104929-.03300202.00326328-.63840798z"/><path fill="#cb4e44" d="M2.7481293 6.36120567L1.21066482 7.89867013c-.2642276.26422764-.2642276.6927743 0 .95700193l3.92120143 3.92120154c.26422764.26461194.6931592.26461194.95738684 0l1.53750717-1.53712277L2.7481293 6.36120567z"/><path fill="#eae5e4" d="M1.88551883 7.22497095l4.87743345 4.87743295-.45142803.45142813-4.87743344-4.87743305.45142802-.45142803z"/></svg>
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="exposure.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="42.274884"
|
|
28
|
+
inkscape:cx="6.8480377"
|
|
29
|
+
inkscape:cy="7.2738224"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<g
|
|
37
|
+
style="fill:none;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
38
|
+
transform="matrix(0.13707419,0,0,0.13707419,0.8316613,0.8316613)"
|
|
39
|
+
id="g17">
|
|
40
|
+
<path
|
|
41
|
+
d="M 45,70.75 C 30.801,70.75 19.25,59.198 19.25,45 19.25,30.801 30.801,19.25 45,19.25 c 14.198,0 25.75,11.551 25.75,25.75 0,4.645 -1.251,9.197 -3.616,13.167 C 62.506,65.929 54.025,70.75 45,70.75 Z"
|
|
42
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
43
|
+
stroke-linecap="round"
|
|
44
|
+
id="path1" />
|
|
45
|
+
|
|
46
|
+
<path
|
|
47
|
+
d="m 45,13.116 c -0.552,0 -1,-0.448 -1,-1 V 1 c 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 v 11.116 c 0,0.552 -0.448,1 -1,1 z"
|
|
48
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
49
|
+
stroke-linecap="round"
|
|
50
|
+
id="path2" />
|
|
51
|
+
|
|
52
|
+
<path
|
|
53
|
+
d="m 45,90 c -0.552,0 -1,-0.447 -1,-1 V 77.884 c 0,-0.553 0.448,-1 1,-1 0.552,0 1,0.447 1,1 V 89 c 0,0.553 -0.448,1 -1,1 z"
|
|
54
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
55
|
+
stroke-linecap="round"
|
|
56
|
+
id="path3" />
|
|
57
|
+
|
|
58
|
+
<path
|
|
59
|
+
d="M 12.116,46 H 1 C 0.448,46 0,45.552 0,45 0,44.448 0.448,44 1,44 h 11.116 c 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
|
60
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
61
|
+
stroke-linecap="round"
|
|
62
|
+
id="path4" />
|
|
63
|
+
|
|
64
|
+
<path
|
|
65
|
+
d="M 89,46 H 77.884 c -0.553,0 -1,-0.448 -1,-1 0,-0.552 0.447,-1 1,-1 H 89 c 0.553,0 1,0.448 1,1 0,0.552 -0.447,1 -1,1 z"
|
|
66
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
67
|
+
stroke-linecap="round"
|
|
68
|
+
id="path5" />
|
|
69
|
+
|
|
70
|
+
<path
|
|
71
|
+
d="m 68.252,22.748 c -0.256,0 -0.512,-0.098 -0.707,-0.293 -0.391,-0.391 -0.391,-1.023 0,-1.414 l 7.86,-7.86 c 0.391,-0.391 1.023,-0.391 1.414,0 0.391,0.391 0.391,1.023 0,1.414 l -7.86,7.86 c -0.195,0.195 -0.451,0.293 -0.707,0.293 z"
|
|
72
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
73
|
+
stroke-linecap="round"
|
|
74
|
+
id="path6" />
|
|
75
|
+
|
|
76
|
+
<path
|
|
77
|
+
d="m 13.887,77.112 c -0.256,0 -0.512,-0.098 -0.707,-0.293 -0.391,-0.391 -0.391,-1.023 0,-1.414 l 7.86,-7.86 c 0.391,-0.391 1.023,-0.391 1.414,0 0.391,0.391 0.391,1.023 0,1.414 l -7.86,7.86 c -0.195,0.196 -0.451,0.293 -0.707,0.293 z"
|
|
78
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
79
|
+
stroke-linecap="round"
|
|
80
|
+
id="path7" />
|
|
81
|
+
|
|
82
|
+
<path
|
|
83
|
+
d="m 21.748,22.748 c -0.256,0 -0.512,-0.098 -0.707,-0.293 l -7.86,-7.86 c -0.391,-0.391 -0.391,-1.023 0,-1.414 0.391,-0.391 1.023,-0.391 1.414,0 l 7.86,7.86 c 0.391,0.391 0.391,1.023 0,1.414 -0.196,0.195 -0.452,0.293 -0.707,0.293 z"
|
|
84
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
85
|
+
stroke-linecap="round"
|
|
86
|
+
id="path8" />
|
|
87
|
+
|
|
88
|
+
<path
|
|
89
|
+
d="m 76.112,77.112 c -0.256,0 -0.512,-0.098 -0.707,-0.293 l -7.86,-7.86 c -0.391,-0.391 -0.391,-1.023 0,-1.414 0.391,-0.391 1.023,-0.391 1.414,0 l 7.86,7.86 c 0.391,0.391 0.391,1.023 0,1.414 -0.195,0.196 -0.451,0.293 -0.707,0.293 z"
|
|
90
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
91
|
+
stroke-linecap="round"
|
|
92
|
+
id="path9" />
|
|
93
|
+
|
|
94
|
+
<path
|
|
95
|
+
d="m 32.417,15.62 c -0.393,0 -0.765,-0.233 -0.924,-0.618 L 27.239,4.732 c -0.211,-0.51 0.031,-1.095 0.541,-1.307 0.512,-0.211 1.095,0.031 1.307,0.541 l 4.254,10.27 c 0.211,0.51 -0.031,1.095 -0.541,1.307 -0.127,0.052 -0.256,0.077 -0.383,0.077 z"
|
|
96
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
97
|
+
stroke-linecap="round"
|
|
98
|
+
id="path10" />
|
|
99
|
+
|
|
100
|
+
<path
|
|
101
|
+
d="m 61.838,86.65 c -0.392,0 -0.765,-0.232 -0.924,-0.617 L 56.66,75.763 c -0.211,-0.511 0.031,-1.096 0.541,-1.307 0.509,-0.21 1.096,0.03 1.307,0.541 l 4.254,10.27 c 0.211,0.511 -0.031,1.096 -0.541,1.307 -0.125,0.052 -0.255,0.076 -0.383,0.076 z"
|
|
102
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
103
|
+
stroke-linecap="round"
|
|
104
|
+
id="path11" />
|
|
105
|
+
|
|
106
|
+
<path
|
|
107
|
+
d="m 4.35,62.838 c -0.393,0 -0.765,-0.232 -0.924,-0.617 -0.211,-0.511 0.031,-1.096 0.541,-1.307 l 10.27,-4.254 c 0.512,-0.213 1.095,0.031 1.307,0.541 0.211,0.511 -0.031,1.096 -0.541,1.307 L 4.733,62.762 C 4.606,62.813 4.477,62.838 4.35,62.838 Z"
|
|
108
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
109
|
+
stroke-linecap="round"
|
|
110
|
+
id="path12" />
|
|
111
|
+
|
|
112
|
+
<path
|
|
113
|
+
d="m 75.381,33.417 c -0.392,0 -0.765,-0.233 -0.924,-0.618 -0.211,-0.51 0.031,-1.095 0.541,-1.307 l 10.27,-4.254 c 0.509,-0.21 1.096,0.031 1.307,0.541 0.211,0.51 -0.031,1.095 -0.541,1.307 l -10.27,4.254 c -0.125,0.052 -0.255,0.077 -0.383,0.077 z"
|
|
114
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
115
|
+
stroke-linecap="round"
|
|
116
|
+
id="path13" />
|
|
117
|
+
|
|
118
|
+
<path
|
|
119
|
+
d="m 57.584,15.62 c -0.128,0 -0.258,-0.025 -0.383,-0.077 -0.51,-0.211 -0.752,-0.796 -0.541,-1.307 l 4.254,-10.27 c 0.211,-0.511 0.799,-0.75 1.307,-0.541 0.51,0.211 0.752,0.796 0.541,1.307 l -4.254,10.27 c -0.159,0.385 -0.532,0.618 -0.924,0.618 z"
|
|
120
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
121
|
+
stroke-linecap="round"
|
|
122
|
+
id="path14" />
|
|
123
|
+
|
|
124
|
+
<path
|
|
125
|
+
d="m 28.162,86.65 c -0.127,0 -0.257,-0.024 -0.382,-0.076 -0.51,-0.211 -0.752,-0.796 -0.541,-1.307 l 4.254,-10.27 c 0.211,-0.51 0.793,-0.752 1.307,-0.541 0.51,0.211 0.752,0.796 0.541,1.307 l -4.254,10.27 c -0.161,0.385 -0.533,0.617 -0.925,0.617 z"
|
|
126
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
127
|
+
stroke-linecap="round"
|
|
128
|
+
id="path15" />
|
|
129
|
+
|
|
130
|
+
<path
|
|
131
|
+
d="m 14.619,33.417 c -0.127,0 -0.257,-0.025 -0.382,-0.077 L 3.967,29.086 C 3.457,28.875 3.215,28.29 3.426,27.779 3.637,27.269 4.219,27.026 4.733,27.238 l 10.27,4.254 c 0.51,0.211 0.752,0.796 0.541,1.307 -0.161,0.385 -0.533,0.618 -0.925,0.618 z"
|
|
132
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
133
|
+
stroke-linecap="round"
|
|
134
|
+
id="path16" />
|
|
135
|
+
|
|
136
|
+
<path
|
|
137
|
+
d="m 85.65,62.838 c -0.128,0 -0.258,-0.024 -0.383,-0.076 l -10.27,-4.254 c -0.51,-0.211 -0.752,-0.796 -0.541,-1.307 0.211,-0.511 0.8,-0.751 1.307,-0.541 l 10.27,4.254 c 0.51,0.211 0.752,0.796 0.541,1.307 -0.159,0.384 -0.532,0.617 -0.924,0.617 z"
|
|
138
|
+
style="opacity:1;fill:#ffbc00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
139
|
+
stroke-linecap="round"
|
|
140
|
+
id="path17" />
|
|
141
|
+
|
|
142
|
+
</g>
|
|
143
|
+
</svg>
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="fourier_analysis.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="42.274884"
|
|
28
|
+
inkscape:cx="5.85454"
|
|
29
|
+
inkscape:cy="6.6351454"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<g
|
|
37
|
+
id="g4"
|
|
38
|
+
transform="matrix(0.03814753,0,0,0.0452887,-0.17746741,3.7102559)"
|
|
39
|
+
style="fill:none;stroke:#1d5cda;stroke-width:21.3641;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1">
|
|
40
|
+
<path
|
|
41
|
+
id="c1"
|
|
42
|
+
d="m 28.153655,72.639405 q 49.30024,-102.9 80.011025,-100"
|
|
43
|
+
style="fill:none;stroke:#1d5cda;stroke-width:21.3641;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
44
|
+
<path
|
|
45
|
+
id="use2"
|
|
46
|
+
d="m 188.17571,72.639405 q -49.30024,-102.9 -80.01103,-100"
|
|
47
|
+
style="fill:none;stroke:#1d5cda;stroke-width:21.3641;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
48
|
+
<path
|
|
49
|
+
id="use3"
|
|
50
|
+
d="M 188.17571,72.639405 Q 237.47595,175.5394 268.18675,172.6394"
|
|
51
|
+
style="fill:none;stroke:#1d5cda;stroke-width:21.3641;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
52
|
+
<path
|
|
53
|
+
id="use4"
|
|
54
|
+
d="M 348.14685,72.639405 Q 298.8466,175.5394 268.13581,172.6394"
|
|
55
|
+
style="fill:none;stroke:#1d5cda;stroke-width:21.3641;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
56
|
+
</g>
|
|
57
|
+
<g
|
|
58
|
+
id="g1"
|
|
59
|
+
style="stroke-width:1.1;stroke-dasharray:none;fill:#ff2a2a;stroke:#ff5555"
|
|
60
|
+
transform="matrix(0.71407555,0,0,0.71407555,-0.23184304,4.5044954)">
|
|
61
|
+
<g
|
|
62
|
+
id="g4-0"
|
|
63
|
+
transform="matrix(0.0265732,0,0,0.03154768,0.87591118,1.2031301)"
|
|
64
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1">
|
|
65
|
+
<path
|
|
66
|
+
id="c1-6"
|
|
67
|
+
d="m 28.153655,72.639405 q 49.30024,-102.9 80.011025,-100"
|
|
68
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
69
|
+
<path
|
|
70
|
+
id="use2-5"
|
|
71
|
+
d="m 188.17571,72.639405 q -49.30024,-102.9 -80.01103,-100"
|
|
72
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
73
|
+
<path
|
|
74
|
+
id="use3-0"
|
|
75
|
+
d="M 188.17571,72.639405 Q 237.47595,175.5394 268.18675,172.6394"
|
|
76
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
77
|
+
<path
|
|
78
|
+
id="use4-0"
|
|
79
|
+
d="M 348.14685,72.639405 Q 298.8466,175.5394 268.13581,172.6394"
|
|
80
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
81
|
+
</g>
|
|
82
|
+
<g
|
|
83
|
+
id="g4-0-5"
|
|
84
|
+
transform="matrix(0.0265732,0,0,0.03154768,9.3797004,1.2031301)"
|
|
85
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1">
|
|
86
|
+
<path
|
|
87
|
+
id="c1-6-1"
|
|
88
|
+
d="m 28.153655,72.639405 q 49.30024,-102.9 80.011025,-100"
|
|
89
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
90
|
+
<path
|
|
91
|
+
id="use2-5-3"
|
|
92
|
+
d="m 188.17571,72.639405 q -49.30024,-102.9 -80.01103,-100"
|
|
93
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
94
|
+
<path
|
|
95
|
+
id="use3-0-7"
|
|
96
|
+
d="M 188.17571,72.639405 Q 237.47595,175.5394 268.18675,172.6394"
|
|
97
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
98
|
+
<path
|
|
99
|
+
id="use4-0-5"
|
|
100
|
+
d="M 348.14685,72.639405 Q 298.8466,175.5394 268.13581,172.6394"
|
|
101
|
+
style="fill:#ff2a2a;stroke:#ff5555;stroke-width:37.9916;stroke-linecap:square;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
|
|
102
|
+
</g>
|
|
103
|
+
</g>
|
|
104
|
+
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="highpass.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview10"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="29.714286"
|
|
27
|
+
inkscape:cx="4.3245192"
|
|
28
|
+
inkscape:cy="3.6514423"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1009"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg8"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<path
|
|
38
|
+
d="m 12.891016,2.2675747 v 9.4648513 c 0,0.650708 -0.623757,1.183105 -1.386123,1.183105 H 2.495105 c -0.7623667,0 -1.3861213,-0.532397 -1.3861213,-1.183105 V 2.2675747 c 0,-0.6507092 0.6237546,-1.1831059 1.3861213,-1.1831059 h 9.009788 c 0.762366,0 1.386123,0.5323967 1.386123,1.1831059 z"
|
|
39
|
+
id="path2-7"
|
|
40
|
+
style="fill:#90f9a5;fill-opacity:1;stroke-width:1.10914" />
|
|
41
|
+
<g
|
|
42
|
+
id="g2"
|
|
43
|
+
transform="matrix(0.06942199,0,0,0.06942199,-8.5717241,-38.886543)">
|
|
44
|
+
<path
|
|
45
|
+
sodipodi:nodetypes="csc"
|
|
46
|
+
id="use3899"
|
|
47
|
+
d="m 162.20456,638.07128 c 0,0 28.57143,-61.42857 62.14286,0 33.57143,61.42857 61.42857,-1.07143 61.42857,-1.07143"
|
|
48
|
+
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
49
|
+
<path
|
|
50
|
+
id="use3901"
|
|
51
|
+
d="m 211.61272,692.51851 21.41119,-21.68926"
|
|
52
|
+
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
53
|
+
<path
|
|
54
|
+
sodipodi:nodetypes="csc"
|
|
55
|
+
id="use3903"
|
|
56
|
+
d="m 162.81474,684.16315 c 0,0 28.57143,-61.42857 62.14286,0 33.57143,61.42857 61.42857,-1.07143 61.42857,-1.07143"
|
|
57
|
+
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
|
58
|
+
</g>
|
|
59
|
+
</svg>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="interpolation.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="45.254834"
|
|
28
|
+
inkscape:cx="6.7064659"
|
|
29
|
+
inkscape:cy="6.9053397"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:none;fill-opacity:0.817241;stroke:#0000ff;stroke-width:0.491568;stroke-opacity:1"
|
|
38
|
+
d="M 1.5357954,12.746841 C 4.8297261,12.703705 6.368815,12.138784 7.0563137,11.270878 7.9782076,10.10707 7.7861718,9.9142696 8.2539104,8.4975778 8.7771934,6.591291 9.1289541,5.3569567 9.1289541,5.3569567 c 0,0 0.5793513,-1.7719112 1.1464439,-2.4525451 0.567092,-0.6806339 1.781134,-1.6705802 1.781134,-1.6705802"
|
|
39
|
+
id="path32265-5"
|
|
40
|
+
sodipodi:nodetypes="cszczc" />
|
|
41
|
+
<circle
|
|
42
|
+
cx="11.845522"
|
|
43
|
+
cy="1.1938716"
|
|
44
|
+
r="0.50227541"
|
|
45
|
+
id="circle20-2-2-2"
|
|
46
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
47
|
+
<circle
|
|
48
|
+
cx="8.4499893"
|
|
49
|
+
cy="7.9330654"
|
|
50
|
+
r="0.50227541"
|
|
51
|
+
id="circle24-6-1"
|
|
52
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
53
|
+
<circle
|
|
54
|
+
cx="6.4217043"
|
|
55
|
+
cy="11.779975"
|
|
56
|
+
r="0.61591756"
|
|
57
|
+
id="circle26-0-3"
|
|
58
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d40000;stroke-width:0.205306" />
|
|
59
|
+
<circle
|
|
60
|
+
cx="9.5695219"
|
|
61
|
+
cy="4.0612893"
|
|
62
|
+
r="0.61591756"
|
|
63
|
+
id="circle26-0-3-5"
|
|
64
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d40000;stroke-width:0.205306" />
|
|
65
|
+
<circle
|
|
66
|
+
cx="1.8394529"
|
|
67
|
+
cy="12.732261"
|
|
68
|
+
r="0.50227541"
|
|
69
|
+
id="circle28-1-1-0"
|
|
70
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
71
|
+
</svg>
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="level.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="45.254834"
|
|
28
|
+
inkscape:cx="7.1042134"
|
|
29
|
+
inkscape:cy="7.236796"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<rect
|
|
37
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.549989"
|
|
38
|
+
id="rect28089-7-6"
|
|
39
|
+
width="0.56253999"
|
|
40
|
+
height="11.990077"
|
|
41
|
+
x="-8.0381413"
|
|
42
|
+
y="1.0049622"
|
|
43
|
+
transform="rotate(-90)" />
|
|
44
|
+
<rect
|
|
45
|
+
style="fill:#b3b3b3;fill-opacity:0.817241;stroke-width:1.41058"
|
|
46
|
+
id="rect28089-7-6-8"
|
|
47
|
+
width="3.7003264"
|
|
48
|
+
height="11.990077"
|
|
49
|
+
x="-7.4756012"
|
|
50
|
+
y="1.0049622"
|
|
51
|
+
transform="rotate(-90)" />
|
|
52
|
+
<rect
|
|
53
|
+
style="fill:#b3b3b3;fill-opacity:0.817241;stroke-width:1.41058"
|
|
54
|
+
id="rect28089-7-6-8-8"
|
|
55
|
+
width="3.7003264"
|
|
56
|
+
height="11.990077"
|
|
57
|
+
x="-11.732762"
|
|
58
|
+
y="1.0049622"
|
|
59
|
+
transform="rotate(-90)" />
|
|
60
|
+
<path
|
|
61
|
+
id="path1-6"
|
|
62
|
+
style="fill:#0abc2e;fill-opacity:1;stroke-width:0.45059"
|
|
63
|
+
d="M 10.222915,13.302352 V 10.019377 H 9.486588 c -0.102483,0 -0.176543,-0.04778 -0.222657,-0.1425786 -0.04355,-0.094794 -0.03342,-0.1822971 0.0332,-0.261719 L 10.527598,8.14047 c 0.04611,-0.056363 0.108076,-0.085937 0.187499,-0.085937 0.07942,0 0.143337,0.029574 0.189452,0.085937 l 1.228518,1.4746094 c 0.06918,0.081984 0.08126,0.1694869 0.03516,0.261719 -0.04612,0.09479 -0.120179,0.1425786 -0.22266,0.1425786 h -0.738281 v 3.282975 z"
|
|
64
|
+
sodipodi:nodetypes="ccscccscccsccc" />
|
|
65
|
+
<path
|
|
66
|
+
id="path1-6-7"
|
|
67
|
+
style="fill:#0abc2e;fill-opacity:1;stroke-width:0.45059"
|
|
68
|
+
d="m 2.7896077,2.2092127 v 3.2829748 h -0.736327 c -0.102483,0 -0.176543,0.047784 -0.222657,0.1425781 -0.04355,0.094794 -0.03342,0.1822969 0.0332,0.2617187 l 1.230467,1.4746094 c 0.04611,0.056363 0.108076,0.085937 0.187499,0.085937 0.07942,0 0.143337,-0.029574 0.189452,-0.085937 l 1.228518,-1.4746094 c 0.06918,-0.081984 0.08126,-0.1694869 0.03516,-0.2617187 -0.04612,-0.094793 -0.120179,-0.1425781 -0.22266,-0.1425781 H 3.7739787 V 2.2092127 Z"
|
|
69
|
+
sodipodi:nodetypes="ccscccscccsccc" />
|
|
70
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="lowpass.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview10"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="29.714286"
|
|
27
|
+
inkscape:cx="4.3245192"
|
|
28
|
+
inkscape:cy="3.6514423"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1009"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg8"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<path
|
|
38
|
+
d="m 12.891016,2.2675747 v 9.4648513 c 0,0.650708 -0.623757,1.183105 -1.386123,1.183105 H 2.495105 c -0.7623667,0 -1.3861213,-0.532397 -1.3861213,-1.183105 V 2.2675747 c 0,-0.6507092 0.6237546,-1.1831059 1.3861213,-1.1831059 h 9.009788 c 0.762366,0 1.386123,0.5323967 1.386123,1.1831059 z"
|
|
39
|
+
id="path2-7"
|
|
40
|
+
style="fill:#90f9a5;fill-opacity:1;stroke-width:1.10914" />
|
|
41
|
+
<g
|
|
42
|
+
id="g2-8"
|
|
43
|
+
style="stroke-width:6;stroke-dasharray:none"
|
|
44
|
+
transform="matrix(0.06942199,0,0,0.06942199,19.39542,-8.7375642)">
|
|
45
|
+
<path
|
|
46
|
+
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
47
|
+
d="m -240.65258,203.78557 c 0,0 28.57143,-61.42858 62.14286,0 33.57143,61.42856 61.42857,-1.07143 61.42857,-1.07143"
|
|
48
|
+
id="path2876"
|
|
49
|
+
sodipodi:nodetypes="csc" />
|
|
50
|
+
<path
|
|
51
|
+
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
52
|
+
d="m -191.24442,216.2328 21.41119,-21.68926"
|
|
53
|
+
id="path2878" />
|
|
54
|
+
<path
|
|
55
|
+
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
56
|
+
d="m -240.0424,249.87743 c 0,0 28.57143,-61.42856 62.14286,0 33.57143,61.42857 61.42857,-1.07143 61.42857,-1.07143"
|
|
57
|
+
id="path2876-0"
|
|
58
|
+
sodipodi:nodetypes="csc" />
|
|
59
|
+
</g>
|
|
60
|
+
</svg>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="morphology.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="42.274884"
|
|
28
|
+
inkscape:cx="7.0845848"
|
|
29
|
+
inkscape:cy="7.0136207"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<g
|
|
37
|
+
style="fill:#333333;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
38
|
+
transform="matrix(-0.1347851,0,0,-0.1347851,13.065306,13.06544)"
|
|
39
|
+
id="g3">
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
<path
|
|
43
|
+
d="m 86.002,22.879 c -1.748,-1.9 -4.466,-2.621 -6.928,-1.835 -1.712,0.547 -3.109,1.701 -3.935,3.25 -0.808,1.516 -1.834,2.652 -3.05,3.375 l -0.874,0.52 c -2.791,1.661 -6.563,1.509 -9.171,-0.365 l -0.005,0.007 c -1.668,-1.185 -3.475,-2.153 -5.388,-2.866 -1.389,-0.888 -2.216,-2.351 -2.216,-3.931 v -0.333 c 0,-1.205 0.51,-2.411 1.437,-3.396 2.072,-2.204 3.062,-5.203 2.717,-8.228 -0.534,-4.701 -4.336,-8.491 -9.038,-9.013 -2.926,-0.321 -5.848,0.607 -8.023,2.554 -2.176,1.948 -3.424,4.739 -3.424,7.658 0,2.621 0.99,5.117 2.787,7.029 0.926,0.985 1.437,2.191 1.437,3.395 v 0.284 c 0,1.591 -0.809,3.093 -2.117,3.944 -0.964,0.355 -1.9,0.776 -2.806,1.252 l -0.003,-0.005 c -2.899,1.567 -6.666,1.293 -9.163,-0.665 l -0.8,-0.626 c -1.112,-0.871 -1.985,-2.129 -2.594,-3.738 -0.621,-1.642 -1.86,-2.964 -3.488,-3.725 -2.339,-1.095 -5.128,-0.726 -7.104,0.936 -1.594,1.34 -2.487,3.282 -2.452,5.327 0.035,2.046 0.978,3.942 2.587,5.202 0.958,0.75 2.101,1.225 3.307,1.372 1.717,0.21 3.181,0.781 4.35,1.697 l 0.632,0.495 c 2.494,1.954 3.687,5.627 2.837,8.734 l 0.009,0.002 c -0.225,0.88 -0.41,1.774 -0.534,2.682 l -0.022,0.175 c -0.592,1.48 -1.82,2.552 -3.306,2.879 l -0.325,0.072 c -1.174,0.259 -2.462,0.02 -3.626,-0.673 -2.597,-1.55 -5.738,-1.871 -8.62,-0.884 -4.476,1.533 -7.36,6.06 -6.857,10.766 0.312,2.925 1.85,5.581 4.219,7.286 2.37,1.705 5.364,2.324 8.216,1.696 2.56,-0.563 4.785,-2.067 6.265,-4.233 0.763,-1.117 1.83,-1.874 3.006,-2.133 l 0.278,-0.061 c 1.538,-0.341 3.171,0.119 4.284,1.199 1.126,1.748 2.455,3.311 3.939,4.678 2.297,2.126 3.171,5.745 2.121,8.829 l -0.328,0.962 c -0.456,1.338 -1.354,2.577 -2.671,3.683 -1.345,1.128 -2.185,2.734 -2.366,4.523 -0.26,2.569 1.007,5.08 3.228,6.397 1.086,0.643 2.298,0.971 3.511,0.971 0.786,0 1.573,-0.137 2.328,-0.416 1.919,-0.709 3.397,-2.225 4.057,-4.16 0.392,-1.151 0.462,-2.386 0.204,-3.574 -0.369,-1.69 -0.313,-3.26 0.166,-4.666 l 0.26,-0.76 c 1.076,-3.159 3.853,-5.425 6.909,-5.637 v -0.001 c 2.22,-0.127 4.396,-0.554 6.47,-1.269 0.69,-0.238 1.397,-0.528 2.213,-0.911 1.495,-0.252 3.016,0.237 4.1,1.318 l 0.201,0.201 c 0.851,0.851 1.342,2.065 1.384,3.417 0.081,2.623 1.147,5.088 3,6.941 1.93,1.931 4.553,3.01 7.27,3.01 0.188,0 0.377,-0.005 0.565,-0.016 2.914,-0.161 5.64,-1.57 7.479,-3.867 2.957,-3.694 2.965,-9.062 0.019,-12.765 -1.896,-2.383 -4.717,-3.803 -7.74,-3.896 -1.353,-0.042 -2.567,-0.533 -3.418,-1.384 l -0.236,-0.236 c -1.057,-1.058 -1.518,-2.597 -1.245,-4.14 1.832,-3.914 2.563,-8.2 2.112,-12.404 -0.021,-0.197 -0.053,-0.391 -0.078,-0.586 l 0.009,-10e-4 c -0.449,-3.214 1.219,-6.831 3.881,-8.415 l 0.69,-0.411 c 1.259,-0.749 2.76,-1.128 4.46,-1.128 0.024,0 0.048,0 0.071,0 1.226,-0.005 2.41,-0.317 3.456,-0.938 1.756,-1.045 2.933,-2.805 3.23,-4.829 0.297,-2.024 -0.341,-4.065 -1.75,-5.598 z m -43,28.479 c -4.809,0 -8.721,-3.912 -8.721,-8.721 0,-4.809 3.912,-8.721 8.721,-8.721 4.808,0 8.721,3.912 8.721,8.721 0,4.809 -3.913,8.721 -8.721,8.721 z"
|
|
44
|
+
style="opacity:1;fill:#333333;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
45
|
+
stroke-linecap="round"
|
|
46
|
+
id="path3" />
|
|
47
|
+
|
|
48
|
+
</g>
|
|
49
|
+
</svg>
|