Tagged Questions
The motion tag has no wiki summary.
14
votes
2answers
95 views
Delete from cursor to end of parenthetical (etc.) in vim
Say I have this line of text in vim:
(foo bar (baz) qux)
^
and my cursor is on the space between foo and bar as indicated. I often find that, in situations like this, I want to delete the ...
8
votes
3answers
221 views
Extracting motion data from a list of coordinates
I have a series of CSV files of timestamped coordinates (X, Y, and Z in mm). What would be the simplest way to extract motion data from them?
Measurables
The information I'd like to extract includes ...
5
votes
2answers
7k views
motionBegan: Not Working
I am running into a bit of a problem when I attempt to use (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event in order to capture a shake event. The problem is that the function ...
5
votes
4answers
2k views
How can I reproduce the flick-to-scroll behavior of the iPhone UIScrollView in my own custom view?
I would like to reproduce UIScrollView's flick-to-scroll behavior, but I don't want to use (or can't use) that class. What can I do?
4
votes
2answers
93 views
Vim motion vertical version of f & t?
In vim, I really love f & t in Normal mode. Are there vertical versions of these? If not, what's the best way to jump so many lines downward to a word that I see? Do I just have to count the lines ...
4
votes
1answer
180 views
How could I program a spider's walking movements?
I'm programming a spider that should have realistic movement. Currently I'm using this site as reference for how the legs should move, but I'm unsure how to implement it.
...
4
votes
2answers
1k views
draw a single-touch motion path in android
i am trying to make a drawing application.
i want to draw a single-touch motion path in android - like the way the Swype keyboard does it.
And consequently i want to store x-y coordinates of EACH ...
4
votes
2answers
2k views
Accelerometer to relative position
Before I reinvent the wheel I wanted to see if anyone can share code or tips for the following:
In order to get relative position of the iPhone, one needs to
Set the accelerometer read rate
Noise ...
3
votes
1answer
50 views
Deceleration Timing
I am currently writing second version of the Flow Slider plugin and one of the animation options is when the slider accelerates at some constant acceleration up to some maximum speed and then ...
3
votes
2answers
79 views
Moving an image from A to B with JavaScript
Its my first time here and I don't know how to indent this sorry :/
I have an image of a van and I am trying to move it across the screen to as if it is driving.
Once that is done I will scale the ...
3
votes
2answers
2k views
How can you track motion using the iPhone's camera?
I saw that someone has made an app that tracks your feet using the camera, so that you can kick a virtual football on your iPhone screen.
How could you do something like this? Does anyone know of ...
3
votes
3answers
841 views
Calculate initial velocity to move a set distance with inertia
I want to move something a set distance. However in my system there is inertia/drag/negative accelaration. I'm using a simple calculation like this for it:
v = oldV + ((targetV - oldV) * inertia)
...
3
votes
3answers
4k views
OpenGL rotate around a spot
I want to rotate a gluSphere around a fixed point in a circular motion, like a planet going around the sun.
Would it be best to use glRotatef or glTranslate? If so, in which order should I call them?
...
2
votes
2answers
117 views
iPhone hardware capabilities : magnetometer and gyro
Can someone tell me, for any iPhone that have been sold, if they are equiped with a gyro and a magnetometer ?
As a complement, do you know a website that gives a comparative table of hardware ...
2
votes
1answer
119 views
Perlin noise for motion?
I'm successfully using Perlin noise to generate terrain, clouds and a few other nifty things. However, I'm now trying to animate a group of flying insects (specifically fireflies), and it was ...
2
votes
1answer
160 views
Device Motion in accelerated environment
I wrote an app which displays pitch and roll attitude (a glass cockpit app). When I rotate or tilt the iPhone/iPad the attitude is displayed accurately. When I'm flying in an airplane and rotate or ...
2
votes
1answer
77 views
Built in iPhone controls animating in slow motion
I am experiencing a very strange problem where the built in controls in my iPhone app are animating in slow motion. These are controls that I have not implemented, like the TopBar on a ...
2
votes
2answers
345 views
AS3 webcam shape recognition
I'm making a dissertation on webcam motion tracking in actionscript. I am looking at different possibilities on how to do this and have found a few already.
There is, however, one method I would like ...
2
votes
1answer
2k views
MotionEvent multiple touch events get mixed up and influence each other (see demo video)
Purpose of the app:
A simple app that draws a circle for every touch recognised on the screen and follows the touch events. On a 'high pressure reading' getPressure (int pointerIndex) the colour of ...
2
votes
6answers
112 views
maths: motion depending on time
i have a mathematical problem:
i have a function where the only parameter is the current time.
the return should be a position which is used to place an object on a certain place.
int position(int ...
2
votes
2answers
1k views
motionEnded getting called multiple times
I have a UIViewController subclass that I am trying to have handle the shake event when its view is up.
Here are the relevant methods I've implemented:
- (void)viewDidAppear:(BOOL)animated {
...
2
votes
1answer
708 views
How to distinguish movement accelerations from oscillations and noise in iphone
Hi everybody on stackoverflow.
SHORT VERSION :)
I need to use (x,y,z) acceleration values related only to the movement of the iPhone. Just to be clear, think an environment like a car. The iPhone's ...
2
votes
4answers
942 views
What is this written in?
I am dealing with an circa 80's era machine controller. A program is being downloaded to the operator's control panel and for the life of me I can't figure out what it is written.
The machine is a ...
1
vote
0answers
49 views
How can I determine the velocity of an object moving within a single camera's fov?
Using a feed from a single stationary camera, how can I determine an object's velocity? No calibration or an auto-calibration system would be ideal but a solution is more important.
1
vote
1answer
189 views
Android: catch MotionEvent across activities
I have two activities A and B. I would like to have one touch event MotionEvent.ACTION_DOWN caught in A, while still holding down, launch B, then having the release event MotionEvent.ACTION_UP be ...
1
vote
0answers
108 views
How to create a splash image in flowplayer in PHPMotion
For one of my video streaming project, I am using PHPMotion video script with the blacktheme template. I could be able to add the replace the default video player with the flowplayer. It works fine.
...
1
vote
1answer
63 views
Motion animation which is scalable?
is it true: a motion animation always based on a Canvas element – the Element which move is addressed via attached Property? Unfortunately it’s not possible to resize a Canvas-Element at Runtime!? So ...
1
vote
1answer
169 views
How to get Action when motion move event is not more in ANDROID?
I am Rotating image on MotionEvent. and also image is getting shrink when i rotate it. i want to show Alert Dialog when move event is not more..
here i post my code...
private ProgressBar ...
1
vote
4answers
63 views
Projectile Distance/Time
I'm making a game and need to figure out how long it will take an object to fall to a certain height.
The object has an initial y value (y), an initial vertical velocity (vy), a gravity constant ...
1
vote
2answers
91 views
Motion Animation in Silverlight?
This is probably a really dumb question, but I'm finding conflicting information. I have a project in WPF/VB.net 2010 that I want to create an alternate version of in Silverlight. However, it uses ...
1
vote
1answer
458 views
MotionEvent.ACTION_POINTER_DOWN was detected in ViewGroup's onInterceptTouchEvent method in Android?
I extended the ViewGroup to create a custom view.
In the touch events, when my second finger touched the screen, MotionEvent.ACTION_POINTER_DOWN was not detected in the onInterceptTouchEvent method.
...
1
vote
1answer
211 views
Can parent and child views obtain the motion event simultaneously in Android?
In the main activity, there is a parent view and a child view.
I need to obtain the motion event in both views simultaneously. Is it possible to do that ?
Currently, I can only intercept the motion ...
1
vote
1answer
380 views
Motionevent.ACTION_UP firing constantly?
So in my program i am having it draw a rectangle while the finger is down and moving than erase it after the finger is up. this is to show the user the range of values he/she is using as a "guess" to ...
1
vote
1answer
740 views
What's the different between ACTION_CANCEL and ACTION_UP for MotionEvent
I want to track a fingure draw on the screen. So what i did is to start recording the position when motionEvent Action_down. But how can I decide when the action is finish, at Action_cancel, or ...
1
vote
0answers
54 views
How can I detect the movement of an rectangle in an image-stream efficiently?
I'd like to find an algorithm that can detect the movement (and movement-vector) of a rectangular area -- like scrolling a window would produce -- in an image-stream. Any ideas? :)
1
vote
1answer
443 views
Moving in an Arc with Webkit Transitions
Right now I'm trying to put together something really simple, learn from it, and incorporate it in a bigger project.
I have a simple box I'm trying to move from one position to another using css ...
1
vote
0answers
89 views
Tracking motion of a convex hull
I have two convex hulls and I was just wondering if anyone knows of any good algorithms or resources/ has any ideas on how to compare the position of one convex hull to another?
Distance, orientation ...
1
vote
1answer
602 views
iPhone Motion - EXC BAD ACCESS
I'm beginning coding with the DeviceMotion class. After following Apple's documenation, i have the following:
- (void)viewDidLoad {
[super viewDidLoad];
myMM = [[CMMotionManager alloc] init];
...
1
vote
3answers
281 views
Moving objects getting stuck in a corner
I am working on a program which simulates objects moving in a field. The field has a boundary of 1024x1024. The object cannot go below 0 in terms of x,y coordinate and it cannot go above 1024. I have ...
1
vote
0answers
347 views
Push method for core motion and frequency of Accelerometer/Gyroscope Data
When push method is used to get accelerometer/gyroscope/device motion data, unfortunately the gyroscope and the device motion maximum frequency cannot exceed 72Hz on average (in fact the data is not ...
1
vote
1answer
677 views
Detect Motion on axis in android
HI,
I am willing to implement a logic in which i need to know about the amount of motion made by phone on x y or z axis,
using accelerometer i can only find acceleration on these axis, even if i try ...
1
vote
2answers
392 views
How to convert quaternion to angle?
Is there a formula to convert a quaternion to an angle?
Looking to do something on the iPhone using the Core Motion API and the gyro so that based on data I receive from it (in the form of ...
1
vote
1answer
725 views
Motionevent.getX and getY
I need help understanding the following.
Say I have a display that is 854x480 pixels. Why is it that the MotionEvent.getX and getY methods return floats? As far as I can tell, the pixels on the ...
1
vote
3answers
1k views
When GPS is not available how to get notified when the phone is in motion?
I would like to detect when the phone is in motion, but not all kind of motion. For example picking up or waving the phone should not trigger.
I would like ideally to run a code when the ...
1
vote
4answers
742 views
Projectile Motion in VB
What I'm trying to do is simulate projectile motion in Visual Basic using Visual Studio. Essentially, something like this but without air resistance or mass.
Anyhow, the way I'm doing it is using a ...
1
vote
3answers
5k views
continuous loop with divs and jquery
I'm continuing a previous post, but I thought I'd open a new thread since it takes a different approach and has more actual code. Anyway, I'm trying to get an infinite loop going with divs scrolling ...
0
votes
0answers
7 views
To dynamically bind the Motion Frame Work charts through SQL database
I'm using the World Stats sample of Infragistic Motion Framework for Silverlight data visualization in my website in C#. In this the charts are binded with the data from the XML. In my case I want to ...
0
votes
0answers
34 views
iPhone - Catch a precise degrees rotation of the device, with orientation changed
My user has its iPhone in the hand, looking at it. At a given starting point, I want to be able to know when the device has rotated from xxx degrees from that starting point, even if the user put it ...
0
votes
2answers
51 views
How to notice a quick forward motion with didAccelerate deprecated?
What i want to do is read the acceleration.y and do something like:
if (acceleration.y > 0.8) {
// Do something
}
As didAccelerate is deprecated I wonder how to get the y-value:
...
0
votes
0answers
31 views
Motion event coordinates changing
Im using instrumentation to send motion events to the screen. The problem I am facing is when I create the motion event before sending it using:
sendPointerSync(event);
I setup the coordinates by :
...