如何用 3 种随机颜色的渐变填充图像?
我想知道如何使用 openCV 2 API 在 3 个随机位置以 3 个随机半径填充 3 个随机颜色的径向渐变 openCV mat(图像)?一行代码可以实现吗?
I wonder how to fill openCV mat ( image ) with radial gradient of 3 random colors in 3 random positions with 3 random radii using openCV 2 API? Is it possible in one line of code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OpenCV 不是合适的工具,因为它不是图像处理库……
ImageMagick 更适合这项工作。查看此页面:http://www.imagemagick.org/Usage/canvas/ 之后你创建了渐变图像,你可以将它与 OpenCV 一起使用(无论你想完成什么)。
OpenCV is not the appropriate tool for that, because it's not a image manipulation library …
ImageMagick is a better for that job. Check out this page: http://www.imagemagick.org/Usage/canvas/ After you created the gradient image you can use it with OpenCV (whatever you want to accomplish).