gpt4 book ai didi

Android GPU图像,如何对图像的一部分应用滤镜

转载 作者:行者123 更新时间:2023-11-30 01:23:21 26 4
gpt4 key购买 nike

所以我正在使用 https://github.com/CyberAgent/android-gpuimage我想实现这一点(仅将滤镜应用于图像区域):

enter image description here

Uri imageUri = ...;
mGPUImage = new GPUImage(this);
mGPUImage.setGLSurfaceView((GLSurfaceView) findViewById(R.id.surfaceView));
mGPUImage.setImage(imageUri);
sepiaFilter = new GPUImageSepiaFilter()
mGPUImage.setFilter(sepiaFilter);

有没有办法做类似的事情:

TextureZone textureZone = new TextureZone(...);
sepiaFilter.setFilterOnlyOn(textureZone)

还是我需要更深入地制作自定义着色器?

最佳答案

您必须使用自己编写的 fragment 着色器来编写您的自定义过滤器。在 fragment 着色器中,您应该检查哪个 fragment 将应用过滤器。

关于Android GPU图像,如何对图像的一部分应用滤镜,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36776399/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com