Skip to content

ianarawjo/notate-jupyter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notate (Jupyter Notebook Extension)

1. Tear open HTML canvases and draw on them.

Use Ctrl+\ (Backslash) to inject a canvas at the cursor position in the selected cell. Draw on it: A handwritten sum equation.

2. Canvases are auto-passed to Python as 2d NumPy arrays (images) upon run.

In-line, canvases act as variable names. On running the cell, silently injected code sets the variables equal to NumPy image data. (This performs a number of imports: base64, numpy as np, io.BytesIO, and PIL.Image. If you pass the image as a single argument to a function (e.g. foo(canvas)) it will also pass the locals() dict as an added '.locals' attribute of the nparray object.)

3. Do what you want with the output.

Pass handwritten digits to an MNIST recognizer for all I care! Here's an example of a magical QCR function recognizing a handwritten quantum circuit (function not included):

A handwritten quantum circuit magically recognized.

And here's an obligatory MNIST example (see examples/ folder for more):

Passing canvases of numbers 1 2 3 through a Keras recognizer.

Extra features

  • You can copy+paste canvases like you would text.
  • Experimental: You can also paste images and they will be loaded into a canvas. You could, for instance, set a variable equal to an image copied from Google Images.
  • Drag right/bottom sides of canvas to resize.
  • Experimental: When moused over the resize area, click (without moving the cursor) to open a modal dialog and enter width+height pixel values.
  • Click on a canvas to enter full-screen view. It contains a toolbar with basic drawing operations, including undo/redo. Click off the view to minimize:

Fullscreen mode, with a toolbar on the left hand side of the canvas and standard operations like draw rect, circle, line, eraser, undo, redo, and trash.

Install guide

  1. Install Jupyter Notebook Extensions.
  2. Find the nbextensions folder. On Mac, it's in /Users/yourusername/Library/Jupyter.
  3. Place the notate-jupyter folder inside.
  4. If you had Jupyter Notebook open, restart it. On the Jupyter Home page, click the Nbextensions tab. Click 'Notate' to enable.

Required libraries

Relatedly, ensure your namespace doesn't use names Image, BytesIO, or base64 except where imported from the PIL, io, and base64 libraries. Note that I cannot guarantee compatibility with other extensions.

Mileage may vary. Tested on Google Chrome v91.0 with MacOS.

About

Tear open drawing canvases inside Jupyter code. In Python, read the canvases as NumPy image data.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published