Skip to content

Latest commit

 

History

History
834 lines (534 loc) · 19.6 KB

File metadata and controls

834 lines (534 loc) · 19.6 KB

Themes

Set your presentation theme:
Black (default) - White - League - Sky - Beige - Simple
Serif - Blood - Night - Moon - Solarized

H:

Visual Computing Cognitive Aspects

Jean Pierre Charalambos
Universidad Nacional de Colombia
Presentation best seen online
See also the source code

H:

Index

  1. History of Linear Perspective
  2. Depth Perception
  3. Optical Illusions
  4. Final thoughts

H:

History of Linear Perspective

Before linear perspective

Chauvet painting

V:

History of Linear Perspective

Before linear perspective

Chauvet painting

V:

History of Linear Perspective

Before linear perspective

Altamira painting

V:

History of Linear Perspective

Before linear perspective

Altamira painting

V:

History of Linear Perspective

Before linear perspective

Altamira painting

V:

History of Linear Perspective

Before linear perspective

Medieval Fresco

V:

History of Linear Perspective

Before linear perspective

Medieval Fresco

V:

History of Linear Perspective

Before linear perspective

[Oblique perspective](https://en.wikipedia.org/wiki/Oblique_projection). Song dinasty, 12th century

V:

History of Linear Perspective

Before linear perspective

[Reverse perspective](https://en.wikipedia.org/wiki/Reverse_perspective). Byzantine perspective

V:

History of Linear Perspective

Before linear perspective

[Reverse perspective](https://en.wikipedia.org/wiki/Reverse_perspective). Byzantine perspective

V:

History of Linear Perspective

Linear Perspective: Brunelleschi's Experiment

<iframe width="720" height="480" src="https://www.youtube.com/embed/bkNMM8uiMww"></iframe>

V:

History of Linear Perspective

Linear Perspective: Brunelleschi's Experiment

<iframe width="720" height="480" src="https://www.youtube.com/embed/eOksHhQ8TLM"></iframe>

V:

History of Linear Perspective

Alberti's Veil

Dürer's Alberti Veil

V:

History of Linear Perspective

Alberti's Veil

Dürer's Alberti Veil

V:

History of Linear Perspective

Uccello perspective study of a vase

Perspective study of a vase by Paolo Uccello (Galleria degli Uffizi, Gabinetto dei Disegni)

H:

Depth Perception

Monocular cues

[Parallax](https://en.wikipedia.org/wiki/Parallax)

V:

Depth Perception

Monocular cues

Motion parallax

V:

Depth Perception

Monocular cues

Depth from motion

V:

Depth Perception

Monocular cues

[Kinetic depth effect](https://en.wikipedia.org/wiki/Kinetic_depth_effect)

V:

Depth Perception

Monocular cues

<iframe width="720" height="480" src="https://www.youtube.com/embed/TQB4T6mTXAY"></iframe>

V:

Depth Perception

Monocular cues

<iframe width="720" height="480" src="https://www.youtube.com/embed/gq70rca1P1I"></iframe>

V:

Depth Perception

Monocular cues

Perspective

V:

Depth Perception

Monocular cues

[Curvilinear perspective](https://en.wikipedia.org/wiki/Curvilinear_perspective)

V:

Depth Perception

Monocular cues

[Curvilinear perspective](https://en.wikipedia.org/wiki/Curvilinear_perspective)

V:

Depth Perception

Monocular cues

[Aerial perspective](https://en.wikipedia.org/wiki/Aerial_perspective)

V:

Depth Perception

Monocular cues

Relative size and familiar size

V:

Depth Perception

Monocular cues

Depth-of-Field (DOF)

V:

Depth Perception

Monocular cues

Depth-of-Field (DOF)

V:

Depth Perception

Binocular cues

[Stereopsis](https://en.wikipedia.org/wiki/Stereopsis)

H:

Optical Illusions

  1. (Classical) Emission theory vs Intromission theory
  2. Unconscious inference (Hermann von Helmholtz):
  • light comes from above
  • objects are normally not view from below
  • faces are seen (and recognized) upright
  • closer objects can block the view of more distant objects

Visual (cognitive) illusions (inference process failure) -> visual system assumptions insight

V:

Optical Illusions (Physiological)

Mach's band

V:

Optical Illusions (Physiological)

V:

Optical Illusions (Physiological)

V:

Optical Illusions (Physiological)

Color gradient

V:

Optical Illusions (Physiological)

V:

Optical Illusions (Physiological)

V:

Optical Illusions (Physiological)

Grid illusions

Hermann grid

V:

Optical Illusions (Physiological)

Grid illusions

Scintillating grid

V:

Optical Illusions (Physiological)

Grid illusions

Note that the scintillating grid code is:

function setup() {
    var myCanvas = createCanvas(400, 400);
    myCanvas.parent('scintillating_id');
    strokeWeight(3);        // medium weight lines
    smooth();               // antialias lines
    stroke(100, 100, 100);  // dark grey colour for lines
    noLoop();

}

function draw() {
    background(0);          // black background
    var step = 25;          // grid spacing

    //vertical lines
    for (var x = step; x < width; x = x + step) {
        line(x, 0, x, height);
    }

    //horizontal lines
    for (var y = step; y < height; y = y + step) {
        line(0, y, width, y);
    }

    // Circles
    ellipseMode(CENTER);
    stroke(255, 255, 255);  // white circles
    for (var i = step; i < width -5; i = i + step) {
        for (var j = step; j < height -15; j = j + step) {
            strokeWeight(6);
            point(i, j);
            strokeWeight(3);
        }
    }
}

V:

Optical Illusions (Physiological)

Grid illusions

Hacking instructions (setup and run) found here

V:

Optical Illusions (Cognitive)

Ambiguous illusions

Necker's cube

V:

Optical Illusions (Cognitive)

Ambiguous illusions

Rubin's jar

V:

Optical Illusions (Cognitive)

Ambiguous illusions

[Swans Reflecting Elephants](http://en.wikipedia.org/wiki/Swans_Reflecting_Elephants) by [Salvador Dalí](http://en.wikipedia.org/wiki/Salvador_Dal%C3%AD), 1937

V:

Optical Illusions (Cognitive)

Geometrical-optical (or distorting) illusions

Cafe-Wall

V:

Optical Illusions (Cognitive)

Geometrical-optical (or distorting) illusions

Cafe-Wall

V:

Optical Illusions (Cognitive)

Geometrical-optical (or distorting) illusions

Zollner ilussion

V:

Optical Illusions (Cognitive)

Geometrical-optical (or distorting) illusions

Muller-Lyer

V:

Optical Illusions (Cognitive)

Geometrical-optical (or distorting) illusions

[Poggendorff Illusion](https://en.wikipedia.org/wiki/Poggendorff_illusion)

V:

Optical Illusions (Cognitive)

Geometrical-optical (or distorting) illusions

Ponzo illusion

V:

Optical Illusions (Cognitive)

Paradox illusions

[Penrose Triangle](https://en.wikipedia.org/wiki/Penrose_triangle)

V:

Optical Illusions (Cognitive)

Paradox illusions

Escher's Waterfall

V:

Optical Illusions (Cognitive)

Paradox illusions

Penrose Staircase

V:

Optical Illusions (Cognitive)

Paradox illusions

Escher's Ascending and Descending

V:

Optical Illusions (Cognitive)

Fictions

Kanizsa triangle

V:

Optical Illusions (Movement)

Motion Binding

V:

Optical Illusions (Movement)

Stuart Anstis ilussion

V:

Optical Illusions (Movement)

[Illusory Square](https://www.geek.com/news/10-astonishing-optical-illusion-gifs-1575117/)

V:

Optical Illusions (others)

Ebbinghaus illusion

V:

Optical Illusions (others)

Lilac Chaser Illusion

N: Combination of:

  1. Phi phenomenon: is the optical illusion of perceiving continuous motion between separate objects viewed rapidly in succession
  2. Afterimages
  3. Troxler's fading: When a blurry stimulus is presented to a region of the visual field away from where we are fixating, and we keep our eyes still, that stimulus will disappear even though it is still physically presented

V:

Optical Illusions (others)

Movement illusions

V:

Optical Illusions (others)

Movement illusions

V:

Optical Illusions (others)

Checker

V:

Optical Illusions (others)

Stroboscopic Motion

V:

Optical Illusions (others)

Rotate Square Motion

V:

Optical Illusions (others)

Spinning dancer

N:

These results can be explained by a psychological study providing evidence for a viewing-from-above bias that influences observers' perceptions of the silhouette. The results indicated that there was no clockwise bias, but rather viewing-from-above bias

V:

Optical Illusions (others)

Positron imagery

V:

Optical Illusions (others)

Pinna ilussion

V:

Optical Illusions (others)

Silencing Illusion

V:

Optical Illusions (others)

Wagon Wheel Illusion

H:

Final thoughts

Optical illusions in research

8 & 4 bits quantised images, upper and lower pairs resp.

N:

Visual masking describes the perceptual phenomenon that the presence of one visual pattern can affect the visibility of another pattern [FSPG97, KB05].

V:

Final thoughts

Nature of reality

Problem: is it that "accurate perceptions are fitter perceptions" the right intepretation of evolutionary theory?

Methodology: evolutionary game simulations between competing organisms some of which perceive (part-of) reality as it is and some which see only fitness

Results: evolution doesn't favor veridical perceptions (they go extinct)

Conclusion: (in contrast) we re-construct what we see, because it's useful (in evolutionary terms)

N:

  • Visual illusions: suggest we construct what we see
  • Evolutionary theory deals with: what does natural selection favors?
  • Methodology: uses evolutionary equation. Key notion fitness = f(reality-as-it-is, organism, state & action)
  • Conclusion: "we re-construct what it see": whatever it is. Two theories:

V:

Final thoughts

Nature of reality

  • The human species is very likely to go extinct before reaching a “posthuman” stage
  • Any posthuman civilization is extremely unlikely to run a significant number of simulations of their evolutionary history (or variations thereof)
  • we are almost certainly living in a computer simulation.

    H:

    References