sun op• Datenarten: image2d → table
• Aufruf: import fullseye as fs; fs.ledger.sun_bloom_fit(image, threshold=0.97, ignore_top_rows=0, min_area=30, max_area_frac=0.15, min_rim_fraction=0.3) (die Implementierung direkt: import geocam; geocam.sun_bloom_fit(image, threshold=0.97, ignore_top_rows=0, min_area=30, max_area_frac=0.15, min_rim_fraction=0.3); aus dem Register: opsgeocam.get("sun_bloom_fit"))
> Für diesen Operator gibt es noch keine Übersetzung. Es folgt der Originaltext unverändert.
実写の太陽 = センサを飽和させるブルーム(円盤より大きい、露出で大きさが変わる、画像の縁や文字の帯で切れる)。
最大の飽和塊の縁に円を当てて中心を返す → table。重心は塊が切れると切れた側の反対へ偏る(実測 15 px)ので、
切れた縁(画像の外周と `ignore_top_rows` の帯に触れる画素)を捨てた残りの弧に代数的最小二乗(Kåsa 1976)で円を当てる。
`sun_pixel_position` は「詰まった小さな円盤」を前提にした合成向けの門で、実写の道路カメラでは局名の白い
文字・標識・白い車を太陽と読む(Fintraffic 天候カメラで 24/24 が誤検出、2026-09-21)。この op は太陽と決めない:
円の中心と半径・残差・切れの有無を返し、太陽かどうかは時刻どおりに動くかで決める
(`camera_orientation_from_sun_candidates`)。
Args:
image: (H, W) float、0〜1。
threshold: 飽和とみなす絶対値。
ignore_top_rows: 上端の何行を無視するか(局名などの文字の帯)。
min_area: 塊の最小画素数。
max_area_frac: 塊の最大面積(画像に対する比)—— 空全体が飛んだ写真を拒む。
min_rim_fraction: 切れていない縁が円周の何割以上要るか(これ未満は「切れすぎ」で ValueError)。
Returns:
table: `u / v(円の中心)/ r(半径 px)/ rms_px(縁の半径残差)/ area`(塊の画素数)/
`clipped(1 = 縁のどこかが切れている)/ rim_fraction / centroid_u / centroid_v`(比較用の重心)。
• Leitfaden zur Familie geocam
• Katalog der Beispieldaten (Download-URLs / Lizenzen) — 2-D nutzt skimage.data (BSD/Public Domain) plus synthetische Bilder, 3-D nennt Download-URLs echter Datenquellen (Stanford, PDS, …).
• Herkunft und Literatur der Operatoren — die Quellen der Forschung/Verfahren, auf denen diese Operatorfamilie beruht.
• Der kanonische Algorithmus (Autor, Jahr) und seine Anwendungen stehen im Familienleitfaden oben.
• (noch keine)
table als Eingabe)render_skyline_view · camera_orientation_from_skyline
sun)sun_position · sun_pixel_position · camera_orientation_from_sun · camera_orientation_from_sun_candidates
*Provenance: geocam.py — GEOCAM Operator-Registry. Diese Notiz wird von tools/opdocs.py md erzeugt (nicht von Hand bearbeiten).*
© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.