如何从图像文件中自动裁剪预定义的多边形形状?
理想情况下,使用 Python 库或processing.org,我需要导入图像,然后使用 x,y 坐标(顶点)从该图像中裁剪预定义的多边形区域。
谢谢。
Ideally using a Python library or processing.org, I need to import an image and then crop a predefined polygon area from this image using x,y coordinates (vertices).
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 PythonMagick。 您的问题似乎是
crop 的直接应用
通过图像几何的规范。(更多 ImageMagick 端口 和 文档。)
Try PythonMagick. Your question appears to be a cut-and-dry application of
crop
through specification of image geometry.(More ImageMagick ports and documentation.)
另请查看 PIL。
尽管这不是特定于库的,但几乎每个库都应该支持这一点。
Also check out PIL.
Though this is hardly library specific and almost every library should support this.