Blog
Beauty AR SDK

How to Create Face Beauty Filter for Live Streaming With Effect Constructor Tool

A beauty filter for live streaming is a great way to enhance the broadcast experience by engaging users to stay longer watching a live stream session and making a streamer more confident about their appearance.

You can use it as a standalone filter to enhance the user camera experience or as part of face filters adding animation, virtual accessories, or entertainment masks.

Today, we'll share the ways of creating beauty filters for streaming with Banuba's Effect Construction Tool.

final face beautification filter

This post will tell you how to create your face beauty filter and configure it with our Effect Constructor. The filter we feature as an example includes the following beautification options:

  • Skin smoothing
  • Skin tone enhancement
  • Face morphing
  • Teeth whitening
  • Expressive eyes effect
  • Eye makeup
  • Color improvement.

 

If you are new to Banuba and you’d like to test Beauty AR SDK, drop us a line via the website contact form, and we’ll be happy to share the trial.

Power Your App with AR Face Filters SDK  Start Free Trial

3 Steps to Building a Beauty Filter for Live Streaming

1. Prepare source files

To create a beauty filter for live streaming, you will need 3 types of source files:

  • FBX file with morphing

  • Three textures as PNG files for Makeup, Softlight and Highlight.

  • Three LUT files in PNG format for eyes and teeth whitening and general color improvement.


FBX file with morphing

Morphing allows for modifying the size of the face and its facial features by moving the vertices of the 3D model of the face. You can slim down or enlarge the face, change the shape of the nose, eyes, lips, chin, or produce any other deformations.

morphing face filterTo change the face of the user, you need to create an FBX with a morphed base mask using any 3D editor. Those that have tools for sculpting will be especially useful.

You can use the FaceDefault.FBX file with default face as a base model to create your morphed meshes. In our example, we’ll use slight morphing that slims down the face and the nose to make the user's facial features more delicate.

The images below show the base mask and the morphing effect (green mask) added to the base mask (pink mask). The morphing effect will be applied to the recognized face of the user, while the UV coordinates should remain unchanged.

morphing face beauty filterUV coordinates


Textures: Makeup, Softlight, and Highlight

Now we will make three textures as PNG files according to the UV scan grid. These textures make up the core of our face beautification webcam filter.

Makeup texture

Shot_MakeupThe makeup texture is displayed on the face in normal blending mode using transparency. You can add tattoos, eyebrow color, shadows thrown by other objects (such as glasses), or, as in our case, eye shadow, lashes and eyeliner.

 

 

 

Softlight texture

Shot_SoftThe Softlight texture is displayed on the face in softlight blending mode. It can be used to correct the skin tone, make it lighter or darker. For a skin-smoothing effect, the Softlight texture highlights the prominent areas of the face like the forehead, nose, cheekbones and chin. We also add a rosy tint to the cheeks.

 

 

Highlight texture

Shot_HighlightThe Highlight texture is displayed on the face in blend mode. In our example, this texture adds glare to the eyes to produce an “expressive eyes” effect.

 

 

 

 


LUT (Look Up Table)

The LUT files enable the color improvement of the entire beauty webcam filters in full-screen mode. This way beautification will look organic, and the user will enjoy an enhanced, more vivid image. Also, we can whiten the user's eyes and teeth.

lut_normal

You can make your LUT file by making color improvements of the image in Photoshop using adjustment layers without masks, and applying these layers to the neutral LUT file.

Please note, files for eyes and teeth whitening should be without an alpha channel, and the file name should begin with the lut3d_ prefix.

 

lut 2

2. Construct beauty filter with Effect Constructor

Now, as you have all the resources in place, we can construct and configure the beauty webcam filters.

  1.  Create a folder named your effect (“Beautification”).
  2.  Create src folder inside for your source files and put the FBX file with morphing there.
  3.  Launch the Effects Constructor, click the Open button and specify the path to the "Beautification" root folder. This action will generate a new folder with the configured effect.

open effect constructor

4. Add source files to this new folder: three LUT files and three PNG files with textures (Softlight, Makeup, and Highlight).

effectFolder

3. Configure face beautification filter


Step 1. Basic settings

In the Effect Constructor, go to the Rendering tab:

  1.  Turn on the retouch layer. We’ll set it up a bit later.
  2.  In the warp_mesh option, point to the file with morphing.
  3.  Disable the mat_morph layer with the morph geometry material as it’s not needed in our face beautification filter.

Click the Construct or Save buttons to save the settings.

warp_mesh


Step 2. Setting up the retouch layer

To set up the retouch layer, specify the necessary options for the files.

  1. LUT file for teeth whitening

  2. LUT file for eye whitening

  3. PNG file with the glare in the eyes

  4. Softlight PNG file

  5. Makeup PNG File

Click on the Construct button.

retouch_setup


Step 3. Adding color correction

In the final step, we apply the color correction to the entire image to add consistency to our face beauty filter.

Save the finalColorFilter.fsh file to the folder with your constructed effect and insert this code into the config.json file to enable it. In the code, we indicate the name of the LUT file nashville.png saved earlier in the folder with the constructed effect.

"final" : {

"type" : "FILTER",

"filter" : {

"fragmentCode" : "finalColorFilter.fsh",

"textures" : [{

"file" : "nashville.png",

"sampler" : "lookupTexture",

"magFilter" : "LINEAR",

"minFilter" : "LINEAR"

}]

}

}
code example color correction for beauty effect

Power Your App with AR Face Filters SDK  Start Free Trial

Summing Up

The example of the beauty filter described above can be used as a real-time effect or for photo post-processing in selfie editors. You can see more of Banuba video face beautification and retouch features from the video.

A face beauty filter for live streaming makes the users feel more comfortable about their selfie camera experience, increases engagement with the live stream session, and inspires content creation in users. 

You can adjust beautification features and levels creating either the effect of natural beautification with slight use of face modifications or producing Snapchat-like retouch and beauty filters.

Top