Reading 2: Amplying the Uncanny

Pursuit of Realism

Uncanny valley is the obstacle that CGI artists have to break through. Mashiro Mori introduced that as a humanoid robot’s representation approaches a great closeness to human form, it induces negative responses. Only past a certain degree of human likeness and familiarity, then a robotic form will induce positive responses. It means that on this scale of human likeness, there is a section before peak familiarity, that human CGI will look creepy and unfamiliar.

In the pursuit to make CGI or graphics in movies realistic, there will come a point where it reaches the uncanny valley. It sort of becomes an obstacle as they near the start of the uncanny valley, the graphics are well received by the viewers. However, in the uncanny valley, the more the artist improves on the realism of the graphics, the more audiences will feel unfamiliarity and not respond well to it. One of the most prominent examples is the film Final Fantasy: The Spirits within. The film featured more CGI animation than had ever been attempted in 2013. The main character was composed of over 400,000 rendered polygons and 60,000 fully rendered and animated hairs. Despite this meticulous attention to detail, the film failed. It’s failure is mainly attributed to the uncanny valley which was a major source of criticism from film goers.

Film/game makers strive to create something visually appealing, which following the uncanny valley graph, they strive for it to be at the peaks before or after. Designing such characters require a lot of details. Take a FIFA game for example. When a player scores a goal, the emotions it needs to portray needs to be shown in the facial expressions, the winning pose, angle of how the body bends, even the voice tone of the in-game commentators. It takes a lot of resources, money and advanced technology to get out of the uncanny valley. Each of it must be spot on to make it seamlessly human-like. If just a few of those details are missing or off, a viewer straight away sees the unhuman-like it is, and it just tumbles back down into the valley.

This brought me to think, is it actually worth it trying to reach the peak after the uncanny valley? Human-like visuals may seem familiar and allow for more realistic looking games/films that may not have a realistic story. However, it also limits aesthetic variety. Human-like characters will have to have human-like actions and expressions. Pre-uncanny valley peak visuals however, are more cartoonish and are able to act unrealistically and have exaggerated reactions. It allows creators to go for any kind style. Retro, illustrations, painterly style etc.

Phototropism: First iteration

Done using processing.

In this example, the light source is coming from the right. Hence the tree branches out towards the right. They are created from adding branches from previous branches, with the trunk being the first “branch”.

At the end of each branch, there is a 60% chance for the next branch to grow to the right, and 20% to the left and another 20% to the middle. This is done by generating a random number between 0 – 1 and if statements.

A route (from the trunk to the first branch, to the second… to the last) is completed first before the next route starts. Each route is entirely probabilistic.

For future exploration:

Currently, the implementation of a “light source” is only through defining the probabilities of growing right, left and center. I would like to be able to define a light source. The probability of growing towards the light source will depend on the distance the previous branch is from the light source. Closer = greater probability of growing towards it.

Also, currently, I am using a predefined angle of 30 deg when it branches out. I’d like to use the position of the light source as reference for the direction the branch should grow towards

Reflection Essay – Closed systems: Generative art and Software Abstraction

Watz states “Inspiration taken from processes found in nature is common, with the tension between organic and mechanical forms every present.” I personally find this statement about generative art interesting. The way nature acts is dependent on many different factors of varying level of influence, with each factor holding a certain probability.

For example, in a controlled environment of a fish tank, the amount of ammonia, which is harmful to fish, in the water at a given time is largely dependent on waste produced by fish (more fish = more ammonia), and the ammonia to nitrate conversion (harmful ammonia becomes harmless nitrate) by bacteria. Bacteria growth depends on oxygen levels, which depend on respiration rate of water plants, which depends on light intensity. Even in a controlled environment, there are already so many factors, which will take a lot of time to calculate by hand.

Thus, an algorithm can be used to consider all these factors, and simulate the ammonia levels in the fish tank. Since there is a probability attached to each factor, the end result becomes unpredictable to an extent.

Watz also states that “Programming errors can lead to serendipitous discoveries, and one does well to embrace one’s mistakes.” I agree with this statement. When reverse engineering to produce a desired result (e.g., to create a computer simulation of something in nature), there are many trial and errors one will face. As one tries to head towards their goal, the errors are unpredictable and to goal-oriented individuals, they are seem as a step backwards and unwanted. However, it’s only through such processes where one can stumble on a discovery.

In conclusion, GA is largely inspired by the unpredictability of nature and to appreciate GA, one must be able to embrace instability and errors.

Exploratory Study: Phototropism

Phototropism is essentially how a plant grows in responds to light, either positive phototropism (towards the light) or negative phototropism (away from the light). I’d like to explore on the factors that contributes to the extent a plant grows towards (or away) a light source.

At each junction, a plant can decide to grow a leaf towards the right or left. With even exposure to light, the probability is 0.5 for each direction. With exposure to light biased to the right for example, the there’s a higher probability for a leaf to grow there. We can experiment different light sources by defining the intensity and shape. E.g., an outdoor plant will receive direct sunlight which is round and have high intensity while an indoor plant will receive sunlight from a rectangle window which may have day curtains, having low intensity.

Method:

Assuming even light exposure, we generate a probability tree using an algorithm. Each route starts from the same position, and based on a probability to turn left or right at multiple junctions, a route will be formed with a limit of n junctions. Since each decision at each junction is a probability, each route created will take different paths.

After, we try to add on the effect of light. We can input a single light source as a point or an area. Since intensity = 1/d^2, the further a plant is from a source, the less intense the light.