在 PHP 中创建基于边缘检测的图像

发布于 2024-09-30 01:49:38 字数 265 浏览 3 评论 0原文

我很好奇 - 是否可以在 PHP 中实现:

1)将图像文件发送到服务器 2) 处理图像=检测边缘并根据边缘创建简单的笔划 3)将文件保存在服务器上/将其发送到用户的浏览器/无论什么

这是一些“示例”文件;P(如您所见,它不是使用任何启用边缘检测的程序制作的,而是手工制作的 - 仅作为示例):

http://i51.tinypic.com/5vzo0x.jpg 谢谢!

I'm curious - is it possible to ahieve in PHP:

1) Send image file to server
2) Process image = detect edges and create simple strokes basing on the edges
3) Save file on server / send it to user's browser / whatever

Here is some "sample" file ;P (as You can see it wasn't made using any edge detection enabled program, but by hand - just as an example):

http://i51.tinypic.com/5vzo0x.jpg
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别低头,皇冠会掉 2024-10-07 01:49:38

如果您可以使用 ImageMagick,则有 --charcoal 过滤器

木炭效果旨在模拟艺术家对给定图像的木炭草图。

“-charcoal”运算符在某些方面类似于计算机视觉使用的边缘检测变换。基本上,它尝试将图像中对象的主要边界和边缘转换为铅笔和木炭色调。

第一个参数应该代表边缘线的厚度。

ImageMagick 示例手册展示了另一种方法,其结果看起来更好:

艺术家木炭图像草图

替代文本

If you can use ImageMagick, there is the --charcoal filter:

The charcoal effect is meant to simulate artist's charcoal sketch of the given image.

The "-charcoal" operator is in some respects similar to edge detection transforms used by Computer Vision. Basically it tries to convert the major borders and edges of object in the image into pencil and charcoal shades.

The one argument is supposed to represent the thickness of the edge lines.

The ImageMagick examples manual shows another way whose results look even better:

Artist Charcoal Sketch of Image

alt textalt text

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文