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
2 answers

Matte vs. Featured Walls for Motion Tracking and Area Learning

I'm setting up an arena for an autonomous mobile robot with a tango tablet mounted to it. The tablet is mounted ~2ft off the ground and a large part of its view will be the arena walls. My questions is whether I should paint the arena walls a matte…
0
votes
5 answers

How can I use the "on_motion_detected" method on Raspberry Pi motion?

I have been using my Raspberry Pi 2 to do some motion detection using a USB webcam and the motion package and am incredibly frustrated. Can someone explain to me how the on_motion_detected method is supposed to work?????? The idea is that when the…
Levi J
  • 97
  • 2
  • 15
0
votes
1 answer

Issues running Extreme Reality's Mac Samples

Trying to get an understanding of the this new Extreme Reality SDK for gesture/skeletal tracking for a project. They have a SDK for Mac, which includes samples. Tried running some of the .app files in the bin folder to no avail, keep getting the…
ndyr
  • 503
  • 4
  • 20
0
votes
1 answer

How to get the coordinates of the moving object with GPUImage motionDetection- swift

How would I go about getting the screen coordinates of something that enters frame with motionDetection filter? I'm fairly new to programming, and would prefer a swift answer if possible. Example - I have the iphone pointing at a wall - monitoring…
JoeC
  • 15
  • 4
0
votes
1 answer

how would I use iphone motion detection for an egg shaking-like application?

I am hoping to build an application similar to those egg shaking applications, to better understand how to detect motion on the iphone. I've been looking at accelerometer methods and motion and motion methods, but can't seem to get working what I…
scottsanders
  • 388
  • 2
  • 12
0
votes
1 answer

Implement Android Gesture Recognition Tool framework, receiving errors in generated build files

Im trying to use this framework for a school project. In order to install the framework it asks you to add a zip file to src. In the zip file I found a java class and some AIDL files. I follow the instructions on this SO post. When I try to clean…
Daniel Kobe
  • 9,376
  • 15
  • 62
  • 109
0
votes
2 answers

Get user inputs from the webcame for the game

I'm creating a simple game using Unity Studio which uses arrow keys to move the player. Now what I want to do is, use webcam as a movement detecting device and track user's movements and move the player according to them. (For example, when user…
Tharindu Thisarasinghe
  • 3,846
  • 8
  • 39
  • 70
0
votes
1 answer

shell motion script to do task ,wait and then repeat?

I've installed motion mmal on raspberry pi and its recording video whenever I run startmotion script #!/bin/sh nohup /home/pi/mmal/motion -n -c /home/pi/mmal/motion-mmalcam.conf 1>/dev/null 2>&1
A.Mujeeb
  • 63
  • 10
0
votes
0 answers

Frame Difference for non static camera

I am trying to detect motion in a video taken by non-static camera in this case UAV. what I planned to do is to remove the camera motion effect by aligning the frames as much as they overlap then make simple differencing, Here what I did - I used…
0
votes
1 answer

Picamera - Optimized way to do motion detection

The Picamera documentation provides examples on how one would go about implementing motion detection, without the actual motion detection algorithm itself. Although I am sure there are many more, I have thought about three ways of doing the motion…
Maxime Dupré
  • 5,319
  • 7
  • 38
  • 72
0
votes
1 answer

Network Protocol and Listening Port Number with Unity3D and Matlab

I can stream motion capture data live from Xsens MVN Studio into Unity3D and animate a character with it in real-time, because the Unity3D character listens to port number 9763 of the same machine and receives the motion data from there, which means…
user285372
0
votes
1 answer

Indexing issue in MATLAB (image processing)

I'm dealing with a predictive block-matching motion estimation algorithm. This means, the values of motion vectors are found using the previously found values and I am stuck with a really trivial thing. I'm dealing with images divided into blocks,…
0
votes
2 answers

Raspi-io: Error: Unknown pin "null"

I'm using the johnn-five and raspi-io packages for node and I'm trying to read the events created on a PIR motion sensor, but everytime I run the application, an error is thrown. console pi@raspberrypi ~/poc $ sudo node app.js 1439476578608…
Ruben
  • 796
  • 3
  • 9
  • 21
0
votes
1 answer

Speed Tracking a moving object from another moving object

I am new to computer vision, and need some advice on where to start. The project is to estimate speed of a moving object(A) relative to the moving object(B) which is tracking it(A). what should I need to do if I assume- if the background is…
0
votes
1 answer

Disable IR LED's on Leap Motion

I'm working on a project where we want to disable the three infrared LED's built into our Leap Motion controller so we can instead track an external infrared LED. We plan on determining the XYZ coordinates of this LED by applying triangulation to…