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
1 answer

How to make SkeletonFrames avaible in my click event?

I want my SkeletonFrames avaible in my click event. Is there anyway to make it possible? I was planning to create a Kinect to place image on skeleton joints. Here's my coding. private void button1_Click(object sender, RoutedEventArgs e) { …
Ah Foo
  • 17
  • 1
  • 7
0
votes
1 answer

How to calculate change in orientation on an iphone around 3 axis?

In most of the phones that uses android OS contains orientation sensor which forms a part of motion events. These sensors output the change in the orientation of the device at interval rate set by the user. But iphone doesnt have any orientation…
sam
  • 259
  • 1
  • 6
  • 22
0
votes
1 answer

Using shake API to detect shakes

The events like motionBegan: or motionEnded: used for monitoring shakes can be fired only when there is a first responder in my view. Okay, so I can make the view first responder like this: [self.view becomeFirstResponder];. But the view cannot be a…
Sahil Chaudhary
  • 493
  • 2
  • 10
  • 29
0
votes
1 answer

How to determine the movement using only two frames

I'm learning the moving object detection using a sequence of frames. This is an example of two frames. I need to select moved object in the right frame. I can subtract one frame from another. In the selected area the result would be none zero =>…
a3dsfcv
  • 1,146
  • 2
  • 20
  • 35
0
votes
1 answer

Android: SurfaceView stops drawing on a third finger

The following code is the actual code used in an test app, on a class that extends surfaceView. @Override public void onDraw(Canvas canvas) { canvas.drawCircle(touched_x, touched_y, 50, myPaint); } @Override public boolean…
IAmGroot
  • 13,760
  • 18
  • 84
  • 154
0
votes
2 answers

Passing shake gesture event to the app delegate

I put the motionBegan:withEvent: method in my view controller to see if it would work, but it's not being called. In viewWillAppear, I made the view controller the first responder, and return YES from canBecomeFirstResponder. This view controller is…
Jim
  • 5,940
  • 9
  • 44
  • 91
0
votes
1 answer

UIButton is dead after I change views and switch back

So I created a program where a sound occurs when the device is shaken. Theres a button, that when tapped stops the sound from being played at any time (This is the "reset" method). There's another button, that when pushed displays another view (This…
SNV7
  • 2,563
  • 5
  • 25
  • 37
-1
votes
1 answer

Detect swing movement like dumbell bicep curl with android accelerometer

I want to create a game which detect arm movement with accelerometer . The kind of arm movement are the movement which commonly found in fitness club like dumbell bicep curl and the others. my only concern is that I have no idea about the formula of…
Fugogugo
  • 4,460
  • 10
  • 36
  • 50
-1
votes
0 answers

Motion Detection to my model Using camera client app

I have the model which has class LICENSE PLATE , using yolo i am detecting the object by number plates bounding box , now i need to trigger the camera to awake only when object is detected and once object not detected afterwards my…
-1
votes
1 answer

Android development: OnTouchEvent

I'm using: @Override public boolean onTouchEvent(MotionEvent event) { I'm using surfaceview. But when I try: if (event.getAction() == MotionEvent.ACTION_UP) { Log.d("STATE: ", "Up"); It is never called. What is the reason? It is really…
carefacerz
  • 1,287
  • 3
  • 16
  • 27
-1
votes
1 answer

From where should I start learning python for Image Processing

I need to create a project which detect's the motion of an object on the screen an triggers the alarm. For example if diamond is placed in front of the camera and the position of the diamond is Changed the alarm/siren should be triggered. How to…
Poojan shah
  • 31
  • 1
  • 5
-1
votes
1 answer

Motion detection algorithm for neglecting motion of vegetation?

I'm trying to write my own software for security camera motion detection, but in the area of interest outside my house, there is a lot of vegetation motion that will obviously trigger recording if I use some of the more simple algorithms that rely…
Zan
  • 21
  • 3
-1
votes
2 answers

How to detect moving object on a moving conveyor using opencv

I'm building a grading system for crabs. In this system, the animals (crabs) are placed in a moving conveyor and I need to identify dead or alive animals by detecting its motion based on images captured by a camera on this conveyor. The color of…
Son Vo
  • 21
  • 8
-1
votes
1 answer

how to use openCV as a motion detector (not looking for video output)

I'm very new to c++ and have been doing a lot of research into openCV. I'm currently making a motion detector using a webcam and trying to use it to trigger a function (kind of like a listener). I don't need any kind of visual video in my…
Jermayne Williams
  • 112
  • 1
  • 2
  • 12
-1
votes
2 answers

Android detect in motion

I have a android tablet which is on a indoor vehicle. I want to use android's sensor to detect if this vehicle is in motion state or not. theoretically it can be in uniform motion tho it's not possible in real. I know how to use accelerometer to…
York Yang
  • 527
  • 7
  • 13