PDF Signature Kontrolor

PDF Signature Kontrolor

Your files never leave your device. Processed locally. 100% private.

Unlocking Tool Engine...

Jak používat PDF Signature Kontrolor

Dokončete úlohu perfektně ve třech jednoduchých krocích.

1

Nahrát PDF

Přetáhněte svůj soubor PDF.

2

Analyzovat podpisy

Nástroj hledá podpisy v obrazové vrstvě a nesrovnalosti v polích pro podpis.

3

Zkontrolovat zprávu

Zpráva zvýrazňuje podezřelé podpisy s hodnocením rizika padělání.

Často kladené otázky

Vše, co potřebujete vědět o PDF Signature Kontrolor.

Co kontrola odhalí?

Obrazové podpisy vložené jako překrytí, nekonzistentní DPI a nesprávně zarovnaná pole podpisu.

Jedná se o forenzní analýzu?

Ne — poskytuje heuristické signály rizika, nikoli forenzní výsledky přípustné u soudu.

Nahrává se můj soubor?

Ne. Vše běží lokálně ve vašem prohlížeči.

Jaký je limit velikosti souboru?

Zpracovávejte soubory až do limitu paměti prohlížeče.

Co je to vysoké skóre rizika?

Skóre nad 80 naznačuje silné známky manipulace s podpisem na bázi obrázku.

How accurate is the detection?

The accuracy is high for exact or near-exact digital copies. OpenCV's normalized cross-correlation is a well-established computer vision technique used in industrial quality inspection and biometrics. False positives (legitimate signatures flagged as forgeries) can occur if two signers have virtually identical signatures or if the same person signed two documents identically. Always use this tool as a screening aid, not as definitive legal evidence.

What is template matching and how does OpenCV use it here?

Template matching is a computer vision technique that slides a template image across a larger image and measures how closely each region matches the template using a correlation score. OpenCV's matchTemplate function with the TM_CCOEFF_NORMED method produces a normalized score from -1 to +1, where +1 means a perfect match. The tool extracts the bottom 40% of one PDF page as the template and searches for it in the bottom 40% of the other — if the best match score exceeds the threshold, the signatures are structurally identical.