Blend Between Multiple Images in JupyterLab.
Project description
Jupyter compare_view
Blend between multiple images using a cell magic in JupyterLab using compare_view.
This project was called jupyter-splitview before.
Installation
pip install jupyter_compare_view
Example
import jupyter_compare_view
%%compare
from skimage import data
from skimage.color import rgb2gray
import matplotlib.pyplot as plt
img = data.chelsea()
grayscale_img = rgb2gray(img)
plt.imshow(img)
plt.axis("off")
plt.show()
plt.imshow(grayscale_img, cmap="gray")
plt.axis("off")
plt.show()
Another example:
%%compare --config '{"start_mode": "horizontal","start_slider_pos": 0.73}'
plt.imshow(img)
plt.axis("off")
plt.show()
plt.imshow(grayscale_img, cmap="gray")
plt.axis("off")
plt.show()
The split view widget is still responsive after closing and reopening the notebook without running the cell again.
Notebook arguments
(Might still change in future)
-
--config '{"start_mode": "horizontal"}'
will init the compare-view in horizontal slider mode. -
--config '{"circle_size": 30}'
the circle size is now 30 pixel in circle mode. -
--config '{"show_slider": false}'
will hide the slider bar. -
--config '{"start_slider_pos": 0.73}'
will set the slider start position to 73%.- Removed in 0.1.1:
--position 73%
will no longer the slider start position to 73%.
- Removed in 0.1.1:
-
--config '{"start_mode": "horizontal","start_slider_pos": 0.73}'
will both set the start mode to horizontal and set the slider position -
--height 220
will set the height to 220 pixel. -
When
--height
is not provided, the default height of the widget is 300 pixel. -
--height auto
will set the height by the value of the first image's resolution in vertical direction. -
The widget's width will always be adjusted automatically.
Notebook formatting
Formatting with black can be done this way:
pip install 'black[jupyter]'
black --python-cell-magics compare compare_view_magic.ipynb
Developer Installation
git clone --recurse https://github.com/Octoframes/jupyter_compare_view
(Note: In case that the repo was already cloned e.g. with the GitHub Desktop client, the GitHub submodule has to be loaded viagit submodule update --init --recursive
)poetry install
Note: The IPython extension autoreload
reloads modules before every cell execution. Very useful when debugging the %%capture
cell magic!
Just add these lines into the first jupyter cell.
%load_ext autoreload
%autoreload 2
import jupyter_compare_view
Changelog
0.1.4
%%compare
is now%%splity
.%%splity
is deprecated.- Update examples
0.1.3
- octoframes github actions setup
0.1.2
- Move the repo from kolibril13/jupyter-spitview to octoframes/jupyter_compare_view
- Rename all references
0.1.1
- Drop the github.com/NUKnightLab/juxtapose backend and replace it with github.com/Octoframes/compare_view.
- Implement horizontal slider
- Implement Round Mask
0.1.0
- Update dependencies
- Update JupyterLite version
- Fix: in JupyterLite, a figure has to be explicitly called by plt.show()
- Better installation workflow
0.0.8
- Fixing problem with cell id and notebook reloading
- Experimentally lowering the dependencies to
ipython = ">=6.0.0"
andipykernel = ">=5.0.0"
so that jupyterlite will work hopefully.
0.0.7
- Rewrite of the import of JavaScript and CSS to make it more robust when closing and opening the notebook
- First attempt to add a JupyterLite example.
0.0.6
Fix poetry workflow
0.0.5
- Ship the javascript directly with the package, so no internet connection is required
- use jinja2 to save HTML in separate file
- load stylesheet and javascript only once in the beginning, and not in every cell that contains the splitview widget.
0.0.4
- New
--height
parameter
0.0.3
- default slider position
- updated minimal example
- internal code restructuring and formatting
- Handle import in non jupyter context
0.0.2
- save images in base64 strings and don't load images to disk (increases package security).
0.0.1
- First release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for jupyter_compare_view-0.1.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9da11dedeed132b0d6b942d393d8422262fa00fa41612091ad1f4e7c036d41d0 |
|
MD5 | 176f046f70f70a699c06e3aa5e9f236f |
|
BLAKE2b-256 | fea11dc03b8e979253817be495d39a558ecd24e07c309ec69f6d62a7b1cef958 |
Hashes for jupyter_compare_view-0.1.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 536c70b53a4402717a9b9116fcfd1effb41433871e46a19112dcf06eb46aac27 |
|
MD5 | dc870ce5d76c9f0c041c409059d38410 |
|
BLAKE2b-256 | e997e329f7e6f663266ca99f57bfc7818088f7d11910ab64aedff57b3d40d720 |