The flexible image display.
Project description
imshow
The Flexible Image Display
Imshow is a Python app to display images.
Imshow gives you:
- Fast and clean display via OpenGL backend;
- Flexibility via command-line and code interfaces;
- Customizability via plugin system.
Installation
python3 -m pip install imshow
Usage
Command-Line
imshow examples/*.jpg
imshow examples --recursive # --recursive (-r)
imshow examples -r --plugin tile --col 3 # --plugin (-p)
Python
import glob
import imgviz
import imshow
images = (imgviz.io.imread(filepath) for filepath in glob.glob("examples/*.jpg"))
imshow.imshow(images)
Builtin Plugins --plugin
(-p
)
-p base
(default)
imshow examples/*.jpg
imshow examples --recursive # auto-search image files
-p tile
imshow examples/*.jpg -p tile --col 3 --row 3
imshow examples/*.jpg -p tile --col 3
-p mark
imshow examples/*[0-9].jpg -p mark --mark-file examples/mark.txt
License
MIT
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
imshow-0.1.1.tar.gz
(20.4 MB
view hashes)
Built Distribution
imshow-0.1.1-py3-none-any.whl
(9.4 kB
view hashes)