Skip to content

Instantly share code, notes, and snippets.

@FilipDominec
Last active January 26, 2023 12:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FilipDominec/14761052f42d80d283bd3adcf7eb5347 to your computer and use it in GitHub Desktop.
Save FilipDominec/14761052f42d80d283bd3adcf7eb5347 to your computer and use it in GitHub Desktop.
Easy plotting from 2D numpy array, supporting colormaps, embossing, (un)zooming etc. Depends on TkInter + numpy only.
#!/usr/bin/python3
#-*- coding: utf-8 -*-
# License: This code is released as public domain.
import time
import numpy as np
import tkinter as tk
X_SIZE, Y_SIZE = 200, 200
X_ZOOM, Y_ZOOM = 3, 3
def data2rgbarray(data,
zoom = [1,1],
cmap = ('viridis', 'inferno', 'rainbow', 'redblue', 'grey', 'sky')[5],
emboss = 4,
vmin = None,
vmax = None,
subtract_lines_median = False,
subtract_lines_mean = False):
## Preprocessing useful e.g. for scanning-probe microscopes
if subtract_lines_median: data -= np.median(data, axis=1, keepdims=True)
if subtract_lines_mean: data -= np.mean(data, axis=1, keepdims=True)
## Auto-scaling
if vmin is None: vmin = np.min(data)
if vmax is None: vmax = np.max(data)
data = (data-vmin)/(vmax-vmin)
## Converting numeric data to [coloured] image
rgb_lut = { 'grey': 255*np.array([[0, 1], [0, 1], [0, 1]]),
'viridis': 255*np.array([[.26,.22,.12,.36,.99], [.00,.32,.56,.78,.90], [.32,.54,.55,.38,.14]]),
'inferno': 255*np.array([[.00,.33,.72,.97,.98], [.04,.06,.21,.55,.99], [.01,.42,.33,.03,.64]]),
'rainbow': 255*np.array([[0,.0,.0,.9,1,.7,0], [0,.7,.8,.6,0,.0,0], [1,.7,.0,.0,0,.7,1]]),
'redblue': 255*np.array([[.0,.5,1.,1.,.5], [.0,.8,1.,.8,.0], [.5,1.,1.,.5,.0]]),
'sky': 255*np.array([[.00,.15,.29,.79,.99,.99], [.00,.16,.39,.48,.83,.99], [.00,.40,.47,.24,.33,.99]])}
lut_ticks = np.linspace(0, 1, len(rgb_lut[cmap][0])) # 1st value for negatives
image = np.dstack([np.interp(data, lut_ticks, rgb_lut[cmap][channel]) for channel in range(3)])
if emboss:
for channel in range(3):
image[:-1,:-1,channel] += np.nan_to_num((data[1:,1:] - data[:-1,:-1])*emboss*255)
image = np.clip(image, 0, 255)
## Zooming (replicating pixels)
image = np.repeat(image, max(1,int(zoom[0])), axis=0)
image = np.repeat(image, max(1,int(zoom[1])), axis=1)
## Unzooming (decimating pixels)
image = image[::max(1,int(1/zoom[0]+.5)), ::max(1,int(1/zoom[1]+.5))]
return image
def rgbarray2tkcanvas(image, canvas, image_id=1):
PPMimage = f'P6 {image.shape[1]} {image.shape[0]} 255 '.encode() + np.array(image, dtype=np.int8).tobytes()
TKPimage = tk.PhotoImage(width=image.shape[1], height=image.shape[0], data=PPMimage, format='PPM')
if hasattr(canvas, 'dummy_image_reference'): canvas.itemconfig(image_id, image=TKPimage)
else: canvas.create_image(canvas.winfo_width(), canvas.winfo_height()//3, image=TKPimage, anchor=tk.NW)
canvas.dummy_image_reference = TKPimage # prevents garbage collecting of the PhotoImage object
def my_laplace2d(data): # if scipy is not present
return 4* data[1:-1, 1:-1] - data[2:, 1:-1] - data[:-2, 1:-1] - data[1:-1, 2:] - data[1:-1, :-2]
times = 0
time_ref = time.time()
image = None
def my_update_routine(): # simulating a ripple tank, updating the plot as fast as possible
global times
global time_ref
global data
global velocity_data
times+=1
if times%100==0:
frame.master.title(f"numpy->tkinter @ {times/(time.time()-time_ref):.1f} FPS")
times, time_ref = 0, time.time()
## Update wave equation, perhaps the preferred way if scipy present...
#from scipy.ndimage.filters import laplace
#velocity_data -= laplace(data)
## Update wave equation, requiring only numpy
lapl = my_laplace2d(data)
velocity_data[1:-1, 1:-1] -= my_laplace2d(data)
data = data + velocity_data*.03
# Any numpy operation possible
if not times%100: velocity_data[20:150,20:50] = data[20:150,20:50] = 0
## Update image
image = data2rgbarray(data, zoom=[X_ZOOM,Y_ZOOM], vmax=vmax, vmin=-vmax, cmap='viridis', emboss=3.)
rgbarray2tkcanvas(image=image, canvas=canvas)
root.after(1, my_update_routine) # scheduling tkinter to run next update after 1 ms
## Prepare some initial data (smoothed noise)
np.random.seed(seed=42)
data = np.random.random((X_SIZE, Y_SIZE))
data -= np.mean(data)
data = np.pad(data, 1)
#import scipy.ndimage.filters # (the preferred way, if scipy present)
#data = scipy.ndimage.filters.gaussian_filter(data, sigma=12) +\
#scipy.ndimage.filters.gaussian_filter(data, sigma=3)*.3
for x in range(10):
data[1:-1, 1:-1] = (8*data[1:-1, 1:-1] - my_laplace2d(data)) / 8
#data = np.pad(data,[[1,1],[1,1]])
velocity_data = np.zeros_like(data)
vmax = max(np.max(data), -np.min(data)) # fixed symmetric color range
## Build the GUI
root = tk.Tk()
root.geometry(f"{X_SIZE*X_ZOOM+5}x{Y_SIZE*Y_ZOOM+5}")
frame = tk.Frame()
frame.pack(fill=tk.BOTH, expand=True)
canvas = tk.Canvas(frame)
canvas.pack(fill=tk.BOTH, expand=True, anchor=tk.CENTER)
#print (time.time(), flush=1)
my_update_routine()
#canvas.create_line(250, 200, 250, 250, 200, 250, 250, 200) # drawings stay atop
root.mainloop()
@FilipDominec
Copy link
Author

FilipDominec commented Dec 3, 2021

The example showing a ripple tank (with viridis colormap):

screen03 jpg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment