mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
Update comments of video examples
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
@@ -2,8 +2,6 @@
|
||||
* Brightness Tracking
|
||||
* by Golan Levin.
|
||||
*
|
||||
* GSVideo version by Andres Colubri.
|
||||
*
|
||||
* Tracks the brightest pixel in a live video signal.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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.*;
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user