Makes the best attempt of recovering photos saved only in physical form into digital form.
- Python >= 3.5
- OpenCV2 (
pip install opencv-python) - Numpy (
pip install numpy)
Take high quality photos of your photos, one at a time, with a flat light source on a plain light colored background, as seen in the example below. Run the extraction script (python3 extract.py), provide photo directory when prompted and whether to trim background bleed. As seen in the bottom image below, pictures where the print is entirely flat will have some bending which will not be removed in the script. You can decide whether to retain 100% image information OR whether to produce "clean" photos.
Performs photo simplification, converts to greyscale, performs edge detection, extrapolates lines from edges. From there, it finds the outermost lines of the image (the printed photo bounds), finds the corners, then performs perspective transformation to reconstruct the image from a "top down" perspective.
Example in photo
Example out photo
Example bend that can be removed


