Re: [PD] self-centering random walk

2007-05-10 Thread Frank Barknecht
Hallo, Jamie Bullock hat gesagt: // Jamie Bullock wrote: Two questions: - What are the arrays for? Are they intended for some kind of mapping after [random] ? I guess they are just used to visualize the self-centering of the walking process - Why do you use $0- for the subpatches, is

[PD] text into pix

2007-05-10 Thread Tim Boykett
Hello List, is there a way to get text into a pix chain? my little thing to do is: a camera, some extra information into the camera stream (the text that I need), and record it using pix_record. Or is there a better solution? Cheers, tim ___

Re: [PD] text into pix

2007-05-10 Thread Roman Haefeli
On Thu, 2007-05-10 at 15:55 +0200, Tim Boykett wrote: Hello List, is there a way to get text into a pix chain? my little thing to do is: a camera, some extra information into the camera stream (the text that I need), and record it using pix_record. Or is there a better solution?

Re: [PD] text into pix

2007-05-10 Thread Tim Boykett
Hi Roman, Okay, I had contemplated this and though that it must be possible to do this easier. But No! This seems somehow like a hack, but I suppose pix_ things are there for image manipulation, not image creation... I am using OSX so there is currently some problem with GEM and fonts and PD

Re: [PD] text into pix

2007-05-10 Thread Roman Haefeli
hi tim again On Thu, 2007-05-10 at 17:37 +0200, Tim Boykett wrote: Hi Roman, Okay, I had contemplated this and though that it must be possible to do this easier. But No! This seems somehow like a hack, hack or not, i think there is no other way, unless there are plans for something like a

Re: [PD] text into pix

2007-05-10 Thread IOhannes m zmoelnig
Roman Haefeli wrote: hi tim again On Thu, 2007-05-10 at 17:37 +0200, Tim Boykett wrote: Hi Roman, Okay, I had contemplated this and though that it must be possible to do this easier. But No! This seems somehow like a hack, why does it seem like a hack to you? if you want to create an avi

Re: [PD] Processing Video Data

2007-05-10 Thread raul diaz
Hi IOhannes, Hi listers! 2007/5/10, IOhannes m zmoelnig [EMAIL PROTECTED]: raul diaz wrote: Hi IOhannes, Hi list! seems like you forgot the list, i added it now... Sorry...I forgot to add list address. I'm making a patch for live video data manipulation with pix_video -- pix_resize

Re: [PD] text into pix

2007-05-10 Thread Kyle Klipowicz
This may be an option for OS X users soon, after sufficient pdp/pidip testing is done with Pd-extended! ~Kyle On 5/10/07, IOhannes m zmoelnig [EMAIL PROTECTED] wrote: Roman Haefeli wrote: hi tim again On Thu, 2007-05-10 at 17:37 +0200, Tim Boykett wrote: Hi Roman, Okay, I had

Re: [PD] text into pix

2007-05-10 Thread Roman Haefeli
On Thu, 2007-05-10 at 18:16 +0200, IOhannes m zmoelnig wrote: hack or not, i think there is no other way, unless there are plans for something like a [pix_text]. definitely not. that is what i actually expected ;-) however, exporting to different formats should be made simpler in

Re: [PD] PD-list Digest, Vol 26, Issue 39

2007-05-10 Thread Hans-Christoph Steiner
That code uses Mac OS X Frameworks, so it's only for Mac OS X. There is a separate wii object for GNU/Linux based on an entirely different library. .hc On May 10, 2007, at 3:42 PM, jhonet b wrote: JUST LINUX?? not os x? I already ported that code to Pd. I am pretty sure he folded the

Re: [PD] Processing Video Data

2007-05-10 Thread raul diaz
Using a table normally is faster, especially if you want to access values by index (that is, not sequentially). You can do some optimizations, too: For one, you can get rid of one counter, if you send the RGB-list to: [list] | [list split 3] | [unpack 0 0 0] | | | ... put to tables

Re: [PD] Connection with sensors - new devices?

2007-05-10 Thread Kyle Klipowicz
Thanks so much Koray, it works great! I see you used the same Arduino code for the sensor as I had found, and your Pd patch is very well-written and well-commented. I appreciate this, because I did not want to try coding microsecond-level events in Pd by porting the Arduino code and using

Re: [PD] Processing Video Data

2007-05-10 Thread Kyle Klipowicz
Slick solution! ~Kyle On 5/10/07, Frank Barknecht [EMAIL PROTECTED] wrote: Even faster probably is using just one table for all RGB values: Just do a [list prepend 0] after [pix dump] and send the 0-prepended list to a sender with your table-name as target. You can still access the

Re: [PD] Connection with sensors - new devices?

2007-05-10 Thread Koray Tahiroglu
Hello Kyle, I am glad that those patches worked and helped you out with your project. I guess big thanks goes to Hans for them, cos during that time, I just modified his existing multi-sensor patches and developed them further to use in my project. Koray.

[PD] Zero delay feedback, with settable send?

2007-05-10 Thread Kim Taylor
Hi everyone Here's my problem: The project I'm working on requires the use of feedback loops, something I am currently implementing by using delread~/write~ in Pd with a 0 length delay. This also adds a fixed minimum delay of the block size, but this can be reduced by using block~. The problem

Re: [PD] Connection with sensors - new devices?

2007-05-10 Thread Hans-Christoph Steiner
Does this firmware handle multiple ultrasound sensors? If so, it would awesome to make a Firmata Ultrasound firmware. I just started making the Firmata protocol into a library so that people can write more firmwares and still use the same objects in the host software. A multiple

Re: [PD] Connection with sensors - new devices?

2007-05-10 Thread Kyle Klipowicz
Well, we are going to be using multiple sensors, so I will let you know if this code works with them, once we get to that phase of the installation. ~Kyle On 5/10/07, Hans-Christoph Steiner [EMAIL PROTECTED] wrote: Does this firmware handle multiple ultrasound sensors? If so, it would

Re: [PD] Connection with sensors - new devices?

2007-05-10 Thread marius schebella
I think the ultrasonic sensors send serial bytevalues and not an analog value, correct? how can you connect them to the pduino? or how can you connect even more of them. can firmata handle serial inputs? marius. Kyle Klipowicz wrote: Well, we are going to be using multiple sensors, so I will

[PD] Highlight modified abstraction instances with red

2007-05-10 Thread Luke Iannini (pd)
Hallo all, Just wanted to post an idea... It would be great if Pd highligted modified abstractions in red in their parent patch (that is, the one pixel bounding box and text. When I've modified one of a bunch of abstractions in a parent and close it without saving, I have to open each one to see

[PD] wiiremote object for os x?

2007-05-10 Thread jhonet b
any wiiremote object for os x? any success compiling? Thanks ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list