如何更改拍摄的文档以使其看起来是“扫描的”
我怎样才能 在 Python/PIL 中执行此操作? 即,给定偏移矩形(拍摄的文档)的四个点,使其看起来平坦,就像扫描的一样。 有一个简单的算法吗?
另外,我还应该做其他操作来使其看起来更像“扫描式”吗?
我想用 Python 为自己制作这个程序的简单版本。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看方法设置为 QUAD 的transform()
https://pillow.readthedocs.io/en/stable/reference/Image.html#PIL.Image.Image.transform
Look at transform() with method set to QUAD
https://pillow.readthedocs.io/en/stable/reference/Image.html#PIL.Image.Image.transform