fullseye

結果を人が読める図にする

できること

パネルを並べた図、寸法や矢印の注釈、高さの疑似カラー、SDF から起こした立体のレンダリングまで、fullseye 自身の op で作れます。外部の作図ライブラリを挟まずに、出力そのものを図にできます。

What it does

Panel grids, dimension and pointer annotations, height pseudo-colour, and a full SDF renderer — all from Fullseye operators, so a result becomes a figure without a plotting library in between.

向くところ / 向かないところ

向く: 報告書、記事、Studio の画面、そのまま貼れる図。

向かない: ★疑似カラーの選び方で無い境目が見えますpoc_colormap_readability が、その「無い境目」を数え、崖を先に当てています。★annotate_figure_gridletters=True(a) を自動で付けるので、自分でも書くと二重になります。

最初の 1 本

import fullseye as fs
import numpy as np

h = np.linspace(0, 1, 64)[None, :] * np.ones((64, 1))
img = fs.colorize_height(h)
print('カラー画像', np.asarray(img).shape)

裏づけ