mirror of
https://github.com/wiltodelta/remove-ai-watermarks.git
synced 2026-08-07 06:28:36 +02:00
171 lines
6.7 KiB
Python
171 lines
6.7 KiB
Python
"""LibLibAI visible watermark detector/localizer.
|
|
|
|
LibLibAI (哩布哩布AI, USCC 91110105MACJ6K1C8A) stamps its generations with a
|
|
white triangle logo + "LibLibAI" latin wordmark at **bottom-center** (not a
|
|
corner -- the locate box is horizontally centered). Detection matches the
|
|
bundled font-rendered "LibLibAI" silhouette (the triangle logo is NOT rendered
|
|
-- logos vary, the wordmark discriminates); removal is the shared **localize ->
|
|
fill** (the glyph blob covers logo + wordmark, both bright).
|
|
|
|
This module supplies only LibLibAI's tuned :class:`TextMarkConfig`
|
|
(``assets/liblib_alpha.png`` from ``scripts/render_vendor_silhouettes.py``,
|
|
never cut from an upload).
|
|
|
|
The detector uses an Arial-class synthetic silhouette, width-based geometry, a
|
|
strict confidence gate, and a minimum image size. The footprint includes both
|
|
the logo and wordmark.
|
|
"""
|
|
# The module-level _alpha_template / _glyph_silhouette / _template_match_score below
|
|
# are thin test-facing shims (imported by tests/), so pyright's src-only pass sees them
|
|
# as unused; the use is cross-module.
|
|
# pyright: reportUnusedFunction=false
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
from remove_ai_watermarks import _text_mark_engine
|
|
from remove_ai_watermarks._text_mark_engine import TextMarkConfig, TextMarkDetection, TextMarkEngine
|
|
|
|
if TYPE_CHECKING:
|
|
from pathlib import Path
|
|
|
|
from numpy.typing import NDArray
|
|
|
|
# Locate geometry as a fraction of the image WIDTH (measured basis). The box is
|
|
# horizontally centered (corner="bc") and covers the logo + wordmark with NCC
|
|
# slack around the measured 0.10 width.
|
|
WM_WIDTH_FRAC = 0.20
|
|
WM_HEIGHT_FRAC = 0.09
|
|
MARGIN_BOTTOM_FRAC = 0.02
|
|
|
|
# Glyph appearance: white wordmark on a usually-darker background (white
|
|
# top-hat), same overlay class as Doubao -- inherited, harmless because the
|
|
# tophat front-end turns these gates into weights.
|
|
MAX_SATURATION = 55
|
|
LOGO_MIN_LUMA = 150
|
|
TOPHAT_DELTA = 12
|
|
|
|
DETECT_MIN_COVERAGE = 0.04 # unused by the tophat front-end (kept for config parity)
|
|
# Calibrated against vendor and clean compatibility examples. The Arial-class
|
|
# silhouette separates the wordmark from generic Latin UI text.
|
|
DETECT_NCC_THRESHOLD = 0.42
|
|
|
|
# Detection-silhouette geometry (fraction of the frame width): the wordmark,
|
|
# measured 0.10 wide with aspect 0.26.
|
|
_ALPHA_WIDTH_FRAC = 0.10
|
|
_ALPHA_HEIGHT_FRAC = 0.026
|
|
|
|
# Tight ladder: the NCC comb is sharp in size (see runninghub_engine).
|
|
_LADDER = (0.9, 1.0, 1.1)
|
|
|
|
_CONFIG = TextMarkConfig(
|
|
name="LibLibAI",
|
|
asset_name="liblib_alpha.png",
|
|
corner="bc",
|
|
margin_floor=4,
|
|
width_frac=WM_WIDTH_FRAC,
|
|
height_frac=WM_HEIGHT_FRAC,
|
|
margin_x_frac=0.0, # unused for corner="bc" (horizontally centered)
|
|
margin_bottom_frac=MARGIN_BOTTOM_FRAC,
|
|
max_saturation=MAX_SATURATION,
|
|
logo_min_luma=LOGO_MIN_LUMA,
|
|
tophat_delta=TOPHAT_DELTA,
|
|
morph_open_size=5,
|
|
detect_min_coverage=DETECT_MIN_COVERAGE,
|
|
detect_ncc_threshold=DETECT_NCC_THRESHOLD,
|
|
detect_frontend="tophat",
|
|
scale_basis="width",
|
|
ladder=_LADDER,
|
|
alpha_width_frac=_ALPHA_WIDTH_FRAC,
|
|
alpha_height_frac=_ALPHA_HEIGHT_FRAC,
|
|
min_gw=8,
|
|
# STRICT ONLY: small cohort, the relaxed band is unmeasured.
|
|
provenance_ncc_factor=1.0,
|
|
)
|
|
|
|
LibLibDetection = TextMarkDetection
|
|
|
|
|
|
def _alpha_template() -> NDArray[Any] | None:
|
|
"""The bundled LibLibAI alpha template (float [0,1]), or None."""
|
|
return _text_mark_engine.load_alpha_template(_CONFIG.asset_name)
|
|
|
|
|
|
def _glyph_silhouette() -> NDArray[Any] | None:
|
|
"""Binary "LibLibAI" silhouette (255 = glyph) from the alpha map, or None."""
|
|
return _text_mark_engine.glyph_silhouette(_CONFIG.asset_name)
|
|
|
|
|
|
def _template_match_score(box_mask: NDArray[Any], scale_base: int) -> float:
|
|
"""TM_CCOEFF_NORMED of the LibLibAI glyph silhouette against ``box_mask``."""
|
|
return _text_mark_engine.template_match_score(box_mask, scale_base, _CONFIG)
|
|
|
|
|
|
class LibLibEngine(TextMarkEngine):
|
|
"""Detect/localize the visible LibLibAI wordmark (bottom-center; localize -> fill)."""
|
|
|
|
# Per-mark size floor prevents small generic icons from matching the wordmark.
|
|
_MIN_SHORT_SIDE = 480
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__(_CONFIG)
|
|
|
|
def detect(self, image: NDArray[Any] | None, *, provenance: bool = False) -> TextMarkDetection:
|
|
if image is None or not image.size or min(image.shape[:2]) < self._MIN_SHORT_SIDE:
|
|
return TextMarkDetection()
|
|
return super().detect(image, provenance=provenance)
|
|
|
|
def footprint_mask(
|
|
self, image: NDArray[Any] | None, *, force: bool = False, dilate: int | None = None
|
|
) -> NDArray[Any] | None:
|
|
"""Full-frame mask of the logo + wordmark, bounded by the detector's match box.
|
|
|
|
The base class's blob-bbox footprint is wrong in both directions here: the
|
|
blob bleeds UP into bright background structure (on the 768x1024 cohort
|
|
frame it reached y 931 and the fill ate the shirt's own print) and it does
|
|
not own the triangle logo anyway. The match box bounds the wordmark exactly
|
|
(that is what the NCC localized); the logo sits its own height to the LEFT
|
|
of the text (measured on the cohort zoom: logo ~1.0x the glyph height, gap
|
|
~0.3x), so the footprint is the match box extended left by ~1.3 heights.
|
|
"""
|
|
if image is None or image.size == 0:
|
|
return None
|
|
from remove_ai_watermarks import image_io, region_eraser
|
|
|
|
image = image_io.to_bgr(image)
|
|
h, w = image.shape[:2]
|
|
if h < 32 or w < 64:
|
|
return None
|
|
loc = self.locate(image)
|
|
bx, by, bw, bh = loc.bbox
|
|
if force:
|
|
rx1, ry1, rx2, ry2 = bx, by, min(w, bx + bw), min(h, by + bh)
|
|
else:
|
|
if not self.detect(image).detected:
|
|
return None
|
|
_, box = self._tophat_best(image, loc)
|
|
if box is None:
|
|
return None
|
|
gx0, gy0, gx1, gy1 = box
|
|
gh = gy1 - gy0 + 1
|
|
pad = max(3, int(0.25 * gh))
|
|
rx1 = max(0, bx + gx0 - int(1.3 * gh)) # the triangle logo, left of the text
|
|
ry1 = max(0, by + gy0 - pad)
|
|
rx2 = min(w, bx + gx1 + 1 + pad)
|
|
ry2 = min(h, by + gy1 + 1 + pad)
|
|
if rx1 >= rx2 or ry1 >= ry2:
|
|
return None
|
|
d = dilate if dilate is not None else max(3, int(0.02 * bw))
|
|
return region_eraser.boxes_to_mask((h, w), [(rx1, ry1, rx2 - rx1, ry2 - ry1)], dilate=d)
|
|
|
|
|
|
def load_image_bgr(path: str | Path) -> NDArray[Any]:
|
|
"""Read an image as BGR ndarray (helper for scripts/tests)."""
|
|
from remove_ai_watermarks import image_io
|
|
|
|
img = image_io.imread(path)
|
|
if img is None:
|
|
raise FileNotFoundError(f"Failed to read image: {path}")
|
|
return img
|