├── .github └── workflows │ └── test_and_deploy.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── deploy.bat ├── docs ├── add_shapes_layer_screenshot.png ├── blobs.tif ├── blobs_timelapse.tif ├── demo.ipynb ├── draw_line_tool_screenshot.png ├── napari-plot-profile-screencast.gif ├── redraw_screenshot.png ├── split-channels.png └── topographical_view_screencast.gif ├── napari_plot_profile ├── __init__.py ├── _dock_widget.py ├── _functions.py └── _tests │ ├── __init__.py │ ├── test_dock_widget.py │ └── test_functions.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.github/workflows/test_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/.github/workflows/test_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/README.md -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/deploy.bat -------------------------------------------------------------------------------- /docs/add_shapes_layer_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/add_shapes_layer_screenshot.png -------------------------------------------------------------------------------- /docs/blobs.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/blobs.tif -------------------------------------------------------------------------------- /docs/blobs_timelapse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/blobs_timelapse.tif -------------------------------------------------------------------------------- /docs/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/demo.ipynb -------------------------------------------------------------------------------- /docs/draw_line_tool_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/draw_line_tool_screenshot.png -------------------------------------------------------------------------------- /docs/napari-plot-profile-screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/napari-plot-profile-screencast.gif -------------------------------------------------------------------------------- /docs/redraw_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/redraw_screenshot.png -------------------------------------------------------------------------------- /docs/split-channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/split-channels.png -------------------------------------------------------------------------------- /docs/topographical_view_screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/docs/topographical_view_screencast.gif -------------------------------------------------------------------------------- /napari_plot_profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/napari_plot_profile/__init__.py -------------------------------------------------------------------------------- /napari_plot_profile/_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/napari_plot_profile/_dock_widget.py -------------------------------------------------------------------------------- /napari_plot_profile/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/napari_plot_profile/_functions.py -------------------------------------------------------------------------------- /napari_plot_profile/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /napari_plot_profile/_tests/test_dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/napari_plot_profile/_tests/test_dock_widget.py -------------------------------------------------------------------------------- /napari_plot_profile/_tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/napari_plot_profile/_tests/test_functions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haesleinhuepf/napari-plot-profile/HEAD/tox.ini --------------------------------------------------------------------------------