vote up 4 vote down star
2

How can I do this in Python/PIL? I.e., given the four points of an offset rectangle (a photographed document), make it look flat on as if it were scanned. Is there a simple algorithm for it?

Also, are there any other manipulations I should do to make it look more "scan-like"?

I want to make a simple version of this program for myself in Python.

flag

74% accept rate

1 Answer

vote up 8 vote down check

Look at transform() with method set to QUAD

http://www.pythonware.com/library/pil/handbook/image.htm

im.transform(size, QUAD, data) => image
im.transform(size, QUAD, data, filter) => image

Maps a quadrilateral (a region defined by four corners) from the image to a rectangle with the given size.

Data is an 8-tuple (x0, y0, x1, y1, x2, y2, y3, y3) which contain the upper left, lower left, lower right, and upper right corner of the source quadrilateral.

link|flag
Thanks! Here's my first try: utilitymill.com/utility/convert_photo_to_scan/… Now I want to figure out how to simulate uniform brightness. – Greg Mar 19 at 18:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.