active questions tagged processing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T04:30:47Z http://stackoverflow.com/feeds/tag/processing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1904454/best-dynamic-languages-for-opengl-general-graphics 0 Best dynamic languages for OpenGL/general graphics Rock and or Roll 2009-12-15T00:17:14Z 2009-12-15T01:30:00Z <p>Which are the most mature and well supported solutions for writing graphical programs?</p> <p>I have been using C++ with OpenGL/GLUT, but would like to try a more flexible and expressive approach.</p> <p>Ruby and Processing? Python and OGRE? What things have worked well for you?</p> http://stackoverflow.com/questions/1901284/orchestration-tool-for-modeling-web-request-processing 0 Orchestration tool for modeling web request processing Kabeer 2009-12-14T14:38:50Z 2009-12-14T14:38:50Z <p>Hello. BizTalk has an orchestration tool for the purpose of defining business processes. I have always wondered that we can likewise model even simpler things. For example, web request processing can be modeled as a process because it has a pattern and various business objects (or say services) can participate. I am curious to know about tools that already exist for this purpose. I guess the tools (if they exist) may not be able to generate 100% of the desired outcome but would surely drop a code template for a developer to fill in where tool cannot. While I am a .Net shop, I'd be open to hear if you have a similar story on a different platform.</p> http://stackoverflow.com/questions/1894562/paging-through-a-very-large-text-file 0 paging through a very large text file tahiry 2009-12-12T20:14:30Z 2009-12-12T22:07:19Z <p>I need to implement a paging widget that would be able to read an arbitrarily large text file. widget will be used by different apps with a wide range of hardware (mobile with low ram on low end) so need to be fairly memory stingy and efficient. the amount to be paged is also going to be arbitrarily different for each user. is there any free sample code that has implemented this somewhere? i'm looking for a java snippet really if possible.</p> http://stackoverflow.com/questions/1889881/using-processing-on-a-server-to-create-images-behind-the-scenes 0 Using Processing on a server to create images behind the scenes David 2009-12-11T18:10:57Z 2009-12-11T18:38:31Z <p>The way I see most people use <a href="http://processing.org" rel="nofollow">Processing</a> is for drawing an image directly onto a screen or webpage on the client side.</p> <p>How would one use Processing to create an image without a visual canvas, then save this image to a file?</p> <p><strong>Here are the specific steps I'm interested in:</strong></p> <ol> <li>Someone visits a webpage, which causes the Processing program to start running</li> <li>The Processing program would work behind the scenes to create an image, then save it to a known filename</li> <li>The webpage would load the known filename (which only exists after the Processing program is run - so, how can the webpage know to load the image when it's finished?)</li> </ol> <p>I'm assuming that the Processing program is running on a server (which is contrary to how Processing usually works), and the file will be stored on the server. I'm also assuming some code in the Processing program to throttle the number of files that are created - for example, it won't create a new image if an existing image was created within 5 minutes.</p> http://stackoverflow.com/questions/1874157/get-output-of-last-process-on-ssas-cube 0 get output of last Process on SSAS cube Raj More 2009-12-09T14:11:46Z 2009-12-11T16:08:44Z <p>I have processed a SSAS cube. After it was done processing, I hit the close button - and then realized that I should have saved the output.</p> <p>I know SSAS stores the processing log somewhere, but I do not remember where to go look for it.</p> <p>Can someone direct me to retrieving processing logs?</p> http://stackoverflow.com/questions/1874779/is-it-possible-to-write-a-program-that-extracts-a-specific-melody-beat-rhythm-fro 2 Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file? Shane 2009-12-09T15:47:17Z 2009-12-09T17:13:07Z <p>Is it possible to write a program that can extract a melody/beat/rhythm provided by a specific instument in a wave (or other music format) file made up of multiple instruments?</p> <p>Which algorithms could be used for this and what programming language would be best suited to it?</p> http://stackoverflow.com/questions/1523872/why-is-my-processing-app-not-behaving 0 Why is my Processing app not behaving? Paul McGuire 2009-10-06T06:17:06Z 2009-12-05T03:53:43Z <p>I am learning to use <a href="http://processing.org/" rel="nofollow">Processing</a>, and have modified one of the examples to create <a href="http://www.ptmcg.com/geo/tesla/index.html" rel="nofollow">this applet</a>. I have two questions:</p> <ol> <li>Why are the spheres oblate? The spheres in the example I cribbed from were nice and round.</li> <li>Why do I get the light showing on the outside edges of the spheres, when the point source is between them?</li> </ol> <p>Here is the source for this little program:</p> <pre><code>int radius = 40; int spheredist = 320; int maxlevel = 7; float ecc = 0.28; int x1, x2, y1, y2; void setup() { size(640, 360, P3D); fill(204); //smooth(); // makes spheres ugly translate(width/2, height/2, 0); x1 = -spheredist/2+radius; x2 = spheredist/2-radius; y1 = y2 = 0; } void drawLightning(int x1_,int y1_,int x2_,int y2_,int lvl){ if (lvl &lt; maxlevel){ int midx = (x1_ + x2_)/2; int midy = (y1_ + y2_)/2; float d = dist(x1_, y1_, x2_, y2_); d *= ecc; midx += random(-d, d); midy += random(-d, d); drawLightning(x1_, y1_, midx, midy, lvl+1); drawLightning(midx, midy, x2_, y2_, lvl+1); } else { strokeWeight(10); stroke(60,100,255,100); line(x1_,y1_,x2_,y2_); strokeWeight(1); stroke(255); line(x1_,y1_,x2_,y2_); } } void draw() { background(0); noStroke(); int brt = 200; pointLight(brt/2, brt/2, brt/2, spheredist/2, -spheredist, spheredist); ambientLight(brt/8,brt/8,brt/8); if ((mouseX &gt; width/4 &amp;&amp; mouseX &lt; width*3/4) &amp;&amp; (mouseY &gt; height/2-radius &amp;&amp; mouseY &lt; height/2+radius)) { pushMatrix(); translate(width/2, height/2, 0); pointLight(100, 100, 255, 0, 0, 0); popMatrix(); } pushMatrix(); translate(width/2 - spheredist/2, height/2, 0); sphere(radius); translate(spheredist, 0, 0); sphere(radius); popMatrix(); if ((mouseX &gt; width/4 &amp;&amp; mouseX &lt; width*3/4) &amp;&amp; (mouseY &gt; height/2-radius &amp;&amp; mouseY &lt; height/2+radius)) { pushMatrix(); translate(width/2, height/2, 0); drawLightning(x1,y1,x2,y2,0); popMatrix(); } } </code></pre> http://stackoverflow.com/questions/1847940/how-to-change-a-glsl-shader-parameter-in-processing 0 How to change a GLSL shader parameter in Processing George Profenza 2009-12-04T16:05:23Z 2009-12-04T18:29:53Z <p>I'm playing with shaders in openGL using Processing. I'm pretty noob at this and a bit lost.</p> <p>I found <a href="http://processing.org/discourse/yabb2/YaBB.pl?num=1159494801" rel="nofollow">this thread</a> that has an example on how to use GLSL shaders in Processing. </p> <p>I'm just trying to the change LightPosition parameter in the shader I'm using. I don't know how to access it though.</p> <p>Here's my code so far:</p> <pre><code>import processing.opengl.*; import javax.media.opengl.*; import javax.media.opengl.glu.*; import com.sun.opengl.util.*; PGraphicsOpenGL pgl; GL gl; GLSL glsl; GLU glu; GLUT glut; boolean glInit; int glutSolidIndex = 7; void setup() { size(600, 500, OPENGL); glu = new GLU(); glut = new GLUT(); pgl = (PGraphicsOpenGL) g; gl = pgl.gl; } void draw() { background(0); PGraphicsOpenGL pgl = (PGraphicsOpenGL) g; GL gl = pgl.beginGL(); if(!glInit){ glsl=new GLSL(); glsl.loadVertexShader("toon.vs"); glsl.loadFragmentShader("toon.fs"); glsl.useShaders(); gl.glEnable(GL.GL_DEPTH_TEST); gl.glDepthFunc(GL.GL_LESS); gl.glShadeModel(GL.GL_SMOOTH); glInit = true; } gl.glClear(gl.GL_COLOR_BUFFER_BIT | gl.GL_DEPTH_BUFFER_BIT); //TRS gl.glTranslatef(width * .5, height * .5,0.0f); gl.glRotatef(160,1,0,0); gl.glRotatef(frameCount * .5,0,1,0); gl.glRotatef(frameCount * .5,0,0,1); gl.glScalef(80,80,80); // draw glsl.startShader(); gl.glColor3f(1.0f, 0.5f, 0.0f); gl.glFrontFace(gl.GL_CW); glutSolid(); gl.glFrontFace(gl.GL_CCW); glsl.endShader(); pgl.endGL(); } void glutSolid(){ switch(glutSolidIndex){ case 0: glut.glutSolidCube(1); break; case 1: glut.glutSolidTetrahedron(); break; case 2: glut.glutSolidOctahedron(); break; case 3: glut.glutSolidDodecahedron(); break; case 4: glut.glutSolidIcosahedron(); break; case 5: glut.glutSolidSphere(1,8,6); break; case 6: glut.glutSolidTorus(1,1.5,8,6); break; case 7: glut.glutSolidTeapot(1); break; } } void keyPressed(){ if((int)key &gt;= 49 &amp;&amp; (int)key &lt;= 56) glutSolidIndex = (int)(key) - 49; } </code></pre> <p>the GLSL class looks like this:</p> <pre><code>import processing.opengl.*; import javax.media.opengl.*; import java.nio.IntBuffer; import java.nio.ByteBuffer; import com.sun.opengl.util.BufferUtil; class GLSL { int programObject; GL gl; boolean vertexShaderEnabled; boolean vertexShaderSupported; int vs; int fs; GLSL() { PGraphicsOpenGL pgl = (PGraphicsOpenGL) g; gl = pgl.gl; //gl=((PGraphicsGL)g).gl; String extensions = gl.glGetString(GL.GL_EXTENSIONS); vertexShaderSupported = extensions.indexOf("GL_ARB_vertex_shader") != -1; vertexShaderEnabled = true; programObject = gl.glCreateProgramObjectARB(); vs=-1; fs=-1; } void loadVertexShader(String file) { String shaderSource=join(loadStrings(file),"\n"); vs = gl.glCreateShaderObjectARB(GL.GL_VERTEX_SHADER_ARB); gl.glShaderSourceARB(vs, 1, new String[]{shaderSource},(int[]) null, 0); gl.glCompileShaderARB(vs); checkLogInfo(gl, vs); gl.glAttachObjectARB(programObject, vs); } void loadFragmentShader(String file) { String shaderSource=join(loadStrings(file),"\n"); fs = gl.glCreateShaderObjectARB(GL.GL_FRAGMENT_SHADER_ARB); gl.glShaderSourceARB(fs, 1, new String[]{shaderSource},(int[]) null, 0); gl.glCompileShaderARB(fs); checkLogInfo(gl, fs); gl.glAttachObjectARB(programObject, fs); } int getAttribLocation(String name) { return(gl.glGetAttribLocationARB(programObject,name)); } int getUniformLocation(String name) { return(gl.glGetUniformLocationARB(programObject,name)); } void useShaders() { gl.glLinkProgramARB(programObject); gl.glValidateProgramARB(programObject); checkLogInfo(gl, programObject); } void startShader() { gl.glUseProgramObjectARB(programObject); } void endShader() { gl.glUseProgramObjectARB(0); } void checkLogInfo(GL gl, int obj) { IntBuffer iVal = BufferUtil.newIntBuffer(1); gl.glGetObjectParameterivARB(obj, GL.GL_OBJECT_INFO_LOG_LENGTH_ARB, iVal); int length = iVal.get(); if (length &lt;= 1) { return; } ByteBuffer infoLog = BufferUtil.newByteBuffer(length); iVal.flip(); gl.glGetInfoLogARB(obj, length, iVal, infoLog); byte[] infoBytes = new byte[length]; infoLog.get(infoBytes); println("GLSL Validation &gt;&gt; " + new String(infoBytes)); } } </code></pre> <p>And I'm using the <a href="http://www.lighthouse3d.com/opengl/glsl/index.php?toon3" rel="nofollow">toon shader</a> written by Philip Rideout from 3Dlabs.</p> <p>This is the vertex shader:</p> <pre><code>// Vertex shader for cartoon-style shading // // Author: Philip Rideout // // Copyright (c) 2005-2006 3Dlabs Inc. Ltd. // // See 3Dlabs-License.txt for license information // varying vec3 Normal; void main(void) { Normal = normalize(gl_NormalMatrix * gl_Normal); #ifdef __GLSL_CG_DATA_TYPES // Fix clipping for Nvidia and ATI gl_ClipVertex = gl_ModelViewMatrix * gl_Vertex; #endif gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; } </code></pre> <p>and here is the fragment shader:</p> <pre><code>/* http://www.lighthouse3d.com/opengl/glsl/index.php?toon2 */ varying vec3 Normal; vec3 LightPosition = vec3(10.0, 10.0, 20.0); void main() { vec4 color1 = gl_FrontMaterial.diffuse; vec4 color2; float intensity = dot(normalize(LightPosition),Normal); if (intensity &gt; 0.95) color2 = vec4(1.0, 1.0, 1.0, 1.0); else if (intensity &gt; 0.75) color2 = vec4(0.8, 0.8, 0.8, 1.0); else if (intensity &gt; 0.50) color2 = vec4(0.6, 0.6, 0.6, 1.0); else if (intensity &gt; 0.25) color2 = vec4(0.4, 0.4, 0.4, 1.0); else color2 = vec4(0.2, 0.2, 0.2, 1.0); gl_FragColor = color1 * color2; } </code></pre> <p>Any hints will be helpful.</p> http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d 6 how to extrude a path in 3d ? George Profenza 2009-11-30T01:03:56Z 2009-12-04T16:45:55Z <p>Hi,</p> <p>I'm trying to extrude a path in 3d. Nothing fancy yet, just following some points and using a regular polygon for 'tubing'. I'm using Processing for now to quickly prototype, but will later turn the code into OpenGL.</p> <p>My problem is rotating the 'joints' at the right angles. I think I have a rough idea how to get the angles, not sure.</p> <p>I've started from a sample by Simon Greenwold(Processing > File > Examples > 3D > Form > Vertices).Here's my attempt so far:</p> <p><strong>UPDATE > REFACTORED/SIMPLIFIED CODE</strong></p> <pre><code>Here is the main sketch code: int pointsNum = 10; Extrusion star; int zoom = 0; void setup() { size(500, 500, P3D); PVector[] points = new PVector[pointsNum+1]; for(int i = 0 ; i &lt;= pointsNum ; i++){ float angle = TWO_PI/pointsNum * i; if(i % 2 == 0) points[i] = new PVector(cos(angle) * 100,sin(angle) * 100,0); else points[i] = new PVector(cos(angle) * 50,sin(angle) * 50,0); } star = new Extrusion(10,10,points,3); } void draw() { background(0); lights(); translate(width / 2, height / 2,zoom); rotateY(map(mouseX, 0, width, 0, PI)); rotateX(map(mouseY, 0, height, 0, PI)); rotateZ(-HALF_PI); noStroke(); fill(255, 255, 255); translate(0, -40, 0); star.draw(); } void keyPressed(){ if(key == 'a') zoom += 5; if(key == 's') zoom -= 5; } </code></pre> <p>And here is the Extrusion class:</p> <p>import processing.core.PMatrix3D;</p> <pre><code>class Extrusion{ float topRadius,bottomRadius,tall,sides; int pointsNum; PVector[] points; Extrusion(){} Extrusion(float topRadius, float bottomRadius, PVector[] points, int sides) { this.topRadius = topRadius; this.bottomRadius = bottomRadius; this.points = points; this.pointsNum = points.length; this.sides = sides; } void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); for(int j = 0; j &lt; sides + 1; j++){ vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p><strong>UPDATE</strong></p> <p>Here is how my sketch looks like:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/extrude.gif" alt="processing extrude"></p> <p>The problem is the joints aren't at the right angle, so the extrude looks wrong. This isn't a very good example, as this could be achieved with a lathe. If I can get a lathe to work with an arbitrary set of points and an axis that will be great. I am using extrusion because I am trying to create geometric bodies based on the art of Liviu Stoicoviciu.</p> <p>Here are some samples:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpainting.jpg" alt="star painting"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpaper%5Fsculpture.jpg" alt="star paper sculpture"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/triangles%5Fpencil.jpg" alt="triangles"></p> <p>Sorry about the poor quality.</p> <p>As you can see in the triangles image, that would be achieved with extrusions.</p> <p><strong>UPDATE</strong></p> <p>Here's my attempt to use drhirsch's help in the draw method:</p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); for(int j = 0; j &lt; sides + 1; j++){ PVector s = new PVector(0,0,1); PVector cn = new PVector(); points[i].normalize(cn); PVector r = s.cross(cn); float a = acos(s.dot(cn)); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(a,r.x,r.y,r.z); PVector rotVec = new PVector(); rot.mult(points[i],rotVec); rotVec.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); vertex(rotVec.x,rotVec.y,rotVec.y); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } </code></pre> <p>I've refactored the code so now the class that used to be called CShape is called Extrude, the code is less and hopefully simples, and I use an array of PVector objects instead of a Vector of PVector objects which might be confusing.</p> <p>Here is my yet another attempt with some escher-esque results:</p> <p><em>upated draw</em></p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); float angleBetweenNextAndPrevious = 0.0; if(i &lt; pointsNum - 1) angleBetweenNextAndPrevious = PVector.angleBetween(points[i],points[i+1]); for(int j = 0; j &lt; sides + 1; j++){ PVector s = new PVector(0,0,1); PVector s2 = new PVector(0,0,1); PVector cn = new PVector(); PVector cn2 = new PVector(); points[i-1].normalize(cn); points[i].normalize(cn); PVector r = s.cross(cn); PVector r2 = s.cross(cn2); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); PMatrix3D rot2 = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(angleBetweenNextAndPrevious,r.x,r.y,r.z); rot2.rotate(angleBetweenNextAndPrevious,r2.x,r2.y,r2.z); PVector rotVec = new PVector(); rot.mult(points[i-1],rotVec); rotVec.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); PVector rotVec2 = new PVector(); rot2.mult(points[i],rotVec2); rotVec2.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); vertex(rotVec.x,rotVec.y,rotVec.z); vertex(rotVec2.x,rotVec2.y,rotVec2.z); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p><img src="http://doc.gold.ac.uk/~ma802gp/extrude2.gif" alt="fix_test"></p> <p>Edit by drhirsch This should work:</p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); float angleBetweenNextAndPrevious = 0.0; if(i &lt; pointsNum - 1) angleBetweenNextAndPrevious = PVector.angleBetween(points[i],points[i+1]); PVector s = new PVector(0,0,1); PVector s2 = new PVector(0,0,1); PVector cn = new PVector(); PVector cn2 = new PVector(); points[i-1].normalize(cn); points[i].normalize(cn2); PVector r = s.cross(cn); PVector r2 = s.cross(cn2); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); PMatrix3D rot2 = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(angleBetweenNextAndPrevious,r.x,r.y,r.z); rot2.rotate(angleBetweenNextAndPrevious,r2.x,r2.y,r2.z); PVector rotVec = new PVector(); PVector rotVec2 = new PVector(); for(int j = 0; j &lt; sides + 1; j++){ // I am still not sure about this. Should the shape be in the xy plane // if the extrusion is mainly along the z axis? If the shape is now in // the xz plane, you need to use (0,1,0) as normal vector of the shape // (this would be s and s2 above, don't use the short names I have // used, sorry) PVector shape = new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius); rot.mult(shape, rotVec); rot2.mult(shape,rotVec2); rotVec.add(points[i-1]); rotVec2.add(points[i]); vertex(rotVec.x,rotVec.y,rotVec.z); vertex(rotVec2.x,rotVec2.y,rotVec2.z); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p>UPDATE</p> <p>Here is a simple illustration of my problem:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/description.gif" alt="description"></p> <p>The blue path is equivalent to the points[] PVector array in my code, if pointsNum = 6. The red path is what I'm struggling to solve, the green path is what I want to achieve.</p> <p><strong>UPDATE</strong></p> <p>Some minor issues with the order of vertices I think. Here are some print screens using 6 points and no (if/else % 2) star condition.</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/points1.gif" alt="points1"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/points2.gif" alt="alt text"></p> http://stackoverflow.com/questions/123209/best-book-to-learn-the-processing-programming-language 3 Best book to learn the Processing programming language? jwfearn 2008-09-23T19:25:15Z 2009-12-03T20:19:12Z <p>I am a programmer interested in learning Processing (the programming language). <a href="http://www.processing.org/" rel="nofollow">The main Processing site</a> is obviously the primary resource. Indeed they have much great information. They even include a <a href="http://www.processing.org/learning/books/" rel="nofollow">list</a> of fairly expensive books:</p> <p><img src="http://www.processing.org/img/cover/cover_reasfry.jpg" alt="alt text" /> <img src="http://www.processing.org/img/cover/cover_greenberg.jpg" alt="alt text" /> <img src="http://www.processing.org/img/cover/cover_fry.jpg" alt="alt text" /> <img src="http://www.processing.org/img/cover/cover_shiffman.jpg" alt="alt text" /> ... and others</p> <p>Let's assume that in addition to online resources, I want to get a <strong>book</strong> to study during my off-line time (airplane, toilet, subway, bed, etc.) Let's also assume that I am a programmer, rather than a visual artist (Processing is popular for art projects) so I don't need tutelage in programming basics.</p> <p>Are you a Processing coder? Which books (above or others) do you recommend?</p> http://stackoverflow.com/questions/1045877/help-me-convert-processing-code-to-c 0 help me convert Processing code to C# Crash893 2009-06-25T19:51:23Z 2009-12-03T20:01:42Z <p>I am trying to convert this code from java to C# (located <a href="http://www.complexification.net/gallery/machines/buddhabrot/" rel="nofollow">here</a>)</p> <p>I have some winform experience but not a lot with the drawing of pixels on a winform applications.</p> <p>I feel fairly confident I can convert over most of the sub methods im just unclear on how i would draw indiviual pixels on the screen</p> <p>any help or tools for converting over java to c# would be greatly apprehsated</p> <pre><code>// Buddhabrot // j.tarbell January, 2004 // Albuquerque, New Mexico // complexification.net // based on code by Paul Bourke // astronomy.swin.edu.au/~pbourke/ // Processing 0085 Beta syntax update // j.tarbell April, 2005 int dim = 800; // screen dimensions (square window) int bailout = 200; // number of iterations before bail int plots = 10000; // number of plots to execute per frame (x30 = plots per second) // 2D array to hold exposure values int[] exposure = new int[dim*dim]; int maxexposure; // maximum exposure value int time = 0; int exposures = 0; boolean drawing; PFont metaBold; // MAIN ---------------------------------------------------------------- void setup() { // set up drawing area size(800,800,P3D); background(0); // take it nice and easy framerate(15); // load typeface metaBold = loadFont("Arial-48.vlw"); } void draw() { plotPlots(); time++; if (time%30==0) { // show progress every 2 seconds or so... findMaxExposure(); renderBrot(); // show exposure value fill(255); noStroke(); textFont(metaBold, 14); text("bailout: "+bailout+" exposures: "+exposures, 5, dim-6); } } void plotPlots() { float x, y; // iterate through some plots for (int n=0;n&lt;plots;n++) { // Choose a random point in same range x = random(-2.0,1.0); y = random(-1.5,1.5); if (iterate(x,y,false)) { iterate(x,y,true); exposures++; } } } void renderBrot() { // draw to screen for (int i=0;i&lt;dim;i++) { for (int j=0;j&lt;dim;j++) { float ramp = exposure[i*dim+j] / (maxexposure / 2.5); // blow out ultra bright regions if (ramp &gt; 1) { ramp = 1; } color c = color(int(ramp*255), int(ramp*255), int(ramp*255)); set(j,i,c); } } } // Iterate the Mandelbrot and return TRUE if the point exits // Also handle the drawing of the exit points boolean iterate(float x0, float y0, boolean drawIt) { float x = 0; float y = 0; float xnew, ynew; int ix,iy; for (int i=0;i&lt;bailout;i++) { xnew = x * x - y * y + x0; ynew = 2 * x * y + y0; if (drawIt &amp;&amp; (i &gt; 3)) { ix = int(dim * (xnew + 2.0) / 3.0); iy = int(dim * (ynew + 1.5) / 3.0); if (ix &gt;= 0 &amp;&amp; iy &gt;= 0 &amp;&amp; ix &lt; dim &amp;&amp; iy &lt; dim) { // rotate and expose point exposure[ix*dim+iy]++; } } if ((xnew*xnew + ynew*ynew) &gt; 4) { // escapes return true; } x = xnew; y = ynew; } // does not escape return false; } void findMaxExposure() { // assume no exposure maxexposure=0; // find the largest density value for (int i=0;i&lt;dim;i++) { for (int j=0;j&lt;dim;j++) { maxexposure = max(maxexposure,exposure[i*dim+j]); } } } // Buddhabrot // j.tarbell January, 2004 </code></pre> http://stackoverflow.com/questions/1828700/using-c-in-xcode-for-image-and-video-processing 0 Using C++ in xcode for image and video processing Max 2009-12-01T20:29:40Z 2009-12-02T08:40:26Z <p>I am studying in the area of image and video processing - specifically in the field of pattern recognition (objects, people etc.). I wish to use a programming language to apply the transformation to images and video (more importantly video). I am thinking of using C++ in Xcode to do this. The algorithms I wanna build I want to take data from the web (e.g. submitted videos) - process them and then give an output. My question has several parts:</p> <p>(1) Is C++ the best language to do this in? Can this be done in Python? (I'm guessing C++ is faster than Python and can probably handle larger files/more intense algos)</p> <p>(2) What is the best way for setting up a project for this in xcode - is it a straight (A) Command-line tools "vanilla" project or should I go for (B) a Cocoa application in objective C? (I will need to learn Obj-C)</p> <p>My short term objective is to write some simple alorithms and see how they work on video. Then to hook this up (at the back end) to a front end web GUI (so I can submit videos to my code). Volumes wont be huge - but file sizes may be substantial.</p> <p>Any insight will be hugely appreciated.</p> <p>Max. </p> http://stackoverflow.com/questions/1760366/how-would-i-go-about-plotting-live-stock-market-data-with-processing-jquery-p 0 How would I go about plotting "live" stock market data with Processing, jQuery, Pure Data or Max/MSP? Euklides 2009-11-19T01:32:34Z 2009-12-02T00:29:53Z <p>This is intended as a question quite open to any suggestions, hints or pointers. I wish to start playing around with home brewed automated investment models, the beginnings of which I have concepts for. I'm familiar with a few frameworks/languages that I suspect might be able to help me in this. Suggestions regarding other languages than those specified are also welcome.</p> <p>I might be able to query XML data from Google or Yahoo finance APIs? Not overly familiar with XML. Where would I find the relevant tutorials or information on XML to achieve this purpose?</p> <p>Also, is there a way to make searches through a large set of "current" stock data (current value of many stocks) for certain specified conditions?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1827842/i-switched-my-credit-card-processing-service-from-quickbooks-intuit-to-united-ban 0 I switched my credit card processing service from Quickbooks intuit to United Bank Card [closed] chad 2009-12-01T18:02:06Z 2009-12-01T18:02:06Z <p>I have used quickbooks for years and have used the intuit service that processes credit cards. I recently switched and the company provided a plug-in for quickbooks. Everything worked well until i cancelled my service with quickbooks and when i came back from holiday vacation the card swiper no longer reads and the system is acting up. Is there anyone that knows or has a clue what the problem is. The new plug in is called "PROPAYMENTS"</p> <p>HELP !!</p> http://stackoverflow.com/questions/1823692/finding-the-joy-of-javascript-or-searching-for-another-ui-focused-languages 0 Finding the joy of Javascript or searching for another UI-focused languages? Midipixel 2009-12-01T02:51:01Z 2009-12-01T05:40:05Z <p>Hey everyone,</p> <p>I'm a GUI designer/interactive musician wanting to improve my programming chops. I already know the basics(variables, loops, arrays, if/else, some logic), but I'm looking to learn in a structured way. I've seen some great books/tuts on Python and Processing (and even Flash)that aim to teach the fundamentals of programming in a fun and accessible. I've drooled on these books and considered learning Python many times, but to be honest, I don't know if these languages could be usefull for me on a professional sense. I need something directly related to interactive interface scripting/programming and JS seems to be my best bet (I've been trying AS3 but the OOP stuff made it somewhat hard for me). </p> <p>I know JS can be fun (Jquery is). But I just can't find learning sources that are as compelling as the aforementioned material. All I find are tutorials and books that teach web development topics, such as form validation and ajax. I've tried looking for JS game frameworks, but all of them seem to be built for experienced developers and lack documetation or begginer's tutorials.</p> <p>So, any directions on finding the joy in JS? Perhaps suggestions on other UI-focused languages ? Thanks for reading this long question. </p> http://stackoverflow.com/questions/1817474/how-to-tell-when-an-font-face-rule-is-applied 0 How to tell when an @font-face rule is applied Elijah Grey 2009-11-30T01:36:25Z 2009-11-30T18:48:21Z <p>Is there any way to tell when an @font-face rule is applied? I'm creating @font-face rules that use data: URIs from a font file requested with an synchronous XMLHttpRequest in JavaScript and then write text to a canvas element using the font right away. The thing is that it doesn't actually use the font when drawing the text for the first few milliseconds. My current solution is to block execution for a few milliseconds by sending a synchronous XMLHttpRequest, which is a terrible solution.</p> <p>I cannot make this asynchronous as it is for implementing <a href="http://processing.org/" rel="nofollow">Processing</a>'s <code>loadFont()</code> function, which is synchronous, in <a href="http://processingjs.org/" rel="nofollow">Processing.js</a>.</p> <p>I would prefer that the solution not check the dimensions of character as there's no guarantee that the font has a certain character and that its dimensions are different from the same character of the current font.</p> http://stackoverflow.com/questions/1635127/hashmap-and-incrementing-values-in-procesing 1 HashMap and incrementing values in Procesing David 2009-10-28T04:01:35Z 2009-11-29T17:28:18Z <p>Hi there,</p> <p>I have a HashMap that I'm using in Processing and I'd like to increment the value in the map. I Google'd it and it showed me that the following code is correct:</p> <pre><code>if (colors.containsKey(ckey)) { colors.put(ckey, colors.get(ckey) + 1); } else { colors.put(ckey, 1); } </code></pre> <p>I keep getting:</p> <p>The operator + is undefined for the argument type(s) Object, int</p> <p>I'm not a Java coder but the reference says it returns an Object...do I have to use a .getValue() method on it to extract the int?</p> <p>Maybe I'm doing something else wrong? Hmmm.</p> <p>Regards.</p> http://stackoverflow.com/questions/1808570/image-postprocessing-for-cms 0 Image postprocessing for CMS Pekka 2009-11-27T12:45:08Z 2009-11-27T12:53:45Z <p>Does anybody know a good PHP library for basic image postprocessing functions like hue / lightness / contrast using pure GD?</p> http://stackoverflow.com/questions/1427105/rendering-images-with-processing-org-on-java-servlet 0 Rendering images with Processing.org on Java servlet RafaƂ Sobota 2009-09-15T13:13:49Z 2009-11-21T09:43:56Z <p>How to render Processing.org images on Java servlet?</p> <p>My scala code is:</p> <pre><code>class Image extends PApplet { override def setup { size(200,200) background(0) } override def draw { stroke(255) line(10,10,50,50) } def renderImage = g.getImage } class ImageServlet extends HttpServlet { override def doGet(request: HttpServletRequest, response: HttpServletResponse) { response.setContentType("image/gif") val os: OutputStream = response.getOutputStream val image = new Image javax.imageio.ImageIO.write(image.renderImage.asInstanceOf[RenderedImage],"GIF86", os); } } </code></pre> http://stackoverflow.com/questions/1772815/when-should-you-not-use-the-new-parallel-loop-functions-in-c 1 When should you not use the new parallel loop functions in c# Gene 2009-11-20T19:46:12Z 2009-11-20T20:14:35Z <p>For maintainability purposes, my impulse is to simply use parallel processing all the time. For simple loops it sounds like there is overhead which could actually slow the function, and presumably for loops where order of execution makes a difference it is a mistake. </p> <p>How do you decide when to use parallel processing and when to avoid it?</p> http://stackoverflow.com/questions/1522212/guidelines-for-determining-the-maximum-frequency-to-process-an-ssas-cube 2 Guidelines for determining the maximum frequency to process an SSAS cube? Winston Fassett 2009-10-05T20:29:19Z 2009-11-20T16:37:00Z <p>We have an Analysis Services cube that needs to be as real-time as possible. It's a relatively small cube that currently takes a couple of seconds to process.</p> <p>Are there any guidelines for this? I'm curious what other folks are doing. </p> <p>Also, what would be the impact of processing the cube too frequently? Would the main concern be the load on the SSAS server and the source DB? In our case it would be fairly nominal. How would SSAS clients be affected? Current SSAS consumers are Excel, PerformancePoint, and Sharepoint/Excel Services.</p> http://stackoverflow.com/questions/1746377/checking-for-content-in-django-request-post 0 Checking for content in Django request.POST GrumpyCanuck 2009-11-17T03:20:45Z 2009-11-17T13:49:15Z <p>I feel like such a n00b asking this question but it's late and I'm tired. ;)</p> <p> I am accepting data via request.POST like this: <pre> if request.method == 'POST': l = Location() data = l.getGeoPoints(request.POST) appid = settings.GOOGLE_API_KEY return render_to_response('map.html', {'data': data, 'appid': appid}, context_instance=RequestContext(request)) </pre> <br> Pretty basic stuff. It accepts data from a bunch of text input boxes called "form-0-location" all the way up to "form-5-location". </p> <p>What I want to add in is a check to make sure that request.POST contains data in any of those input fields. I think my problem is that I do not know the correct terminology for describing this in Django. I know how to do it in PHP: look inside $_POST for at least one of those fields to not be empty, but I can't seem to find the right answer via searching for google. </p> <p> If I don't find any data in those input fields, I want to redirect the user back to the main page. </p> http://stackoverflow.com/questions/1734207/how-to-set-java-library-path-for-processing 0 how to set java library path for processing Haiyuan Zhang 2009-11-14T13:18:44Z 2009-11-14T13:21:47Z <p>Hi,</p> <p>I'm using pde to run a processing app , and I got the following error :</p> <p>"Verify that the java.library.path property is correctly set" .</p> <p>could anyone of you tells me how to solve this problem ?</p> <p>thanks in advance .</p> http://stackoverflow.com/questions/1731968/java-zoom-3d-data-visualization-libraries 1 Java - Zoom / 3D Data Visualization Libraries MJLefevre 2009-11-13T21:14:20Z 2009-11-14T02:04:55Z <p>What are the best libraries/frameworks for doing 3D and/or Zoom interfaces in Java? I'd like to be able to do some prototyping of creating new types of interfaces for navigating within data and representing object graphs/relationships.</p> <p>Low and no cost options are better. Open Source is also a plus.</p> <p><strong>UPDATE</strong>:<br> The higher level the api the better. Ideally I could set some properties (color, shape, etc) on my virtual object, register it with the visualization environment/engine, hook in callback functions...for example when a user hovers, clicks or double clicks on an object my code would get kicked off, and the visualization environment would handle the rest. So the rendering of the objects, navigation, zoom, user interaction would all be handled by the engine. Tall order probably, but this seems like it could exist as a reusable/generic tool.</p> http://stackoverflow.com/questions/837294/is-there-a-way-to-manipulate-code-generated-by-processing-js-via-javascript 0 Is there a way to manipulate code generated by Processing.js via Javascript? jashugan_oid 2009-05-07T22:06:57Z 2009-11-13T21:34:13Z <p>I would like to call some functions or alter some variables after the Processing.js code has been parsed. Right now the only way to do this is to manipulate the source code, and then reload the source into Processing.</p> http://stackoverflow.com/questions/1728405/basic-dsp-question 0 Basic DSP question bitrex 2009-11-13T10:31:21Z 2009-11-13T14:26:02Z <p>I'm new to DSP programming, and I'm wondering how best to carry out the seemingly basic operation of level adujustment. Say I have an 8 bit number that represents the amplitude I want a signal to be in 256 steps. I have a set of 16 bit numbers representing the signal data. What's the best way to go about scaling the signal data based on the "volume" parameter so that say 0 is complete attenuation, and 255 leaves the data unchanged?</p> http://stackoverflow.com/questions/1720082/project-help-on-image-processing 0 project help on image processing mithila 2009-11-12T05:28:12Z 2009-11-12T06:06:33Z <p>how to start a project on image processing? what are the initial steps? what to read or which language/library to use?</p> http://stackoverflow.com/questions/1719872/c-solution-for-analysing-files-as-they-are-written-modified 1 C# solution for analysing files as they are written/modified Smurf 2009-11-12T04:25:17Z 2009-11-12T04:34:09Z <p>I have several projects that require me to monitor files, and then edit them as they are getting written to disk. I have a feeling that what I am looking for is operationally the same as how anti-virus tools operate. Let me give more details: 1) I need to trap all files saved by Office application, and then add specific company tags to the headers/footers of each document as they are getting written to disk. 2) I need to know immediately when an editable file (of pretty much any type) is written to disk, so that I can undertake some scanning operations to check if files content meets certain company policies.</p> <p>In short, you can see that I need to process any <em>user</em> files as they are being written to disk.</p> <p>Here is my problem. I want to use C# for this task, but I am not sure if it has the ability to meet my requirements. Everything I have seen on the net is geared towards lower-level C programming, which I specifically want to avoid due to time constraints for this project. Anyone aware of how to easily do this task in C#? Is it even feasible (ie too high-level a language, too slow a language etc.)?</p> http://stackoverflow.com/questions/1683587/how-to-extract-the-second-record-from-my-plist 0 How to extract the second record from my plist? Steven McDonald 2009-11-05T21:03:15Z 2009-11-06T00:25:51Z <p>I have a sample database file called albums.plist It is structured as below (very simple layout).</p> <p>I am new to Objective-C programming and would learn a lot if someone is able to help me figure this out.</p> <p>What I would like to do programatically is parse this database and for example, show on screen for example, the second albums details - that is album and artist - on two <code>UILabels</code></p> <p>One would be a UILabel called <code>artist_name</code> and would therefore be set to: <code>@"David Bowie"</code> and underneath another <code>UILabel</code> called <code>album_name</code> set to: <code>@"Heroes"</code></p> <p>Can someone help me out with this? I would learn a lot from it.</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt; &lt;plist version="1.0"&gt; &lt;dict&gt; &lt;key&gt;The Beatles&lt;/key&gt; &lt;string&gt;Let It Be&lt;/string&gt; &lt;key&gt;David Bowie&lt;/key&gt; &lt;string&gt;Heroes&lt;/string&gt; &lt;key&gt;Dire Straits&lt;/key&gt; &lt;string&gt;Brothers In Arms&lt;/string&gt; &lt;/dict&gt; &lt;/plist&gt; </code></pre> <p>I have came across code below which I could probably use to open access to the file.</p> <p>I just need a few pointers as to how to access the second record in the database?</p> <p>Many Thanks.</p> <pre><code>NSString *path = [[NSBundle mainBundle] bundlePath]; NSString *finalPath = [path stringByAppendingPathComponent:@"albums.plist"]; plistDictionary = [[NSDictionary dictionaryWithContentsOfFile:finalPath] retain]; </code></pre> http://stackoverflow.com/questions/1679987/ajax-textarea-blocked-for-writing-when-processing-request 0 AJAX textarea blocked for writing when processing request Gal 2009-11-05T11:34:52Z 2009-11-05T11:47:15Z <p>I have a textarea where people can write comments and click a button to post them. The processing is done with AJAX and so I want that as long as the server is processing the user request (and after too), the button and textarea will be blocked for editing/writing/clicking.</p> <p>It's very similar to how comments on Youtube videos work.</p> <p>Do you have an idea how to do this? I'm very new to ajax and so I would appreciate a detailed response,</p> <p>thanks!</p>