Capstone — AI Signature Detection & Cropper#
Objective#
Process scanned documents to automatically detect, crop, and extract signatures using zero-shot vision models.
Requirements#
- Use Grounding DINO to detect the bounding box of “handwritten signature” on document images.
- Use OpenCV to crop the image based on the bounding box.
- Pass the cropped image to a local Ollama vision model (like LLaVA) to verify it is indeed a signature.
- Save validated signatures to an output directory.
Deliverables#
- A Python script that processes a folder of test images.
- The cropped output images.