Update comments of video examples

This commit is contained in:
codeanticode
2011-09-02 17:13:39 +00:00
parent c9f5ea230c
commit 5aeec953d9
21 changed files with 7 additions and 47 deletions

View File

@@ -2,7 +2,6 @@
* ASCII Video
* by Ben Fry.
*
* GSVideo version by Andres Colubri.
*
* Text characters have been used to represent images since the earliest computers.
* This sketch is a simple homage that re-interprets live video as ASCII text.

View File

@@ -2,8 +2,6 @@
* Background Subtraction
* by Golan Levin.
*
* GSVideo version by Andres Colubri.
*
* Detect the presence of people and objects in the frame using a simple
* background-subtraction technique. To initialize the background, press a key.
*/

View File

@@ -2,8 +2,6 @@
* Brightness Thresholding
* by Golan Levin.
*
* GSVideo version by Andres Colubri.
*
* Determines whether a test location (such as the cursor) is contained within
* the silhouette of a dark object.
*/

View File

@@ -2,8 +2,6 @@
* Brightness Tracking
* by Golan Levin.
*
* GSVideo version by Andres Colubri.
*
* Tracks the brightest pixel in a live video signal.
*/

View File

@@ -2,8 +2,6 @@
* Color Sorting
* by Ben Fry.
*
* GSVideo version by Andres Colubri.
*
* Example that sorts all colors from the incoming video
* and arranges them into vertical bars.
*/

View File

@@ -2,8 +2,6 @@
* Disgrand
* by Ben Fry.
*
* GSVideo version by Andres Colubri.
*
* Example that sorts all colors from the incoming video
* and arranges them into vertical bars.
*/

View File

@@ -2,8 +2,6 @@
* Frame Differencing
* by Golan Levin.
*
* GSVideo version by Andres Colubri.
*
* Quantify the amount of movement in the video frame using frame-differencing.
*/

View File

@@ -2,8 +2,6 @@
* Framingham
* by Ben Fry.
*
* GSVideo version by Andres Colubri.
*
* Show subsequent frames from video input as a grid. Also fun with movie files.
*/

View File

@@ -1,10 +1,9 @@
/**
* Getting Started with Capture.
*
* GSVideo version by Andres Colubri.
*
* Reading and displaying an image from an attached Capture device.
*/
import processing.video.*;
Capture cam;

View File

@@ -1,10 +1,9 @@
/**
* Getting Started with Capture.
*
* GSVideo version by Andres Colubri.
*
* Reading and displaying an image from an attached Capture device.
*/
import processing.video.*;
Capture cam;

View File

@@ -1,10 +1,9 @@
/**
* Getting Started with Capture.
*
* GSVideo version by Andres Colubri.
*
* Reading and displaying an image from an attached Capture device.
*/
*/
import processing.video.*;
Capture cam;

View File

@@ -2,8 +2,6 @@
* HSV Space
* by Ben Fry.
*
* GSVideo version by Andres Colubri.
*
* Arrange the pixels from live video into the HSV Color Cone.
*/

View File

@@ -2,8 +2,6 @@
* Live Pocky
* by Ben Fry.
*
* GSVideo version by Andres Colubri.
*
* Unwrap each frame of live video into a single line of pixels.
*/

View File

@@ -2,8 +2,6 @@
* Mirror
* by Daniel Shiffman.
*
* GSVideo version by Andres Colubri.
*
* Each pixel from the video source is drawn as a rectangle with rotation based on brightness.
*/

View File

@@ -2,8 +2,6 @@
* Mirror 2
* by Daniel Shiffman.
*
* GSVideo version by Andres Colubri.
*
* Each pixel from the video source is drawn as a rectangle with size based on brightness.
*/

View File

@@ -2,8 +2,6 @@
* Radial Pocky
* by Ben Fry.
*
* GSVideo version by Andres Colubri.
*
* Unwrap each frame of live video into a single line of pixels along a circle
*/

View File

@@ -2,8 +2,6 @@
* Simple Real-Time Slit-Scan Program.
* By Golan Levin.
*
* GSVideo version by Andres Colubri.
*
* This demonstration depends on the canvas height being equal
* to the video capture height. If you would prefer otherwise,
* consider using the image copy() function rather than the

View File

@@ -1,18 +1,9 @@
/**
* Loop.
* Built-in video library replaced with gsvideo by Andres Colubri
*
* Move the cursor across the screen to draw.
* Shows how to load and play a QuickTime movie file.
*
* Note: GSVideo uses GStreamer as the underlying multimedia library
* for reading media files, decoding, encoding, etc.
* It is based on a set of Java bindings for GStreamer called
* gstreamer-java originally created by Wayne Meissner and currently
* mantained by a small team of volunteers. GStreamer-java can be
* used from any Java program, and it is available for download at
* the following website:
* http://code.google.com/p/gstreamer-java/
*/
import processing.video.*;

View File

@@ -1,7 +1,6 @@
/**
* Pixelate
* by Hernando Barragan.
* Built-in video library replaced with gsvideo by Andres Colubri
*
* Load a QuickTime file and display the video signal
* using rectangles as pixels by reading the values stored

View File

@@ -1,7 +1,7 @@
/**
* GSVideo movie reverse example.
* Reverse playback example.
*
* The GSMovie.speed() method allows to
* The Movie.speed() method allows to
* change the playback speed. Use negative
* values for backwards playback. Note that
* not all video formats support backwards

View File

@@ -1,7 +1,7 @@
/**
* GSVideo movie speed example.
*
* Use the GSMovie.speed() method to change
* Use the Movie.speed() method to change
* the playback speed.
*
*/