From 5aeec953d9d7702dc6e18e353a1fce0ff0422141 Mon Sep 17 00:00:00 2001 From: codeanticode Date: Fri, 2 Sep 2011 17:13:39 +0000 Subject: [PATCH] Update comments of video examples --- .../video/examples/Capture/AsciiVideo/AsciiVideo.pde | 1 - .../BackgroundSubtraction/BackgroundSubtraction.pde | 2 -- .../BrightnessThresholding/BrightnessThresholding.pde | 2 -- .../Capture/BrightnessTracking/BrightnessTracking.pde | 2 -- .../video/examples/Capture/ColorSorting/ColorSorting.pde | 2 -- .../video/examples/Capture/Disgrand/Disgrand.pde | 2 -- .../Capture/FrameDifferencing/FrameDifferencing.pde | 2 -- .../video/examples/Capture/Framingham/Framingham.pde | 2 -- .../GettingStartedCaptureLinux.pde | 3 +-- .../GettingStartedCaptureMac.pde | 3 +-- .../GettingStartedCaptureWin.pde | 5 ++--- .../video/examples/Capture/HsvSpace/HsvSpace.pde | 2 -- .../video/examples/Capture/LivePocky/LivePocky.pde | 2 -- java/libraries/video/examples/Capture/Mirror/Mirror.pde | 2 -- .../libraries/video/examples/Capture/Mirror2/Mirror2.pde | 2 -- .../video/examples/Capture/RadialPocky/RadialPocky.pde | 2 -- .../video/examples/Capture/SlitScan/SlitScan.pde | 2 -- java/libraries/video/examples/Movie/Loop/Loop.pde | 9 --------- .../libraries/video/examples/Movie/Pixelate/Pixelate.pde | 1 - java/libraries/video/examples/Movie/Reverse/Reverse.pde | 4 ++-- java/libraries/video/examples/Movie/Speed/Speed.pde | 2 +- 21 files changed, 7 insertions(+), 47 deletions(-) diff --git a/java/libraries/video/examples/Capture/AsciiVideo/AsciiVideo.pde b/java/libraries/video/examples/Capture/AsciiVideo/AsciiVideo.pde index aa9151a4d..aea1272a3 100644 --- a/java/libraries/video/examples/Capture/AsciiVideo/AsciiVideo.pde +++ b/java/libraries/video/examples/Capture/AsciiVideo/AsciiVideo.pde @@ -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. diff --git a/java/libraries/video/examples/Capture/BackgroundSubtraction/BackgroundSubtraction.pde b/java/libraries/video/examples/Capture/BackgroundSubtraction/BackgroundSubtraction.pde index 46ec4c11a..35c00c2a8 100644 --- a/java/libraries/video/examples/Capture/BackgroundSubtraction/BackgroundSubtraction.pde +++ b/java/libraries/video/examples/Capture/BackgroundSubtraction/BackgroundSubtraction.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/BrightnessThresholding/BrightnessThresholding.pde b/java/libraries/video/examples/Capture/BrightnessThresholding/BrightnessThresholding.pde index 180e2dbfd..7f9d65439 100644 --- a/java/libraries/video/examples/Capture/BrightnessThresholding/BrightnessThresholding.pde +++ b/java/libraries/video/examples/Capture/BrightnessThresholding/BrightnessThresholding.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/BrightnessTracking/BrightnessTracking.pde b/java/libraries/video/examples/Capture/BrightnessTracking/BrightnessTracking.pde index 967df6ad1..649e3866d 100644 --- a/java/libraries/video/examples/Capture/BrightnessTracking/BrightnessTracking.pde +++ b/java/libraries/video/examples/Capture/BrightnessTracking/BrightnessTracking.pde @@ -2,8 +2,6 @@ * Brightness Tracking * by Golan Levin. * - * GSVideo version by Andres Colubri. - * * Tracks the brightest pixel in a live video signal. */ diff --git a/java/libraries/video/examples/Capture/ColorSorting/ColorSorting.pde b/java/libraries/video/examples/Capture/ColorSorting/ColorSorting.pde index d44b55986..631aa264d 100644 --- a/java/libraries/video/examples/Capture/ColorSorting/ColorSorting.pde +++ b/java/libraries/video/examples/Capture/ColorSorting/ColorSorting.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/Disgrand/Disgrand.pde b/java/libraries/video/examples/Capture/Disgrand/Disgrand.pde index fa1afaf9d..56dfa8975 100644 --- a/java/libraries/video/examples/Capture/Disgrand/Disgrand.pde +++ b/java/libraries/video/examples/Capture/Disgrand/Disgrand.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/FrameDifferencing/FrameDifferencing.pde b/java/libraries/video/examples/Capture/FrameDifferencing/FrameDifferencing.pde index e54f92c27..ca7e464b3 100644 --- a/java/libraries/video/examples/Capture/FrameDifferencing/FrameDifferencing.pde +++ b/java/libraries/video/examples/Capture/FrameDifferencing/FrameDifferencing.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/Framingham/Framingham.pde b/java/libraries/video/examples/Capture/Framingham/Framingham.pde index e3363f16a..057834bff 100644 --- a/java/libraries/video/examples/Capture/Framingham/Framingham.pde +++ b/java/libraries/video/examples/Capture/Framingham/Framingham.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/GettingStartedCaptureLinux/GettingStartedCaptureLinux.pde b/java/libraries/video/examples/Capture/GettingStartedCaptureLinux/GettingStartedCaptureLinux.pde index 1772f959c..1311116f1 100644 --- a/java/libraries/video/examples/Capture/GettingStartedCaptureLinux/GettingStartedCaptureLinux.pde +++ b/java/libraries/video/examples/Capture/GettingStartedCaptureLinux/GettingStartedCaptureLinux.pde @@ -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; diff --git a/java/libraries/video/examples/Capture/GettingStartedCaptureMac/GettingStartedCaptureMac.pde b/java/libraries/video/examples/Capture/GettingStartedCaptureMac/GettingStartedCaptureMac.pde index a3e61bc52..4aec5df1a 100644 --- a/java/libraries/video/examples/Capture/GettingStartedCaptureMac/GettingStartedCaptureMac.pde +++ b/java/libraries/video/examples/Capture/GettingStartedCaptureMac/GettingStartedCaptureMac.pde @@ -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; diff --git a/java/libraries/video/examples/Capture/GettingStartedCaptureWin/GettingStartedCaptureWin.pde b/java/libraries/video/examples/Capture/GettingStartedCaptureWin/GettingStartedCaptureWin.pde index ea6ef7feb..dc8872fce 100644 --- a/java/libraries/video/examples/Capture/GettingStartedCaptureWin/GettingStartedCaptureWin.pde +++ b/java/libraries/video/examples/Capture/GettingStartedCaptureWin/GettingStartedCaptureWin.pde @@ -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; diff --git a/java/libraries/video/examples/Capture/HsvSpace/HsvSpace.pde b/java/libraries/video/examples/Capture/HsvSpace/HsvSpace.pde index 8ff72eb39..020f716d7 100644 --- a/java/libraries/video/examples/Capture/HsvSpace/HsvSpace.pde +++ b/java/libraries/video/examples/Capture/HsvSpace/HsvSpace.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/LivePocky/LivePocky.pde b/java/libraries/video/examples/Capture/LivePocky/LivePocky.pde index 6713873d8..a2048559e 100644 --- a/java/libraries/video/examples/Capture/LivePocky/LivePocky.pde +++ b/java/libraries/video/examples/Capture/LivePocky/LivePocky.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/Mirror/Mirror.pde b/java/libraries/video/examples/Capture/Mirror/Mirror.pde index 17f4110ca..9a3181967 100644 --- a/java/libraries/video/examples/Capture/Mirror/Mirror.pde +++ b/java/libraries/video/examples/Capture/Mirror/Mirror.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/Mirror2/Mirror2.pde b/java/libraries/video/examples/Capture/Mirror2/Mirror2.pde index badbe83b9..ecdffb67f 100644 --- a/java/libraries/video/examples/Capture/Mirror2/Mirror2.pde +++ b/java/libraries/video/examples/Capture/Mirror2/Mirror2.pde @@ -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. */ diff --git a/java/libraries/video/examples/Capture/RadialPocky/RadialPocky.pde b/java/libraries/video/examples/Capture/RadialPocky/RadialPocky.pde index c4b43ee22..84051e2d9 100644 --- a/java/libraries/video/examples/Capture/RadialPocky/RadialPocky.pde +++ b/java/libraries/video/examples/Capture/RadialPocky/RadialPocky.pde @@ -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 */ diff --git a/java/libraries/video/examples/Capture/SlitScan/SlitScan.pde b/java/libraries/video/examples/Capture/SlitScan/SlitScan.pde index 46b2989b1..bbcd911e4 100644 --- a/java/libraries/video/examples/Capture/SlitScan/SlitScan.pde +++ b/java/libraries/video/examples/Capture/SlitScan/SlitScan.pde @@ -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 diff --git a/java/libraries/video/examples/Movie/Loop/Loop.pde b/java/libraries/video/examples/Movie/Loop/Loop.pde index 47cf19608..af80646ab 100644 --- a/java/libraries/video/examples/Movie/Loop/Loop.pde +++ b/java/libraries/video/examples/Movie/Loop/Loop.pde @@ -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.*; diff --git a/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde b/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde index a4b62aada..c835b05cf 100644 --- a/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde +++ b/java/libraries/video/examples/Movie/Pixelate/Pixelate.pde @@ -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 diff --git a/java/libraries/video/examples/Movie/Reverse/Reverse.pde b/java/libraries/video/examples/Movie/Reverse/Reverse.pde index c3c0b5e08..4928dcd47 100644 --- a/java/libraries/video/examples/Movie/Reverse/Reverse.pde +++ b/java/libraries/video/examples/Movie/Reverse/Reverse.pde @@ -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 diff --git a/java/libraries/video/examples/Movie/Speed/Speed.pde b/java/libraries/video/examples/Movie/Speed/Speed.pde index 7eb6fd175..7fb235538 100644 --- a/java/libraries/video/examples/Movie/Speed/Speed.pde +++ b/java/libraries/video/examples/Movie/Speed/Speed.pde @@ -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. * */