annotate_table_layout — ANNOTATE paper op

資料種類:texttable

呼叫: import fullseye as fs; fs.ledger.annotate_table_layout(text, xy, anchor='lt', font_size=13, font_path=None, pad=6, col_gap=None, row_gap=0, align='auto', header=False, bold=False, italic=False, line_spacing=1.15)(要直接呼叫實作,import annotate; annotate.annotate_table_layout(text, xy, anchor='lt', font_size=13, font_path=None, pad=6, col_gap=None, row_gap=0, align='auto', header=False, bold=False, italic=False, line_spacing=1.15);從台帳取用則 opsannotate.get("annotate_table_layout"))

用法

> 該運算子的說明尚無譯文,以下照原文給出。

table(dict)を返す: タブ区切りの文字列をとして置く桁と行の位置。

行は `\n、桁は \t` で切る。桁幅は**指定されたサイズの実フォントで

1 セルずつ測った幅の最大**で決まる —— 文字数で数えると和文と英数字で

必ずずれるので、測る以外に正しくやりようがない。

Parameters

----------

text : str

タブ区切り。全行の桁数が同じであること(違えば ValueError)。

xy : (x, y)

`anchor` で指す位置(x=col, y=row)。

anchor : str

`'lt','ct','rt','lm','cm','rm','lb','cb','rb'` の 9 通り。

pad : int

表の内側余白 [px]。

col_gap : int or None

桁の間 [px]。None(既定)なら行高 ×0.6 を四捨五入するので、

フォントサイズを変えれば間隔も一緒に動く。

row_gap : int

行の間に足す [px] (0 なら行送りのまま)。

align : str or sequence

:data:TABLE_ALIGNS のいずれか、または桁ごとの並び。`"auto"`

(既定)はその桁の値がすべて数に見えるときだけ右そろえにする。

`header=True` なら見出し行は判定から外す。

header : bool

真なら 1 行目を見出しとして太字にし、下に罫を 1 本引く。

bold, italic : bool or int

合成字体(:func:_bold_px / :func:_italic_tile)。`header` の

太字はこれとは別で、見出し行にだけ掛かる。

Returns

-------

dict

``{"rect": (x,y,w,h), "ncols", "nrows", "col_w": [...], "col_x": [...],

"row_y": [...], "row_h", "col_gap", "align": [...], "header",

"rule_y": 見出しの罫の y(header が偽なら None),

"cells": [{"text","row","col","xy","width","bold"}]}``。

`col_x / row_y / cells[i]["xy"]` はすべて画像座標

Raises

------

ValueError

桁数が行でそろわない / 空 / 未知の `align anchor` /

`align` の長さが桁数と違う。

Examples

--------

>>> import annotate

>>> lay = annotate.annotate_table_layout("名前\t値\nA\t1.5\nB\t22.25", (10, 10))

>>> lay["ncols"], lay["nrows"], lay["align"]

(2, 3, ['left', 'left'])

>>> lay2 = annotate.annotate_table_layout("名前\t値\nA\t1.5\nB\t22.25", (10, 10),

... header=True)

>>> lay2["align"] # 見出しを外すと 2 桁目は数だけ

['left', 'right']

詳細使用指南

figure_annotation 族使用指南

背景知識指南(該運算子背後的物理與規範)

dataset_conventions — 学習データセット規約の知識 — COCO / YOLO / VOC と外観検査での落とし穴

參考(範例資料・文獻)

• 範例資料目錄(下載 URL / 授權) —— 2-D 用 skimage.data(BSD/公有領域)加合成圖,3-D 給出真實資料源(Stanford/PDS 等)的下載 URL。

• 運算子來歷與參考文獻 —— 該運算子族所依據的研究/方法出處。

• 演算法的正典(作者・年份)與用途見上面的族使用指南

可執行的範例(實際呼叫該運算子並已驗證的樣例)

annotate_paper_tourpy -3.11 examples/annotate_paper_tour.py

型別可銜接的下一個運算子(可接受 table 作為輸入)

同類別(paper)

annotate_leader_layout · annotate_leader · annotate_markers · annotate_legend · annotate_dimension_layout · annotate_dimension · annotate_angle_layout · annotate_angle


*Provenance: annotate.py — ANNOTATE 運算子登記表。本條目由 tools/opdocs.py md 自動產生(請勿手動編輯)。*

© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.