Pages

sâmbătă, 18 septembrie 2021

Shadertoy: iChannel texture - 006.

Another simple example with the online shadertoy tool. In this example, I will show you how to use a webcam with a heat predator effect. And how to combine this effect with the webcam image.

vec3 predatorHeat(float v) {
float value = 1.0 - v;
return (0.5+0.5*smoothstep(0.0, 0.1, value))*vec3(
smoothstep(0.5, 0.3, value),
value < 0.3 ? smoothstep(0.0, 0.3, value) : smoothstep(1.0, 0.6, value),
smoothstep(0.4, 0.6, value)
);
}

void mainImage( out vec4 fragColor, in vec2 fragCoord )
{
// Normalized pixel coordinates (from 0 to 1)
vec2 uv = fragCoord/iResolution.xy;

vec4 temp = texture(iChannel0, uv);
vec4 temp2 = texture(iChannel1,uv);

float average = ((temp.r + temp.g + temp.b) / 2.5);

temp.rgb = vec3(predatorHeat(average));

if(uv.x > 0.5)
fragColor = temp;
else
fragColor = temp2;
}

CodePen: Webcam with RGB color shader and the three.js javascript library.

Three.js is a cross-browser JavaScript library and application programming interface used to create and display animated 3D computer graphics in a web browser using WebGL.
This library is not really used in website development. It has some great real-time information display capabilities.
Today I show you a combined example of a webcam with a simple shader set with an RGBA color.

sâmbătă, 11 septembrie 2021

AR Tagging with ViewAR

See how you can use augmented reality tagging by ViewAR to bring your store online and provide a virtual tour within 24 hours.
A Matterport Scanner, a tripod, and a smartphone, is all you need to create an online version of your physical store and have all the benefits that come with it. All that in less than one day.
AR Tagging uses optical character recognition (OCR) looking for text, barcodes or QR codes. AR Tagging will automatically find the desired characters from the label using defined filters, create a point of interest and save its position to your scan.
ViewAR also provides a better customer experience for your visitors on site. Help your customers find the right product or present special offerings directly on their smartphone.
If your customers want to see a product, they can simply be guided there with our augmented reality indoor navigation app.

joi, 9 septembrie 2021

Windwalker Echo from Unreal Engine 5 and a speak demo from askNK.

Windwalker Echo Epic Games - Aug 30, 2021
Windwalker Echo, fresh off her starring roles in Lumen in the Land of Nanite, Valley of the Ancient, and Slay is now available as a standalone character asset for both Unreal Engine 4 and 5., see this webpage.
You can see a speech demonstration from askNK with this character.

miercuri, 8 septembrie 2021

News : Nvidia in the field of health.

The simulations revealed and helped solve various problems. Image processing is very complex for the human brain, which is why dedicated applications are used. An example in the field of health and graphic processing.
They show us and explain the implications in using these technical possibilities:
AstraZeneca is powering modern #machinelearning (ML) and AI to accelerate drug discovery with Cambridge-1, training models to learn the grammar of chemistry, and processing whole slide digital pathology images.

duminică, 5 septembrie 2021

MetaHuman Facial Animation by Reallusion.

Animating your MetaHumans fast and easy using all or any mix of iClone's 4 techniques:

sâmbătă, 4 septembrie 2021

Online tool shader-playground.

Here's an online tool for shaders.
This time it is a development with multiple shader specific languages and these compilers: ANGLE, Clspv, DXC, FXC, Glslang, hlsl2glslfork, HLSLcc, HLSLParser, Mali offline compiler, Naga, PowerVR compiler, Radon GPU Analyzer (RGA), Rust GPU, Slang, SPIRV-Cross, SPIRV-Cross - Intel fork with ISPC backend, SPIRV-Tools, spirv-as, Tint, XShaderCompiler.

vineri, 3 septembrie 2021

Blender 3D : Grease Pencil Samples.

You can see here many free samp created with this tool.

joi, 2 septembrie 2021

News : Blender 3.0 Alpha version.

A short intro from the official youtube channel of askNK.
You can download and test it from here.
Let's see this video.

marți, 31 august 2021

Spiritfarer game from Epic Games.

This cartoon game seems to be a fantastic game for those gamers who like stories.
The Beverly Update is Spiritfarer's second big content update. It introduces the new Spirit character Beverly and adds new buildings for your boat, new collectible items, and a plethora of Quality of Life improvements!

sâmbătă, 28 august 2021

Unity 3D : Photo Mode project.

The Photo Mode demo project serves as a guide for implementing virtual photography features within your PC or console Unity projects, enabling players to capture and customize in-game screenshots. It includes examples for handling camera positioning, photo adjustments, filter effects, and more.
Photo Mode download and documentation from here.

marți, 24 august 2021

Cartoon Animator new features.

From version 4.5, Cartoon Animator supports both transparent video (MOV) and image sequence (PNG) export, while providing useful features such as exporting selected items for fast video compositing, Fit-to-Object-Size output for optimized video editing, and much more. This update allows video makers to easily add visual effects to animated items, along with compositing 2D animation with video on all major video editors.

miercuri, 18 august 2021

Adobe color online tool.

This online tool from Adobe is a useful tool for creators to select and use color palettes.
Use the next link and search with the word you need it:
You can see all color palettes for the word: wood
https://color.adobe.com/search?q=wood