Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4419c237b2 |
@@ -110,6 +110,62 @@ if HAS_NUMBA:
|
||||
acc[y, x] *= inv
|
||||
return acc
|
||||
|
||||
@nb.njit(cache=True, parallel=True, fastmath=True, boundscheck=False)
|
||||
def _jit_score_bitmap_greedy(
|
||||
spread: np.ndarray,
|
||||
dx: np.ndarray, dy: np.ndarray, bins: np.ndarray,
|
||||
bit_active: np.uint8,
|
||||
min_score: nb.float32,
|
||||
greediness: nb.float32,
|
||||
) -> np.ndarray:
|
||||
"""Score bitmap con early-exit greedy (no rescore background).
|
||||
|
||||
Per ogni pixel iteriamo le N feature; abortiamo non appena diventa
|
||||
impossibile raggiungere `min_required` count anche aggiungendo
|
||||
tutte le feature rimanenti. min_required = greediness * min_score * N.
|
||||
|
||||
greediness=0 → nessun early-exit (equivalente a kernel base).
|
||||
greediness=1 → exit non appena hits + remaining < min_score * N.
|
||||
Tipico: 0.7-0.9 → 2-4x speed-up senza perdere match.
|
||||
"""
|
||||
H, W = spread.shape
|
||||
N = dx.shape[0]
|
||||
acc = np.zeros((H, W), dtype=np.float32)
|
||||
if N == 0:
|
||||
return acc
|
||||
min_req = greediness * min_score * N
|
||||
inv_N = nb.float32(1.0 / N)
|
||||
for y in nb.prange(H):
|
||||
for x in range(W):
|
||||
hits = 0
|
||||
for i in range(N):
|
||||
b = bins[i]
|
||||
mask = np.uint8(1) << b
|
||||
if (bit_active & mask) == 0:
|
||||
# Nessun chance per questa feature
|
||||
if hits + (N - i - 1) < min_req:
|
||||
break
|
||||
continue
|
||||
ddy = dy[i]
|
||||
yy = y + ddy
|
||||
if yy < 0 or yy >= H:
|
||||
if hits + (N - i - 1) < min_req:
|
||||
break
|
||||
continue
|
||||
ddx = dx[i]
|
||||
xx = x + ddx
|
||||
if xx < 0 or xx >= W:
|
||||
if hits + (N - i - 1) < min_req:
|
||||
break
|
||||
continue
|
||||
if spread[yy, xx] & mask:
|
||||
hits += 1
|
||||
else:
|
||||
if hits + (N - i - 1) < min_req:
|
||||
break
|
||||
acc[y, x] = nb.float32(hits) * inv_N
|
||||
return acc
|
||||
|
||||
@nb.njit(cache=True, parallel=True, fastmath=True, boundscheck=False)
|
||||
def _jit_score_bitmap_rescored(
|
||||
spread: np.ndarray, # uint8 (H, W)
|
||||
@@ -185,6 +241,10 @@ if HAS_NUMBA:
|
||||
_jit_score_bitmap(spread, dx, dy, b, np.uint8(0xFF))
|
||||
bg = np.zeros((32, 32), dtype=np.float32)
|
||||
_jit_score_bitmap_rescored(spread, dx, dy, b, np.uint8(0xFF), bg)
|
||||
_jit_score_bitmap_greedy(
|
||||
spread, dx, dy, b, np.uint8(0xFF),
|
||||
np.float32(0.5), np.float32(0.8),
|
||||
)
|
||||
_jit_popcount_density(spread)
|
||||
|
||||
else: # pragma: no cover
|
||||
@@ -198,6 +258,9 @@ else: # pragma: no cover
|
||||
def _jit_score_bitmap_rescored(spread, dx, dy, bins, bit_active, bg):
|
||||
raise RuntimeError("numba non disponibile")
|
||||
|
||||
def _jit_score_bitmap_greedy(spread, dx, dy, bins, bit_active, min_score, greediness):
|
||||
raise RuntimeError("numba non disponibile")
|
||||
|
||||
def _jit_popcount_density(spread):
|
||||
raise RuntimeError("numba non disponibile")
|
||||
|
||||
@@ -246,6 +309,28 @@ def score_bitmap_rescored(
|
||||
return np.maximum(0.0, out).astype(np.float32)
|
||||
|
||||
|
||||
def score_bitmap_greedy(
|
||||
spread: np.ndarray, dx: np.ndarray, dy: np.ndarray, bins: np.ndarray,
|
||||
bit_active: int, min_score: float, greediness: float,
|
||||
) -> np.ndarray:
|
||||
"""Score bitmap con early-exit greedy. Per coarse-pass aggressivo.
|
||||
|
||||
Non applica rescore background: usare quando la scena ha basso clutter
|
||||
o quando si vuole mass-prune varianti via top-level rapidamente.
|
||||
"""
|
||||
if HAS_NUMBA and len(dx) > 0:
|
||||
return _jit_score_bitmap_greedy(
|
||||
np.ascontiguousarray(spread, dtype=np.uint8),
|
||||
np.ascontiguousarray(dx, dtype=np.int32),
|
||||
np.ascontiguousarray(dy, dtype=np.int32),
|
||||
np.ascontiguousarray(bins, dtype=np.int8),
|
||||
np.uint8(bit_active),
|
||||
np.float32(min_score), np.float32(greediness),
|
||||
)
|
||||
# Fallback: kernel base senza early-exit
|
||||
return score_bitmap(spread, dx, dy, bins, bit_active)
|
||||
|
||||
|
||||
def popcount_density(spread: np.ndarray) -> np.ndarray:
|
||||
if HAS_NUMBA:
|
||||
return _jit_popcount_density(np.ascontiguousarray(spread, dtype=np.uint8))
|
||||
|
||||
+22
-67
@@ -40,6 +40,7 @@ from pm2d._jit_kernels import (
|
||||
score_by_shift as _jit_score_by_shift,
|
||||
score_bitmap as _jit_score_bitmap,
|
||||
score_bitmap_rescored as _jit_score_bitmap_rescored,
|
||||
score_bitmap_greedy as _jit_score_bitmap_greedy,
|
||||
popcount_density as _jit_popcount,
|
||||
HAS_NUMBA,
|
||||
)
|
||||
@@ -574,8 +575,7 @@ class LineShapeMatcher:
|
||||
verify_threshold: float = 0.4,
|
||||
coarse_angle_factor: int = 2,
|
||||
scale_penalty: float = 0.0,
|
||||
pyramid_propagate: bool = True,
|
||||
propagate_topk: int = 8,
|
||||
greediness: float = 0.0,
|
||||
) -> list[Match]:
|
||||
"""
|
||||
scale_penalty: se > 0, riduce lo score per match a scala diversa da 1.0:
|
||||
@@ -647,36 +647,25 @@ class LineShapeMatcher:
|
||||
end = min(n, i + half + 1)
|
||||
neighbor_map[vi_c] = vi_sorted[start:end]
|
||||
|
||||
# Pruning varianti via top-level (parallelizzato).
|
||||
# Quando pyramid_propagate=True ritorna anche le top-K posizioni
|
||||
# del picco (in coord top-level) per restringere la fase full-res
|
||||
# a piccoli crop attorno ai candidati (vs intera scena).
|
||||
peaks_by_vi: dict[int, list[tuple[int, int, float]]] = {}
|
||||
# Pruning varianti via top-level (parallelizzato) - solo coarse.
|
||||
# greediness > 0: usa kernel greedy con early-exit (no rescore bg)
|
||||
# per il pruning. ~2-4x speed-up sul top con greediness=0.8.
|
||||
use_greedy_top = greediness > 0.0
|
||||
|
||||
def _top_score(vi: int) -> tuple[int, float]:
|
||||
var = self.variants[vi]
|
||||
lvl = var.levels[min(top, len(var.levels) - 1)]
|
||||
score = _jit_score_bitmap_rescored(
|
||||
spread_top, lvl.dx, lvl.dy, lvl.bin, bit_active_top,
|
||||
bg_cache_top[var.scale],
|
||||
)
|
||||
if score.size == 0:
|
||||
return vi, -1.0
|
||||
best = float(score.max())
|
||||
if pyramid_propagate and best > 0:
|
||||
# Top-K posizioni > top_thresh (max propagate_topk)
|
||||
flat = score.ravel()
|
||||
k = min(propagate_topk, flat.size)
|
||||
idx = np.argpartition(-flat, k - 1)[:k]
|
||||
peaks: list[tuple[int, int, float]] = []
|
||||
for i in idx:
|
||||
s = float(flat[i])
|
||||
if s < top_thresh * 0.7:
|
||||
continue
|
||||
yt, xt = int(i // score.shape[1]), int(i % score.shape[1])
|
||||
peaks.append((xt, yt, s))
|
||||
peaks_by_vi[vi] = peaks
|
||||
return vi, best
|
||||
if use_greedy_top:
|
||||
score = _jit_score_bitmap_greedy(
|
||||
spread_top, lvl.dx, lvl.dy, lvl.bin, bit_active_top,
|
||||
top_thresh, greediness,
|
||||
)
|
||||
else:
|
||||
score = _jit_score_bitmap_rescored(
|
||||
spread_top, lvl.dx, lvl.dy, lvl.bin, bit_active_top,
|
||||
bg_cache_top[var.scale],
|
||||
)
|
||||
return vi, float(score.max()) if score.size else -1.0
|
||||
|
||||
kept_coarse: list[tuple[int, float]] = []
|
||||
all_top_scores: list[tuple[int, float]] = []
|
||||
@@ -736,48 +725,14 @@ class LineShapeMatcher:
|
||||
for sc in unique_scales:
|
||||
bg_cache_full[sc] = _bg_for_scale(density_full, sc, 1)
|
||||
|
||||
# Margine in full-res attorno ad ogni peak top: copre incertezza
|
||||
# downsampling (sf_top px) + spread_radius + slack per NMS.
|
||||
propagate_margin = sf_top + self.spread_radius + max(8, nms_radius // 2)
|
||||
H_full, W_full = spread0.shape
|
||||
|
||||
def _full_score(vi: int) -> tuple[int, np.ndarray]:
|
||||
var = self.variants[vi]
|
||||
lvl0 = var.levels[0]
|
||||
if not pyramid_propagate or vi not in peaks_by_vi or not peaks_by_vi[vi]:
|
||||
# Path legacy: scansiona intera scena
|
||||
return vi, _jit_score_bitmap_rescored(
|
||||
spread0, lvl0.dx, lvl0.dy, lvl0.bin, bit_active_full,
|
||||
bg_cache_full[var.scale],
|
||||
)
|
||||
# Path piramide propagata: valuta solo crop locali attorno
|
||||
# alle posizioni dei picchi top-level (riproiettati a full-res).
|
||||
score_full = np.zeros((H_full, W_full), dtype=np.float32)
|
||||
mark = np.zeros((H_full, W_full), dtype=bool)
|
||||
bg = bg_cache_full[var.scale]
|
||||
for xt, yt, _s in peaks_by_vi[vi]:
|
||||
cx0 = xt * sf_top
|
||||
cy0 = yt * sf_top
|
||||
x_lo = max(0, cx0 - propagate_margin)
|
||||
x_hi = min(W_full, cx0 + propagate_margin + 1)
|
||||
y_lo = max(0, cy0 - propagate_margin)
|
||||
y_hi = min(H_full, cy0 + propagate_margin + 1)
|
||||
if x_hi <= x_lo or y_hi <= y_lo:
|
||||
continue
|
||||
if mark[y_lo:y_hi, x_lo:x_hi].all():
|
||||
continue
|
||||
# Crop spread + bg, valuta kernel sul crop
|
||||
spread_crop = np.ascontiguousarray(spread0[y_lo:y_hi, x_lo:x_hi])
|
||||
bg_crop = np.ascontiguousarray(bg[y_lo:y_hi, x_lo:x_hi])
|
||||
score_crop = _jit_score_bitmap_rescored(
|
||||
spread_crop, lvl0.dx, lvl0.dy, lvl0.bin,
|
||||
bit_active_full, bg_crop,
|
||||
)
|
||||
score_full[y_lo:y_hi, x_lo:x_hi] = np.maximum(
|
||||
score_full[y_lo:y_hi, x_lo:x_hi], score_crop,
|
||||
)
|
||||
mark[y_lo:y_hi, x_lo:x_hi] = True
|
||||
return vi, score_full
|
||||
score = _jit_score_bitmap_rescored(
|
||||
spread0, lvl0.dx, lvl0.dy, lvl0.bin, bit_active_full,
|
||||
bg_cache_full[var.scale],
|
||||
)
|
||||
return vi, score
|
||||
|
||||
candidates_per_var: list[tuple[int, np.ndarray]] = []
|
||||
raw: list[tuple[float, int, int, int]] = []
|
||||
|
||||
Reference in New Issue
Block a user