Putting Drawing into the scene with proscene
Hello guys, Could anyone help how to put a "drawing" or image, using the Proscene library? I would like to put on the scene "Human Body" representing the body, and rotate the same, seeing different...
View ArticleWhen triggering a sound file there is a delay or latency, can this be reduced?
Heres a simple example that demonstrates the 70mS delay between triggering a sound file and it actually creating the sound. This was tested with processing 3 on a windows platform. A microphone signal...
View ArticleProblem stablishing communication via OSC between mac and ubuntu
Hi, all, I’m trying to communicate with oscp5 via ethernet, with a simple example, between mac and ubuntu. As mac is receiving, not the same with ubuntu. I’m pretty new with ubuntu but, first of all...
View ArticleQuestion about tweaking G4P 3.5
I wrote a program I use a lot it Processing 2.2.1 and use G4P as part of the GUI. The problem is, I use a pen monitor and the GUI doesn't allow my pen touches ( MouseEvent.PRESSED) to trigger an event....
View Articleopencv problem with bootcamp
I'm trying to do face detection on a video with opencv on bootcamp (windows 10) and processing 2.2.1 import processing.video.*; Movie video; import gab.opencv.*; import java.awt.Rectangle; OpenCV...
View ArticleDrawing the human silhouette with bezier
Hello guys, Sorry but I will try to ask something complicated again ... (laughs) ... Below are two code snippets in the first example has a "silhouette" human, designed with bezier, the example I took...
View ArticleTranslate doesn't work with vertex
Hey guys, I'm completely new to processing, seems a magnificent tool! But I have a problem which in the end comes to this prototype example: size (600,600); translate(width/2, height/2);...
View ArticleSynchronizing sound and graphics: drawing commands need "flushing"?
I draw a background then several circles using ellipse(). I want to create a sound synchronized with the appearance of each circle. In a test of the circle-building loop, each call to ellipse() is...
View ArticleVideo file formats?
Can anyone recommend preferred file formats for the Processing 3 Video library? I am running some tests in H264 and playback is choppy. I know that format makes a huge difference. Does anyone have...
View ArticleBoofCV detecting x and y coordinates of fiducials
Hi I am trying to find the x and y coordinates of detected fiducials from Processing BoofCV. Can someone please point me to some examples? Thanks in advance. S
View ArticleUsing Mindset Library for accessing Neurosky
Hello, I am trying to run an example sketch to use Neurosky on windows 7 in processing 3.1.1. I am using this library available at www.jorgecardoso.eu/processing/MindSetProcessing. Example sketch name...
View ArticleWhere can I get SimpleOpenNi?
Hello, I'm a new user in processing. I recently installed Kinect v1 and I'm trying to do skeleton tracking. It seems like I have to use SimpleOpenNi for the function, but I could not search the library...
View ArticleGiving custom PCM data to BeatDetect
How should audio data be formatted when it's passed to BeatDetect.detect()? Let's say the audio data I have is stereo PCM data... [leftsample1, rightsample2, leftsample2, rightsample2, ....,...
View ArticleClicking an Image to change it to another image
I'm very new to processing and have been trying to figure this out for awhile and I'm sure it is easy but I need help. All I'm trying to do is turn the jellyfish image to the plastic bag image when it...
View Articleusing processing.sound: java VM failes to initialize
For a a few weeks now I have this problem: when I start my sketch with processing.sound in it in 50% of all starts I get the following error message in the console: Could not run the sketch (Target VM...
View ArticleTTS with mbrola is not working
Hello, i tried to get mbrola running in processing. I installed everything and as erro i get that: Make sure you FULLY specify the path to the MBROLA directory using the mbrola.base system property....
View ArticleCreating frequencies?
Hey guys, so I was wondering if someone of you knows how to make frequencies with Processing. For example, I want to make a slider, which can change (sound)frequencies from 1000Hz to 2000Hz. I searched...
View ArticleDrop library drag-and-drop not working in P2D or P3D mode
sDrop works fine with the default renderer, but if the sketch is running in P2D or P3D mode, drag-n-drop does not work anymore, for example : size(400, 400, P3D); Any workaround for this?
View ArticleGstreamer video plugin issue
Hello, Here is my program ; import processing.video.*; Movie myMovie; void setup(){ size(1280, 720); myMovie = new Movie(this, "test.mp4"); myMovie.play(); } void draw(){ myMovie.read(); image(myMovie,...
View ArticleSlider changing Frequencies?
Hey guys, so I have this slider, which should change the frequencies when you move it, but I don't know how to realise this. Does anyone have an idea on how to do this? // import everything necessary...
View Article