实现外星人地图风格效果的库

问题描述 投票:0回答:1

我正在尝试用 C++ 创建一个具有多种颜色效果的新程序。

我正在尝试实现这种效果https://docs.gimp.org/2.10/en/gimp-filter-alien-map.html

如何在c++中实现这种特定效果 我应该使用哪些库?

我一直在使用 Opencv 和其他库,但我没有找到这种效果

c++ image-processing computer-vision gimp
1个回答
0
投票

有一个名为 GEGL 的库:

https://www.gegl.org/operations/gegl-alien-map.html

因此要实现非常具体的图像处理https://gitlab.gnome.org/GNOME/gegl

它是用 C 语言而不是 C++ 语言编写的。

许多类型的图像处理滤镜都可以完成,而不仅仅是外星人地图

https://www.gegl.org/operations/GeglOperationPointFilter.html

© www.soinside.com 2019 - 2024. All rights reserved.