真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

IOS – OpenGL ES 指定顏色摳圖 GPUImageChromaKeyFilter

目錄

成都創(chuàng)新互聯(lián)公司一直秉承“誠(chéng)信做人,踏實(shí)做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務(wù)為基礎(chǔ),以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個(gè)客戶多一個(gè)朋友!為您提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、成都網(wǎng)頁(yè)設(shè)計(jì)、成都小程序開(kāi)發(fā)、成都網(wǎng)站開(kāi)發(fā)、成都網(wǎng)站制作、成都軟件開(kāi)發(fā)、app軟件定制開(kāi)發(fā)是成都本地專業(yè)的網(wǎng)站建設(shè)和網(wǎng)站設(shè)計(jì)公司,等你一起來(lái)見(jiàn)證!

  • 一.簡(jiǎn)介
  • 二.效果演示
  • 三.源碼下載
  • 四.猜你喜歡

零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 基礎(chǔ)

零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 轉(zhuǎn)場(chǎng)

零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 特效

零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 函數(shù)

零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES GPUImage 使用

零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES GLSL 編程

一.簡(jiǎn)介

GPUImage 共 125 個(gè)濾鏡, 分為四類

1、Color adjustments : 31 filters , 顏色處理相關(guān)
2、Image processing : 40 filters , 圖像處理相關(guān).
3、Blending modes : 29 filters , 混合模式相關(guān).
4、Visual effects : 25 filters , 視覺(jué)效果相關(guān).

GPUImageChromaKeyFilter 屬于 GPUImage 顏色處理相關(guān),用來(lái)處理圖片指定顏色摳圖

GPUImageChromaKeyFilter 對(duì)圖像中的指定的顏色,將Alpha通道設(shè)置為0,適用于指定顏色摳圖,例如:綠幕摳圖等操作;

閾值敏感度:要替換的目標(biāo)顏色需要存在多少顏色匹配(默認(rèn)值為0.4)
平滑:如何平穩(wěn)地融合顏色匹配(默認(rèn)為0.1)

shader 源碼如下:

/******************************************************************************************/
//@Author:猿說(shuō)編程
//@Blog(個(gè)人博客地址): www.codersrc.com
//@File:IOS – OpenGL ES 指定顏色摳圖 GPUImageChromaKeyFilter
//@Time:2022/04/02 07:30
//@Motto:不積跬步無(wú)以至千里,不積小流無(wú)以成江海,程序人生的精彩需要堅(jiān)持不懈地積累!
/******************************************************************************************/


#if TARGET_IPHONE_SIMULATOR || TARGET_OS_IPHONE
NSString *const kGPUImageChromaKeyFragmentShaderString = SHADER_STRING
(
 precision highp float;
 
 varying highp vec2 textureCoordinate;
 
 uniform float thresholdSensitivity;
 uniform float smoothing;
 uniform vec3 colorToReplace;
 uniform sampler2D inputImageTexture;
 uniform sampler2D inputImageTexture2;
 
 void main()
 {
     vec4 textureColor = texture2D(inputImageTexture, textureCoordinate);
     
     float maskY = 0.2989 * colorToReplace.r + 0.5866 * colorToReplace.g + 0.1145 * colorToReplace.b;
     float maskCr = 0.7132 * (colorToReplace.r - maskY);
     float maskCb = 0.5647 * (colorToReplace.b - maskY);
     
     float Y = 0.2989 * textureColor.r + 0.5866 * textureColor.g + 0.1145 * textureColor.b;
     float Cr = 0.7132 * (textureColor.r - Y);
     float Cb = 0.5647 * (textureColor.b - Y);
     
     //     float blendValue = 1.0 - smoothstep(thresholdSensitivity - smoothing, thresholdSensitivity , abs(Cr - maskCr) + abs(Cb - maskCb));
     float blendValue = smoothstep(thresholdSensitivity, thresholdSensitivity + smoothing, distance(vec2(Cr, Cb), vec2(maskCr, maskCb)));
     gl_FragColor = vec4(textureColor.rgb, textureColor.a * blendValue);
 }
);
#else
NSString *const kGPUImageChromaKeyFragmentShaderString = SHADER_STRING
(
 varying vec2 textureCoordinate;
 
 uniform float thresholdSensitivity;
 uniform float smoothing;
 uniform vec3 colorToReplace;
 uniform sampler2D inputImageTexture;
 uniform sampler2D inputImageTexture2;
 
 void main()
 {
     vec4 textureColor = texture2D(inputImageTexture, textureCoordinate);
     
     float maskY = 0.2989 * colorToReplace.r + 0.5866 * colorToReplace.g + 0.1145 * colorToReplace.b;
     float maskCr = 0.7132 * (colorToReplace.r - maskY);
     float maskCb = 0.5647 * (colorToReplace.b - maskY);
     
     float Y = 0.2989 * textureColor.r + 0.5866 * textureColor.g + 0.1145 * textureColor.b;
     float Cr = 0.7132 * (textureColor.r - Y);
     float Cb = 0.5647 * (textureColor.b - Y);
     
     //     float blendValue = 1.0 - smoothstep(thresholdSensitivity - smoothing, thresholdSensitivity , abs(Cr - maskCr) + abs(Cb - maskCb));
     float blendValue = smoothstep(thresholdSensitivity, thresholdSensitivity + smoothing, distance(vec2(Cr, Cb), vec2(maskCr, maskCb)));
     gl_FragColor = vec4(textureColor.rgb, textureColor.a * blendValue);
 }
 );

二.效果演示

使用 GPUImageChromaKeyFilter 指定顏色摳圖,例如:綠幕摳圖等操作,效果如下:

原圖:

摳圖效果:

三.源碼下載

OpenGL ES Demo 下載地址 : IOS – OpenGL ES 指定顏色摳圖 GPUImageChromaKeyFilter

四.猜你喜歡

  • IOS – OPenGL ES 設(shè)置圖像亮度 GPUImageBrightnessFilter
  • IOS – OPenGL ES 調(diào)節(jié)圖像曝光度 GPUImageExposureFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像對(duì)比度 GPUImageContrastFilter
  • IOS – OPenGL ES 調(diào)節(jié)圖像飽和度 GPUImageSaturationFilter
  • IOS – OPenGL ES 調(diào)節(jié)圖像伽馬線 GPUImageGammaFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像反色 GPUImageColorInvertFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像褐色 GPUImageSepiaFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像灰色 GPUImageGrayscaleFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像RGB通道 GPUImageRGBFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像不透明度 GPUImageOpacityFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像陰影 GPUImageHighlightShadowFilter
  • IOS – OpenGL ES 調(diào)節(jié)圖像色彩替換 GPUImageFalseColorFilter
  • GPUImage – 色彩直方圖 GPUImageHistogramFilter
  • GPUImage – 色彩直方圖 GPUImageHistogramGenerator
  • GPUImage – 像素平均色值 GPUImageAverageColor
  • GPUImage – 亮度平均 GPUImageLuminosity
  • IOS – OpenGL ES 調(diào)節(jié)圖像色度 GPUImageHueFilter
  • IOS – OpenGL ES 指定顏色摳圖 GPUImageChromaKeyFilter

本文由博客 - 猿說(shuō)編程 猿說(shuō)編程 發(fā)布!


網(wǎng)站欄目:IOS – OpenGL ES 指定顏色摳圖 GPUImageChromaKeyFilter
文章位置:http://weahome.cn/article/dsoijei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部