plot op• データ種: なし → axes(引数だけで決まる op —— 画像やデータの入力を取らない)
• 呼び出し: import annotate; annotate.axes_transform(rect, xlim, ylim, invert_y=True, xscale='linear', yscale='linear') (または opsannotate.get("axes_transform"))
データ座標 → 画素座標の対応(閉形式)を作る。
`row は下向き という画像の事実と、y は上向き` というグラフの慣習の
ずれを、この 1 か所だけで吸収する。図のコードはこの辞書を持ち回る。
px = x0 + (x - xmin)/(xmax - xmin) * (w - 1)
py = y0 + (h - 1) - (y - ymin)/(ymax - ymin) * (h - 1) # invert_y
Parameters
----------
rect : (x, y, w, h)
描画域(左上基準、画素)。
xlim, ylim : (lo, hi)
データ範囲。lo == hi は傾きが無限大になるので ValueError。
lo > hi(反転軸)も許す ―― 深度やランクを上下逆に描くため。
invert_y : bool
True(既定)なら `ylim[0]` が下端に来る = 普通のグラフ。
False なら画像そのままの向き(上端が `ylim[0]`)。
xscale, yscale : {'linear','log'}
`'log'` は常用対数。範囲に 0 以下が入れば ValueError
(log 軸に 0 を渡して -inf を「端」として描く図は嘘になる)。
Returns
-------
dict
`{"rect", "xlim", "ylim", "invert_y", "xscale", "yscale"}`。
Raises
------
ValueError
矩形が不正、範囲が非有限か幅ゼロ、w か h が 2 未満、
未知の scale、log 軸で範囲に 0 以下。
• dataset_conventions — 学習データセット規約の知識 — COCO / YOLO / VOC と外観検査での落とし穴
• サンプルデータ カタログ(DL URL / ライセンス) — 2-D は skimage.data(BSD/public)+ 合成、3-D は実データ源(Stanford/PDS 等)の DL URL。
• 演算子の来歴・参考文献 — この op 族の元になった研究/手法の出典。
• アルゴリズムの正典(著者・年)と用途は上記ファミリ使い方ガイドに記載。
• annotate_gallery — py -3.11 examples/annotate_gallery.py
axes を入力に取れる)data_to_pixel · axes_frame · grid_lines · ticks · plot_series
plot)data_to_pixel · nice_ticks · axes_frame · grid_lines · ticks · plot_series
*Provenance: annotate.py — ANNOTATE operator registry. この per-op ノートは tools/opdocs.py md が自動生成(手編集しない)。*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.