The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
17 views

deacceleration of an imgObj

i got a project going on in Witch we are going to animate a car braking simulation. Well, I got my element moving, but I can’t figure out how to deaccelerate it again as if it was braking. Hope I can ...
-5
votes
0answers
18 views

how to construct block diagram to find velocity if acceleration and time is given using simulink

How can I construct a block diagram to find velocity if the acceleration and time is given using simulink?
4
votes
1answer
70 views

Convert acceleration with gravity to pure acceleration?

By using event.accelerationIncludingGravity on Android, it returns a value of x: -0.2 y: +0.1 z: +9.1 when resting on a flat surface. However, I want to get acceleration without gravity but ...
0
votes
0answers
30 views

Windows phone acceleration in vehicle frame

In short, I am trying to transform acceleration vector in phone frame (MotionReading.DeviceAcceleration) to vehicle frame. (By that I mean a coordinate system where one axis points into the vehicle ...
0
votes
0answers
65 views

Accelerometer Values Android

I am developing an Android application and I am working with accelerometer values. I use this method if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) { System.out.println("X: " + ...
0
votes
1answer
100 views

How to calculate acceleration needed based on existing acceleration/velocity rules

I have 3 values that determine an object's movement: velocity, acceleration, and maxVelocity. I also have a distance value that determines how close they are to their target (basically an X). This ...
1
vote
3answers
169 views

Combine X and Y accelerations to calculate resultant angle and acceleration

Calculate resultant acceleration from x and y. Calculate angle of resultant acceleration.
0
votes
1answer
87 views

Phone can't find sensor for Sensor.TYPE_LINEAR_ACCELERATION

I'm trying to use the linear acceleration fusion sensor on my android app. However, it cannot find the sensor for Sensor.TYPE_LINEAR_ACCELERATION. I perform these calls: mSensorManager = ...
0
votes
1answer
110 views

Acceleration and deceleration of car using Android device

I tried and found the speed of the car through location.getSpeed(); and location using GPS in Android and now i want to find acceleration and deceleration of the car.for that do i have any Android ...
0
votes
0answers
40 views

Android acceleration direction

After searching for a while I did not find any way to isolate translation acceleration direction from rotation. Im looking yo find a way to get acceleration direction independently of how mobile ...
0
votes
0answers
60 views

MEncoder : The video output is accelerated : I want to keep the original FPS

I have a problem with MEncoder, when I try to convert .mp4 to .mpg, the input video is accelerated. I tried to change ofps but it's always the same thing. The original vidéo is 30sec and the output ...
0
votes
0answers
50 views

determine cutoff frequency in acceleration app

I am trying to figure out where the cutoff frequency value comes from in Apple's AccelerationGraph example app. AccelerationGraph Example App The filter constant is calculated with this ...
0
votes
2answers
61 views

Android continuous acceleration processing in background

I am developing an app that needs to process acceleration values continuously for some time (approx. an hour) - yes, I would really like to do it that way. The processing involves doing some ...
0
votes
0answers
79 views

How to find time, based on acceleration & deceleration points of sine curve?

I want to find time using sine curve based on acceleration & deceleration points. I know frequency & distance traveled. I want to find out the time required for each phase means time at which ...
1
vote
1answer
429 views

Libgdx, physics, acceleration and FPS

I am making a platform game in Libgdx framework. I want to implement ability to jump to my character. I use the simply formula: speed += acceleration * delta_time r += speed * delta_time It works ...
1
vote
0answers
181 views

Accelerometer behavior different on iPhone4S vs iPhone5?

I'm using "UIAccelerationValue" to log the accelerometer values into a file. After sending the file by email a rough offline analysis of the recorded data will be performed. This works well with the ...
0
votes
0answers
113 views

openmax core implementation from aurora forum for gst-omx?

I just found that the omx implementation i have on my android which is commented as from 'aurora forum' was a package that comes with android source itself and am wondering if this omx implementation ...
4
votes
3answers
745 views

Disabling hardware acceleration for mapView leads to constant redraws

Short version: Disabling hardware acceleration with android:hardwareAccelerated="false" in xml changes the background color of my Theme.Sherlock.Light.DarkActionBar theme to a whiter "white". EDIT: ...
0
votes
2answers
161 views

Deceleration not working as intended

I asked a similar question a few hours ago, but I think there was too much information in that question so I deleted that one and made this one more relevant. I'm trying to move an object with a ...
1
vote
1answer
360 views

Optimization of OpenCV on android (neon-instruction, GLSL on tegra 3 )

I am now using some OpenCV functions in my Android application development. Since the frame rate is quite critical for the program, I am wondering how could I enable the optimization of OpenCV on ...
0
votes
1answer
177 views

What do negative & positive accelerations stand for exactly ? ( iOS )

Please excuse me in advance if I should be asking this in a Physics forum, but given that I'm talking about the iPhone's acceleration, coming from the accelerometer, I decided to post it here. ...
0
votes
1answer
146 views

Android Accelerometer is outputting Null(Zero) values

Hey Guys I am currently working on a project which will access the accelerometer and graph it how ever my code is currently not working and I am unsure of the reasoning, any help will be greatly ...
0
votes
1answer
56 views

Catch acceleration event on screen

I have a menu that like a roulette, it's spinning like a whell. To catch the events i'm using touch began/move. How can i add it an acceleration ? I want to register to an acceleration event, when ...
0
votes
2answers
165 views

increase speed/velocity, cocos2D

I'm following this tutorial: http://www.raywenderlich.com/475/how-to-create-a-simple-breakout-game-with-box2d-and-cocos2d-tutorial-part-12 but at the last part, it shows how we can reduce speed by ...
3
votes
2answers
510 views

Does ArcView and/or R use Graphics Card (GPU) acceleration

Pretty much exactly what it says in the title. I'm looking to buy a new computer cause I'm tired of spending 2 hours waiting to edit a point in ArcView and I was curious if either ArcView or R uses ...
-1
votes
2answers
534 views

APC FOR PHP 5.3.8

I've been trying to install apc . I've added the .dll file to the extenstions directory ( so far i'm running the application on xamppm, apache) . I've also updated the php.ini as well. The problem ...
0
votes
0answers
84 views

How to accelerate my C program [closed]

recently I have written a small program that evaluates if a given number is a prime number or not. I wonder how I can make this program faster. Here is the code, I am waiting for some clues. Thanks in ...
1
vote
0answers
88 views

Windows: Programatically determine if hardware acceleration can be disabled

Our application includes a screen capture capability. Some applications use overlay surfaces to display video so we included an option to disable hardware acceleration in order to force those ...
1
vote
2answers
106 views

very slow function in R

I've tried implementing a log likelihood function in R. Here is the function I've used (I'm new to R) f <- function(t) { s=0 x=d l = dim(x)[1] for (i in 1:l) { vector = d[i,] ...
1
vote
0answers
37 views

Get Data from SensorSimulator

i tried to build a litte app to readout the data from SensorSimulator http://code.google.com/p/openintents/wiki/SensorSimulator I installed the SensorSimulatorSettings-App and followed the ...
0
votes
1answer
184 views

How to calculate average velocity for different acceleration?

I want to calculate average speed of the distance traveled using gps signals. Is this formula calculates correct avg speed? avgspeed = totalspeed/count where count is the no.of gps signals. If it ...
0
votes
0answers
40 views

Does the stock web-browser of ICS 4.0.x support HW accelerated rendering/compositing?

Does the stock web-browser of ICS 4.0.x support HW accelerated rendering/compositing? I know ICS 4.0.x supports HW acceleration of the UI. But I wonder about stock web-browser rendering/compositing ...
0
votes
2answers
160 views

Accelerometer under constant acceleration and at rest

I am doing a project where I am using accelerometer to perform location tracking task. How do I differentiate between a state if object is under constant acceleration or is at rest? In both cases it ...
0
votes
1answer
317 views

“shake to do something” code explanation

I've found this code, Its function is to do something when the device is shaken strong enough, but I haven't fully understood it . Anyone please help me public class ShakeActivity extends Activity { ...
0
votes
2answers
227 views

object is moving in the accelerometer

I want to create one game in cocos2d in which one object is running . I want to move this object from left and right base on device accelerometer. I am getting the value of the accelerometer and ...
0
votes
1answer
222 views

How to set up a local directory for mirroring a remote git repository?

Here is the situation. I have a remote git repository on Server A. Also, I have to work on Desktop B with the same source code in this repository. Because of the limited bandwidth to access Server A, ...
1
vote
1answer
1k views

How to calculate correct velocity values from accerometer

I need to calculate iphone velocity in space, punch speed for example. My first question is: Are the acceleration values accelerometer:didAcceleratewith this filtering actions: gravity_x = ...
-2
votes
1answer
688 views

Kinect - how to compute the acceleration of hand joints over 1 sec [closed]

I have an application which uses the Microsoft Kinect camera device. At each point I can obtain the position of my hand in the 3 Dimensional space ( X - Y - Z ) and I want to compute acceleration of ...
0
votes
1answer
349 views

Different x and y speed (acceleration) in cocos2d?

I want to create a visible object with a trajectory using standard actions (CCMoveBy and e.t.c) which is similar to: x = sin(y) My code: CCMoveBy *moveAction1 = [CCMoveBy actionWithDuration:1.5 ...
1
vote
1answer
333 views

Get constant deceleration required to stop object at position

I want an object to smoothly stop at a specified point. I have the initial velocity, V0, of the object, the end velocity (which is set to 0), V1, and the distance, d, required to reach the ...
0
votes
1answer
595 views

Java buffer strategy loses hardware acceleration

I am working on a Java game engine and when I switch to the Windows log in screen and return, the buffer strategy loses it's hardware acceleration. Nothing I do will restore the buffer to hardware ...
0
votes
4answers
933 views

speed or acceleration of motion event android

Is it possible to get the speed or velocity or acceleration of touch event in android with the existing api? I have gone through MotionEvent class and none of the fields in that class seem to retrieve ...
3
votes
1answer
633 views

Calculating acceleration peak from velocity

I am trying to convert an array of velocity values to acceleration values. I understand that acceleration is the integral of velocity, but don't know how to acheive this. I am using MATLAB, so if ...
0
votes
3answers
2k views

get the acceleration without gravity

I'm new to android development. I want to get actual acceleration of the phone.I found a code to get acceleration.but it gives acceleration with gravity. Please any one help me to find a way to get ...
1
vote
1answer
218 views

hardwareAccelerated animation in Android 2.2

is there any way to do run animation on the GPU when writing an app for Android 2.2 and up Thanks.
4
votes
1answer
238 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 ...
2
votes
1answer
398 views

How to simulate Mouse Acceleration?

I've written iPhone - Mac, Client - Server app that allows to use mouse via touchpad. Now on every packet sent I move cursor by pecific amount of pixels (now 10px). It isn't accurate. When i change ...
0
votes
1answer
286 views

How to make sure GPUAcceleration for Silverlight is really on?

I can have a lot of controls in my layoutroot (a canvas). And as the tree gets bigger, performance naturally fades and eventually the application becomes unresponsive to most actions.. To give my ...
2
votes
1answer
247 views

Slowing mouse speed

Any ideas on how I can slow down the mouse speed in a wpf application. Google didn't come up with anything. Should this be dealt with native events from Win32.
0
votes
1answer
90 views

Mouse follower easing in/out

There are a lot of mousefollower tutorials out there. Most of them feature a simple formula for easing the motion: x += (tx - x) / interp; y += (ty - y) / interp; (tx = target position, x = actual ...

1 2