We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpVideo Capture,  Movie Playback,  Vision Libraries › Can you "send" JMyron over the net using oscP5
Page Index Toggle Pages: 1
Can you "send" JMyron over the net using oscP5 (Read 438 times)
Can you "send" JMyron over the net using oscP5
Oct 9th, 2007, 2:05pm
 
something like:

 int[] img = m.image();
 
 loadPixels();
 for(int i=0;i<camw*camh;i++){ //loop through all the pixels
     pixels[i] = img[i]; //draw each pixel to the screen
     
 OscMessage myMessage = new OscMessage("/boids");
 myMessage.add(img[i]); /* add an int to the osc message */

 /* send the message */
 oscP5.send(myMessage, myRemoteLocation);

Is it possible to grab camera on one computer, then send it over the network to another one, which runs a script taht will display the remote camera.

thanks for reply
Page Index Toggle Pages: 1