Pages

joi, 3 decembrie 2020

Tool with S.D.K. for your avatar .

This is a useful tool I discovered on web about avatars feature.
The development team comes with this infos:
We recommend trying Avatar SDK with a desktop/laptop browser. If you want to try Avatar SDK on a mobile phone, you can use the applications for iOS and Android. Also you can look at RemoteFace, our virtual camera for video conferencing that shows your avatar driven by camera and lipsync instead of the usual video feed.
Face capture SDK allows you to create facial animations with a web camera.
A good example to convert a simple 2D photo into 3D object can be found on this demo webpage build with Unity 3D.
You can see a video demo from YouTube:

You can read more on this webpage.

miercuri, 25 noiembrie 2020

AI-Based from Two Minute Papers.

An example of effects created using artificial intelligence from Two Minute Papers.

sâmbătă, 21 noiembrie 2020

Shadertoy: Build a cross intersection - 001.

Based on this tutorial created by Inigo Quilez I created a new cross intersection shader:

The shader is very simple.
I created a black box and then colored all the areas in the corner of this box with black.
I left a white area to see the cross.
You can see better if you change this line of source code:
...into this:
p_m = 1.0-p_m/(p_m+0.1);
or this:
p_m = 1.0-p_m*10.0/(p_m*10.0+0.1);
The shader can be ru and testd here: