Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 2.46 KB

Readme.md

File metadata and controls

20 lines (13 loc) · 2.46 KB

Own Race Bias 2009

A cooperation with Brigitte Daetwyler and Johnny Nia. The installation was used during an exhibition at Art School Lucerne.

Idea

Own race bias is a term used in theories of cognition to describe mistakes when interpreting faces of alien races. The appearance of members from a foreign cultural background is significantly less differentiatedly perceived than the one of members from a familiar cultural background.

Execution

Photographs taken by an Indian street photographer with a camera obscura were used as basis for an algorithmic analysis of the pictures and faces. One approach focused on the image data, the other on recognising and comparing the face in the photograph.

Sorting photographs by grayscale in a binary search tree

The wall picture shown at the exhibition consists of the original photographs. The grayscale value of the photographs was used to arrange the wall picture based on a binary search tree.

Detecting, sorting and morphing faces with computer vision

An OpenCV script was used to detect the face and eyes of each person in the image. The generated data was then used to sort the pictures according to the detected position of the eyes in the images. The generated list was then used to morph consecutive images.

For calculating the intermediate frames of the morphing sequence a small command line tool was used. It included a morphing algorithm based on Proesmans' optical flow algorithm. This algorithm worked better with the low image quality than OpenCV based morphing.

The calculated frames where then used to generate a video file with ffmpeg.

It was a conscious decision to not interfere with the mechanical sorting and merging of the faces in the photographs. False negatives and positives were an accepted outcome. Photographs, which did not trigger a detection of a face and eyes where mechanically sorted out. Photographs were face and eyes were detected outside of their actual position were mechanically kept in the process and lead to morphing errors in the output.