Forum: Vizard
11-27-2007, 01:00 PM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-26-2007, 01:21 PM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-26-2007, 01:10 PM
|
|
Replies: 28
Views: 65,264
So 0.5 should be a floating point if I'm...
So 0.5 should be a floating point if I'm understanding correctly. And my desired distance is already "0.12" which would also be a floating point. Yet it is still not working for me. Am I missing...
|
Forum: Vizard
11-26-2007, 01:08 PM
|
|
Replies: 24
Views: 77,122
But I also need it to be flexible in the sense...
But I also need it to be flexible in the sense that if I collect for one minute so then I get 1800 samples at a rate of 30 Hz, but if I only collect for 30 seconds then I need 900 samples still at a...
|
Forum: Vizard
11-26-2007, 01:04 PM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
11-26-2007, 12:58 PM
|
|
Replies: 28
Views: 65,264
what's a floating point value?
Like if I...
what's a floating point value?
Like if I want it to move .12 meters in .5 seconds how would I code that?
I'm not familiar with floating point values.
Even if I make it 1/20.0 instead of .05...
|
Forum: Vizard
11-26-2007, 12:45 PM
|
|
Replies: 28
Views: 65,264
The problem with this is that it makes the...
The problem with this is that it makes the transitions very very very quickly if I put decimals in the list "movetime."
movetime = [.05, .25, .75, 1, 2]
sequences = []
for time in movetime:...
|
Forum: Vizard
11-26-2007, 11:37 AM
|
|
Replies: 24
Views: 77,122
Flock of Birds question (again)
If I collect with the Birds through Vizard, I get a different number of data points each time I run the program. Even if I standardize the collection rate at "(1.0/30)" because I want it to collect...
|
Forum: Vizard
10-18-2007, 10:20 AM
|
|
Replies: 3
Views: 37,419
|
Forum: Vizard
10-18-2007, 09:23 AM
|
|
Replies: 3
Views: 37,419
timer question again
So I've created an "elapsed time" timer. Now I want that timer to start when I start my program (i.e. when I start moving the picture) (which starts on an "onkeydown" command).
def timer1():
...
|
Forum: Vizard
10-18-2007, 08:37 AM
|
|
Replies: 28
Views: 65,264
Movement Question
So I'm trying to move an object (a picture) forward and backward a certain distance for a certain period of time. What I can't get it to do in this case is to move some fixed amount (e.g. 2 m) for X...
|
Forum: Vizard
10-10-2007, 02:49 PM
|
|
Replies: 5
Views: 78,468
|
Forum: Vizard
10-10-2007, 02:42 PM
|
|
Replies: 5
Views: 78,468
it didn't work because it still printed out:
...
it didn't work because it still printed out:
Elapsed time: 0.0404154717988 seconds
Elapsed time: 0.0300169434942 seconds
Elapsed time: 0.0302259086001 seconds
Elapsed time: 0.0502695174945...
|
Forum: Vizard
10-10-2007, 11:30 AM
|
|
Replies: 5
Views: 78,468
|
Forum: Vizard
10-08-2007, 12:50 PM
|
|
Replies: 5
Views: 78,468
timer question
Ok, so I feel really stupid but I can't figure this one out. I'm trying to implement a timer that tells you how much time has elapsed at certain intervals. In other words, if I'm running a 600...
|
Forum: Vizard
10-02-2007, 01:16 PM
|
|
Replies: 9
Views: 49,033
I think Motion Monitor does filter it using a...
I think Motion Monitor does filter it using a Butterworth Double Pass Filter at 10 Hz cutoff (whatever that means). But I don't know how that would smooth the data and get such a different result...
|
Forum: Vizard
10-02-2007, 11:51 AM
|
|
Replies: 9
Views: 49,033
I actually thought of that, but the emitter has...
I actually thought of that, but the emitter has been in the same place for a while (for many other studies) and there wasn't this problem. Also, I collected data on motion monitor with the emitter...
|
Forum: Vizard
10-02-2007, 11:32 AM
|
|
Replies: 9
Views: 49,033
|
Forum: Vizard
10-02-2007, 10:00 AM
|
|
Replies: 9
Views: 49,033
I'm not sure I understand the port number. I...
I'm not sure I understand the port number. I have a total of 6 birds. Only bird #1 is plugged into this computer (the others are connected directly to another computer); however, I am nonetheless...
|
Forum: Vizard
10-02-2007, 08:46 AM
|
|
Replies: 9
Views: 49,033
Flock of Birds
I'm using FOB to capture position and orientation data. But sometimes Vizard has problems recognizing the birds. I often get an error message like (or something to the extent of): "cannot find bird...
|
Forum: Vizard
09-10-2007, 08:12 AM
|
|
Replies: 6
Views: 32,788
|
Forum: Vizard
09-10-2007, 08:12 AM
|
|
Replies: 2
Views: 38,466
|
Forum: Vizard
09-06-2007, 09:53 AM
|
|
Replies: 6
Views: 32,788
What will this let me do? I don't really...
What will this let me do? I don't really follow--how do I flag the data with this? Press a button? Hook an event marker up? Etc?
I think I'm just creating a text file and then writing the data...
|
Forum: Vizard
09-06-2007, 09:44 AM
|
|
Replies: 2
Views: 38,466
Object animation using a picture?
I need to animate a picture such that it moves forward a bit and backward a bit. Kind of like a moving room. I'm having trouble; here's what I've got:
import viz
tex1 = viz.add('picture.jpg')...
|
Forum: Vizard
09-05-2007, 10:13 AM
|
|
Replies: 6
Views: 32,788
I'm not sure if it's a text file. Here's a...
I'm not sure if it's a text file. Here's a sample line of what I've got:
head_data = str(Subnum) + '\t' + str(HEADAP) + '\t' +str(HEADLAT) + '\t' +str(HEADVERT) + '\t' +str(HEADYAW) + '\t'...
|