MasonSlover / ProcessingPortfolio

A collection of Processing projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Processing Portfolio

Hey! My name is Mason Slover and I'm a mathematics and computer science student at Fordham University at Lincoln Center. I have been creating art using Processing, a visual Java environment, for 5 years. This GitHub repository contains some of my favorite works and the .pde files for each:

Facial Obfuscation Mirrors

Inspired by the peaceful protests in Hong Kong and the United States and the growing fear of government authorities using facial recognition to identify and prosecute protestors, I created several facial obfuscation mirrors that prevent recognition of the observer by humans and facial detection software.

This project selects random pixels from the input of the and creates a rectangle using the color of the pixel selected. Using OpenCV for Processing, all faces within view of the webcam are detected, and the size of the rectangle drawn within the frame of the face are increased to obfuscate the viewer and prevent identification. Upon clicking on the window with the mouse, the sizes of the rectangles are reversed, revealing the viewer and obstructing the background.

This program hooks into a user's webcam and augments its input. Using the global resolution variable, the video feed is evaluated at several intervals where the brightness of selected pixels are mapped to the size of an ellipse at the same point. The color is also taken from this point. By progressively destroying older frame's content, the viewer is only recognizable when they are still.

Using Processing, this project creates a typing animation that dynamically scales type for both a main title and subheadline. The type is stored in a 2D array and and the program uses .substring to create the typing animation.

Using Perlin noise, this project warps type by offsetting individual pixels based on the value of the noise generated at a point. The noise is translated under the type, resulting in a rippling effect.

Using processing, I was able to import a variable width font and dynamically adjust the type's weight and height. Using sinusoidal speed changes and random character attributes, this project creates dynamic type that allows for extreme flexibility.

Using a Craig Reynold's Boids algorithm writeup, I implemented three flocking behaviors to simulate natural behavior in Processing:

Separation:

Any "Boid" within 20 pixels with another Boid will steer away from the center of the other Boid to avoid colliding.

Cohesion:

Each Boid calculates the average steering position of all other Boids within 20px, and steers towards the average vector. This allows for "flocks" of Boids.

Alignment:

Each Boid will steer towards the average heading of all other Boids within 20px. This allows for flocks to fly in the same direction.

When the mouse is pressed, the location of the pointer acts as a point of avoidance for all Boids within the shown radius. If a Boid enters this radius, it will be steered away from the mouse. The mouse may also act as a point of attraction, steering all Boids to its center.

About

A collection of Processing projects.

License:GNU General Public License v3.0


Languages

Language:Processing 100.0%