Questions tagged [motion-detection]

Related to detection of motion related to programming issues, like computer vision, sensor control, etc.

Motion detection is a process of confirming a change in position of an object relative to its surroundings or the change in the surroundings relative to an object. This detection can be achieved by both mechanical and electronic methods. In addition to discrete, on or off motion detection, it can also consist of magnitude detection that can measure and quantify the strength or speed of this motion or the object that created it.

Motion can be detected by: sound (acoustic sensors), opacity (optical and infrared sensors and video image processors), geomagnetism (magnetic sensors, magnetometers), reflection of transmitted energy (infrared laser radar, ultrasonic sensors, and microwave radar sensors), electromagnetic induction (inductive-loop detectors), and vibration (triboelectric, seismic, and inertia-switch sensors).

424 questions
0
votes
0 answers

Why can't this html change body color when I shake my phone?

I leaned that html5 contains a device motion detector and wrote this html. I opened this html with my cell phone browser. ... var color = new Array('#FFF8DC', '#DC143C', '#00FFFF', '#00008B', '#008B8B', '#B8860B', '#A9A9A9',…
zhngnmng
  • 23
  • 3
0
votes
1 answer

Motion Detection in Wowza Media System

How to detect motion and movement in Wowza? Is there any module that is present in Wowza? If it is present, then please help to find out that module and give me the url or any documentation for that. If it is not present, then please help to find…
0
votes
1 answer

Smartwatch Gear 2

I have developed an application getting data from the Gear2 accelorometer. The devicemotion events are managed by a window event listener such as: window.addEventListener('devicemotion', function(e) { Ax = e.accelerationIncludingGravity.x /…
genoveseV
  • 61
  • 7
0
votes
1 answer

Calculating the average of raw data for hand tracking

I have been trying to calculate the average of the raw data that I have been receiving from my camera. The reason is that at the moment I am just using the raw data and this causes quite abit of jitter. Therefore I am wanting the past 5 locations…
0
votes
0 answers

Smartwatch Gear 2 gyroscope data output sampling rate

I am collecting data coming from accelerometer and gyrospcope sensor on my Smartwatch: Samsung Gear 2 . The development environment is: Tizen SDK for Wearable Version 1.0.0. The javascripts code used…
0
votes
1 answer

Kinect as Motion Sensor

I'm planning on creating an app that does something like this: http://www.zonetrigger.com/articles/Kinect-software/ That means, I want to be able to set up "Trigger Zones" using the Kinect and it's 3d Image. Now I know that Microsoft is stating that…
0
votes
1 answer

Calculate the viewing-angle on a square (advanced Math)

I'm in big trouble: My program (Java) successfully recognised a square drawn on a paper (by its 4 edges). Now I need to calculate, under which angle the webcam is facing this square. So I get the 4 coordinates of the shape, and I already had an…
Erik Brendel
  • 683
  • 9
  • 23
0
votes
1 answer

STM32F407 SPI reciveing only 0xFF (255) or 0

Recently I have been trying to receive a data from my STM32F407 motion sensor. I have the following code: uint8_t SPI1_Read(){ GPIO_ResetBits(GPIOA, GPIO_Pin_4); // CS low while(SPI_I2S_GetFlagStatus(SPI1,SPI_I2S_FLAG_TXE)==RESET){} …
royalBlue
  • 95
  • 3
  • 9
0
votes
1 answer

Error class BackgroundSubtractorMOG2 in OpenCV

I have same the problem like this topic BackgroundSubtractorMOG2 & OpenCV Before i use opencv 2.4.9, i have deleted opencv 3.0.0. And now when i use class BackgroundSubtractorMOG2 then i have this prolem. How can i resolve it. I'm using eclipse.…
Nick Viatick
  • 265
  • 1
  • 4
  • 19
0
votes
0 answers

How to Autocapture when motion detection in android?

Hi I need auto capture when picture motion in Android camera. I can capture image with user's permission, but I want app to capture image automatically whenever motion is detected. Please any one give idea. private static final String TAG =…
Manikandan K
  • 1,081
  • 1
  • 9
  • 17
0
votes
2 answers

cv2.cvtColor error. Is it bug?

I need to use some motion detection code, then I use following code, provided by this link: http://www.steinm.com/blog/motion-detection-webcam-python-opencv-differential-images/ . Here is the code: import cv2 def diffImg(t0, t1, t2): d1 =…
rizkie
  • 121
  • 1
  • 2
  • 7
0
votes
0 answers

Find motion using blob detection on opencv

I have some problem about bgs library of opencv. I am using absdiff functions for motion analysis. The motion is not clear enough. I used threshold and other functions to achieve smooth motion. So, what is the most useful background subtract library…
0
votes
1 answer

User Motion Detection App keeps on crashing

I have been working on this app. It just won't execute. Crashes everytime.Please help. AndroidManifest.xml
0
votes
1 answer

how can I draw the trail of joints with ellipse in kinect?

The program I would like to make is like this: Track the joint of right hand and on that coordinate, an ellipse is displayed. I made this ellipse track my hand. I want to make the trail of ellipse not disappear, so the ellipse can be used like a…
jungyh0218
  • 558
  • 1
  • 4
  • 17
0
votes
1 answer

Determine movement/motion (in pixels) between two frames

First of all I'm a total newbie in image processing, so please don't be too harsh on me. That being said, I'm developing an application to analyse changes in blood flow in extremities using thermal images obtained by a camera. The user is able to…
eol
  • 23,236
  • 5
  • 46
  • 64