1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Jupyter-lab + matplotlib でマウス位置の画像データのピクセル値を表示するメモ

Posted at

背景

画像データ(RGB もだが, 物理データやテンソルデータの画像など)のピクセル値を Jupyter-lab でお手軽ぺろっとやりたい

方法

Jupyter notebook と Jupyter-lab とは仕組みが違うようで, notebook のやり方は使えません(%matplotlib notebook, inline もだめだった)

matplotlib の interactive plot は仕組みが違うらしく(JS 出力なものを使う必要がある?) 2020 年 8 月 11 日時点の jupyter-lab では以下の方法のみ使えました.

ipympl と, jupyter-matplotlib 拡張をインストールが必要です.

$ jupyter labextension install @jupyter-widgets/jupyterlab-manager
$ jupyter labextension install jupyter-matplotlib

をします.

jupyterlab-manager は Jupyter-lab 上でも行えます.

sample

from stackoverflow

%matplotlib widget
import matplotlib.pyplot as plt
import numpy as np
import ipywidgets as wdg  # Using the ipython notebook widgets

# Create a random image
a = np.random.poisson(size=(12,15))
fig = plt.figure()
plt.imshow(a)

# Create and display textarea widget
txt = wdg.Textarea(
    value='',
    placeholder='',
    description='event:',
    disabled=False
)
display(txt)

# Define a callback function that will update the textarea
def onclick(event):
    txt.value = str(event)  # Dynamically update the text box above

# Create an hard reference to the callback not to be cleared by the garbage collector
ka = fig.canvas.mpl_connect('button_press_event', onclick)

Screenshot from 2020-08-12 14-35-05.png

Voila! :tada:

        @axlair/jupyterlab_vim v0.12.2  enabled  OK
        @jupyter-widgets/jupyterlab-manager v2.0.0  enabled  OK
        itkwidgets v0.27.0  enabled  OK
        jupyter-matplotlib v0.7.3  enabled  OK

zoom

shift + 左ドラッグで zoom in できます.
右ドラッグで zoom out できるようですが, 使い勝ってがいまいちです.

picker

picker のイベント登録で, いろいろ拡張できるでしょう.

jupyterlab で matplotlib のプロット図に picker を設定するメモ
https://qiita.com/syoyo/items/7644dbcd2f2cd84c02bb

picker などのイベントと組み合わせして, ユーザー指定した 4 角を colorchecker の枠に指定する, とかみたいな処理ができると想像できます.

ipywidgets interact との組み合わせ

一応 interact と組み合わせできるの確認しました.

しかし

# Create a random image
def bora(sx):
    a = np.random.poisson(size=(sx,15))
    fig = plt.figure()
    plt.imshow(a)

    # Create and display textarea widget
    txt = wdg.Textarea(
        value='',
        placeholder='',
        description='event:',
        disabled=False
    )
    display(txt)

    # Define a callback function that will update the textarea
    def onclick(event):
        txt.value = str(event)  # Dynamically update the text box above

    # Create an hard reference to the callback not to be cleared by the garbage collector
    ka = fig.canvas.mpl_connect('button_press_event', onclick)

interact(bora, sx=15)

な感じにすると, fig をたくさん開いているよ warning が出てしまいました.
適宜 close を呼ぶ必要がありそうです.

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?