从 rgb 转换为 yuv 并将其转换回 rgb 的着色器示例。为了简单起见,我将 2 个相邻的 rgba 像素转换为 yuv 并将其保存为(y1y2uv)格式的 1 个像素。这不是一个有效的例子,但我希望它能让你走向正确的方向。
// From rgb to yuv
companion object {
val FRAGMENT_SHADER = "" +
"precision highp float;\n" +
"varying vec2 textureCoordinate;\n" +
" \n" +
"uniform sampler2D inputImageTexture;\n" +
"uniform float step;\n" +
"const vec3 multiplier = vec3(0.299, 0.587, 0.114);\n" +
" \n" +
"void main()\n" +
"{\n" +
" vec4 first= texture2D(inputImageTexture, textureCoordinate);\n" +
" float y1 = clamp(dot(multiplier, first.rgb), 0.0, 1.0);\n" +
" vec2 secondCoord = textureCoordinate;\n" +
" secondCoord.x = secondCoord.x + step;\n" +
" vec4 second= texture2D(inputImageTexture, secondCoord);\n" +
" float y2 = clamp(dot(multiplier, second.rgb), 0.0, 1.0);\n" +
" vec3 rgbAve = mix(first.rgb, second.rgb, 0.5);\n" +
" float yAve = 0.5 * (y1 + y2);\n" +
" float u = clamp((rgbAve.b - yAve) * 0.565 + 0.5, 0.0, 1.0);\n" +
" float v = clamp((rgbAve.r - yAve) * 0.713 + 0.5, 0.0, 1.0);\n" +
" gl_FragColor.r = y1;\n" +
" gl_FragColor.g = y2;\n" +
" gl_FragColor.b = u;\n" +
" gl_FragColor.a = v;\n" +
"}"
}
// From yuv to rgb
companion object {
val FRAGMENT_SHADER = "" +
"precision highp float;\n" +
"varying vec2 textureCoordinate;\n" +
" \n" +
"uniform sampler2D inputImageTexture;\n" +
"uniform float step;\n" +
" \n" +
"void main()\n" +
"{\n" +
" vec2 secondCoord = textureCoordinate;\n" +
" float correction = secondCoord.x - 2.0 * step * floor(secondCoord.x / (2.0 * step));\n" +
" correction = clamp((correction - (step/2.0))/ (step/2.0), 0.0, 1.0);\n" +
" secondCoord.x = secondCoord.x - (correction * step);\n" +
" vec4 yuv = texture2D(inputImageTexture, secondCoord);\n" +
" yuv.r = (1.0 - correction) * yuv.r + correction * yuv.g;\n" +
" yuv.g = yuv.b - 0.5;\n" +
" yuv.b = yuv.a - 0.5;\n" +
" gl_FragColor.r = clamp(yuv.r + 1.403 * yuv.b, 0.0, 1.0);\n" +
" gl_FragColor.g = clamp(yuv.r - 0.344 * yuv.g - 0.714 * yuv.b, 0.0, 1.0);\n" +
" gl_FragColor.b = clamp(yuv.r + 1.770 * yuv.g, 0.0, 1.0);\n" +
" gl_FragColor.a = 1.0;\n" +
"}"
}