Questions tagged [motion]

Use this tag for physically moving systems. For example robots, or electronic or pneumatic actuators.

584 questions
0
votes
1 answer

Raspberry Pi Motion-Mmal: I want to disable live stream capabilities

I have a few questions about Motion-MMAL for the Raspberry Pi B+ model, running on Raspbian: Sorry if these are noob questions. 1) I want to disable the live stream capability completely; however, i can only find information on how to keep the live…
xulander
  • 27
  • 6
0
votes
2 answers

Shake to open view modally

I have my 'shake' working fine (using motionEnded), based off of Apple's GLPaint code. When the user shakes the device (running 3.0 and up) I want to open a view controller modally using presentModalViewController. In my appdelegate I have the…
CraigH
  • 1,427
  • 1
  • 14
  • 20
0
votes
2 answers

Slow motion tween text isn't smooth

i have to create a movie where a text string move in horizontal. the problem is that in the movie (800px wide) the text should go from right to left in about 7 seconds (so it have to go about 400px to the left in 7 sec). i created a motion-tween…
Alex
  • 1,237
  • 3
  • 18
  • 29
0
votes
1 answer

ActionScript 2 following a path

I am having a problem finding information on using actionscript 2 to move an object along a more complicated path. I have no issue if i need to tween in the x or y direction, or at the same time, but If i wanted an object to follow a curvy path…
nr20
  • 1
  • 4
0
votes
1 answer

Slow motion video preview with Android MediaRecorder

I'm trying to get video preview for recording in my Android application with this code: myCamera = getCameraInstance(); mediaRecorder = new MediaRecorder(); myCamera.unlock(); mediaRecorder.setCamera(myCamera); …
andreasperelli
  • 1,034
  • 2
  • 11
  • 40
0
votes
1 answer

Determine the right parameters for deblurring motion blurred images in MATLAB

I'm currently working on program and I need to automatic perform motion un-blurring on a picture. Currently, I make a for loop for LEN and THETA, guessing from LEN 0:50 and THETA from 1:180. There are plenty of motion un-blurred pictures produce in…
chris chiang
  • 31
  • 1
  • 4
0
votes
1 answer

Yaw range on iPhone 5s

I'm using CMDeviceMotion and the attitude's quaternion to obtain the pitch and yaw values, which are then applied to a CC3Camera in a Cocos3D scene to rotate the camera around. #define RadiansToDegrees(x) ((180 / M_PI) * x) -…
Andrei Marincas
  • 446
  • 5
  • 13
0
votes
1 answer

FxPlug Inverts Cube Map At A Distance

I'm trying to implement cube mapping in FxPlug using GLSL code from http://antongerdelan.net/opengl/cubemaps.html. The only major modifications I made to the code were variable name changes and using gl_Vertex and gl_Normal instead of…
0
votes
1 answer

physics-motion in straight line body dropped

A tennis ball is dropped on to the floor from a height of 4m.it rebounds to a height of 3m.if the ball was in contact with floor for 0.010 sec, what was its average acceleration during…
0
votes
1 answer

Can't set contentview (need one to ball and one for layout)

Hello :) I have a problem in my app, I need to use twice the setContentView which makes my app choose only one, so here is my onCreate: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
DavidBalas
  • 333
  • 7
  • 21
0
votes
1 answer

Using multiple Kinetic.Tween

in my app, i have many pawns that i want to move at the same time. I created my pawns and I use an instance "Kinetic.Tween" for every pawn: this approach is ok with Firefox, Chrome, but when i use my app on mobile device, I've been experience some…
0
votes
1 answer

JPEG Streaming Issue- How can I stream the images to a server of my choice?

To keep the intro short, I will mention that I have been building an application that involves executing remote commands from a private website that I have built and having my personal home computer respond to those commands. I discovered that live…
user3126288
  • 35
  • 1
  • 9
0
votes
1 answer

Motion detect using opencv on android

Hi I'm trying to implementing motion detect using opencv on android. I applied sample motion detection code and made jni call. I ran this on android, it works but processed preview is super slow. I removed motion detection process part then…
0
votes
0 answers

Detecting camera motion with opencv

I am working on drone stabilization close to walls using a camera. For this to work I need to extract the motion the camera makes relative to the wall. For now I used an expanded OpenCV example which uses the goodFeaturesToTrack command to find…
0
votes
1 answer

how to handle animation for a label to let it be always inside screen borders in android?

I want to know a little in gaming world, so i'm trying first to create a graphical object that will start sliding with touch listener and when it arrives to the screen borders it will be translated in another side to let it be always visible. i know…