All Projects → mznmel → sora

mznmel / sora

Licence: MIT license
A simple library to display images in Jupyter notebooks

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to sora

tensorflow-bicubic-downsample
tf.image.resize_images has aliasing when downsampling and does not have gradients for bicubic mode. This implementation fixes those problems.
Stars: ✭ 23 (+53.33%)
Mutual labels:  images
gendesk
🌿 Generate .desktop files and download .png icons by specifying a minimum of information
Stars: ✭ 101 (+573.33%)
Mutual labels:  utility
calculate-aspect-ratio
📐 A simple utility function, and command line utility, for calculating an aspect ratio based on width and height.
Stars: ✭ 43 (+186.67%)
Mutual labels:  utility
WinDev-Utility
A utility for windows developers
Stars: ✭ 17 (+13.33%)
Mutual labels:  utility
apint
Arbitrary precision integers library.
Stars: ✭ 23 (+53.33%)
Mutual labels:  utility
imgs-upload-srv
【Released】🌁一款以图片管理为核心的图床。在众多上传的图片中管理自己的图片,分类它们,贴上标签...以便以后精确管理。提供简单分享&在线外链("仅存储"&UI2.x功能正在进行中)。🌹
Stars: ✭ 73 (+386.67%)
Mutual labels:  images
wallup-android
Hand curated Images & 'Auto Wallpaper'
Stars: ✭ 30 (+100%)
Mutual labels:  images
cybernode-archive
🚀 Manager of docker images for cybernomics
Stars: ✭ 20 (+33.33%)
Mutual labels:  images
Walt
🎬 A Swift 3 library for creating gifs and videos from a series of images
Stars: ✭ 44 (+193.33%)
Mutual labels:  images
react-pendulum
A React Context utility library.
Stars: ✭ 15 (+0%)
Mutual labels:  utility
unity-scene-view-copier
Makes positioning Cameras in Unity much easier. 🎥
Stars: ✭ 22 (+46.67%)
Mutual labels:  utility
toastify
🍞A commandline tool that shows desktop notifications using notify-rust
Stars: ✭ 60 (+300%)
Mutual labels:  utility
GPUUtilization
measure GPU hardware utilization on iOS Devices
Stars: ✭ 102 (+580%)
Mutual labels:  utility
android-doc-picker
A simple and easy to use documents Picker android library. Choose any documents like pdf, ppt, text, word or media files from your device
Stars: ✭ 37 (+146.67%)
Mutual labels:  images
codec
Encode keys, values and range options, with built-in or custom encodings.
Stars: ✭ 27 (+80%)
Mutual labels:  utility
hermitage
Service that provides storage, delivery and modification of your images
Stars: ✭ 33 (+120%)
Mutual labels:  images
react-simple-image-viewer
Simple image viewer component for React
Stars: ✭ 44 (+193.33%)
Mutual labels:  images
wp-term-images
Images for categories, tags, and other taxonomy terms
Stars: ✭ 34 (+126.67%)
Mutual labels:  images
lambda
Minecraft utility mod coded in Kotlin
Stars: ✭ 389 (+2493.33%)
Mutual labels:  utility
Duplicate-Image-Finder
difPy - Python package for finding duplicate or similar images within folders
Stars: ✭ 187 (+1146.67%)
Mutual labels:  images

sora (صورة)

Sora means image/picture in Arabic. It is a simple library to display and embed images in Jupyter notebooks. Check out the example.ipynb notebook to see the results.

Why?

Because displaying images in Jupyter should be easy, and using matplotlib for this task is not cool.

Installation

pip install sora

Usage

from sora import sora

# Display a single image from a file:
sora('./test.jpg')

# Display all the images in a directory:
sora('./images/')


import tensorflow as tf
(x, _), (_, _) = tf.keras.datasets.cifar10.load_data()

# Display an image from a numpy array (ndarray):
sora(x[0])

# Display a collection of images from a numpy array (ndarray)
sora(x[0:10])

# You can also customize  the grid
sora(x[0:100], cell_width=42, cell_height=42, items_per_row=10)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].