<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?action=history&amp;feed=atom&amp;title=GMU%3AProcessing_im_Park%2FSophia_Schaefer%2FTheFinal</id>
	<title>GMU:Processing im Park/Sophia Schaefer/TheFinal - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?action=history&amp;feed=atom&amp;title=GMU%3AProcessing_im_Park%2FSophia_Schaefer%2FTheFinal"/>
	<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Processing_im_Park/Sophia_Schaefer/TheFinal&amp;action=history"/>
	<updated>2026-04-29T13:04:31Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Processing_im_Park/Sophia_Schaefer/TheFinal&amp;diff=80122&amp;oldid=prev</id>
		<title>EvilVirus: Created page with &quot;File:FirstIdeaSketch.jpg File:StartTheIdea.jpg File:SecondIdeaSketch.jpg File:NewIdeastoPoint.jpg  File:ThirdIdeaSketch.jpg File:FourthIdeaSketch.jpg [[Fi...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Processing_im_Park/Sophia_Schaefer/TheFinal&amp;diff=80122&amp;oldid=prev"/>
		<updated>2016-03-28T22:45:48Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&lt;a href=&quot;/kunst-und-gestaltung/wiki/File:FirstIdeaSketch.jpg&quot; title=&quot;File:FirstIdeaSketch.jpg&quot;&gt;File:FirstIdeaSketch.jpg&lt;/a&gt; &lt;a href=&quot;/kunst-und-gestaltung/wiki/File:StartTheIdea.jpg&quot; title=&quot;File:StartTheIdea.jpg&quot;&gt;File:StartTheIdea.jpg&lt;/a&gt; &lt;a href=&quot;/kunst-und-gestaltung/wiki/File:SecondIdeaSketch.jpg&quot; title=&quot;File:SecondIdeaSketch.jpg&quot;&gt;File:SecondIdeaSketch.jpg&lt;/a&gt; &lt;a href=&quot;/kunst-und-gestaltung/wiki/File:NewIdeastoPoint.jpg&quot; title=&quot;File:NewIdeastoPoint.jpg&quot;&gt;File:NewIdeastoPoint.jpg&lt;/a&gt;  &lt;a href=&quot;/kunst-und-gestaltung/wiki/File:ThirdIdeaSketch.jpg&quot; title=&quot;File:ThirdIdeaSketch.jpg&quot;&gt;File:ThirdIdeaSketch.jpg&lt;/a&gt; &lt;a href=&quot;/kunst-und-gestaltung/wiki/File:FourthIdeaSketch.jpg&quot; title=&quot;File:FourthIdeaSketch.jpg&quot;&gt;File:FourthIdeaSketch.jpg&lt;/a&gt; [[Fi...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[File:FirstIdeaSketch.jpg]]&lt;br /&gt;
[[File:StartTheIdea.jpg]]&lt;br /&gt;
[[File:SecondIdeaSketch.jpg]]&lt;br /&gt;
[[File:NewIdeastoPoint.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:ThirdIdeaSketch.jpg]]&lt;br /&gt;
[[File:FourthIdeaSketch.jpg]]&lt;br /&gt;
[[File:FifthIdeaSketch.jpg]]&lt;br /&gt;
[[File:ProbleminThisThing.jpg]]&lt;br /&gt;
[[File:SixthIdeaSketch.jpg]]&lt;br /&gt;
[[File:ItisWorkingMyWay.jpg]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
import processing.video.*;&lt;br /&gt;
&lt;br /&gt;
Capture video;&lt;br /&gt;
int maxFrames = 100;&lt;br /&gt;
PImage pic;&lt;br /&gt;
PImage img;&lt;br /&gt;
&lt;br /&gt;
ArrayList frames = new ArrayList();&lt;br /&gt;
&lt;br /&gt;
void setup(){&lt;br /&gt;
  &lt;br /&gt;
  //just THIS format, NO other possible&lt;br /&gt;
  size(640,480);&lt;br /&gt;
  &lt;br /&gt;
  video = new Capture(this,width,height);&lt;br /&gt;
  //important!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&lt;br /&gt;
  video.start();&lt;br /&gt;
  &lt;br /&gt;
  PImage pic = createImage(width,height, RGB);&lt;br /&gt;
  frames.add(pic);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void draw(){&lt;br /&gt;
  PImage pic = (PImage) frames.get(0);&lt;br /&gt;
  image(pic,0,0);&lt;br /&gt;
  img = loadImage(&amp;quot;Stones8.jpg&amp;quot;);&lt;br /&gt;
  img.resize(640,480);&lt;br /&gt;
  int z = 0;&lt;br /&gt;
  int width = 780;&lt;br /&gt;
  int height = 10;&lt;br /&gt;
  &lt;br /&gt;
  for (int i =10; i&amp;lt; 480; i = i + 30){&lt;br /&gt;
  copy(img,z,i,width,height,z,i,width,height);&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
void mousePressed() {&lt;br /&gt;
  PImage pic = (PImage) frames.get(0);&lt;br /&gt;
  image(pic,0,0);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void mouseMoved(){&lt;br /&gt;
  ellipse(mouseX,mouseY, 33,33);}&lt;br /&gt;
&lt;br /&gt;
void captureEvent(Capture video){&lt;br /&gt;
  video.read();&lt;br /&gt;
  pic = video.get();&lt;br /&gt;
  frames.add(pic);&lt;br /&gt;
  if( frames.size() &amp;lt; maxFrames){&lt;br /&gt;
    frames.remove(0);&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt; &amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>EvilVirus</name></author>
	</entry>
</feed>