Skip to content
Advertisement

How to crop white patches in image and make passport size photo using OpenCV

I have images that need to be cropped to perfect passport size photos. I have thousands of images that need to be cropped and straightened automatically like this. If the image is too blur and not able to crop I need it to be copied to the rejected folder. I tried to do using haar cascade but this approach is giving me only face. But I need a face with a photo-cropped background. Can anyone tell me how I can code this in OpenCV or any?

JavaScript

Before

enter image description here enter image description here enter image description here

After

enter image description here enter image description here enter image description here

Advertisement

Answer

If all photos have that thin white-black border around them, you can just

  1. threshold the pictures
  2. get all contours and
  3. select those contours that
    • have the correct gradient
    • are large enough
    • that reduce to 4 corners when passed through approxPolyDP
  4. get an oriented bounding box
  5. construct affine transformation
  6. apply affine transformation

If those photos aren’t scans but taken with a camera from an angle (not top-down), you’ll need to use a perspective transformation calculated from the corner points themselves.

If the photos aren’t flat but warped, that’s an entirely different problem.

JavaScript

input output

Advertisement