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

Can the motion tracking of Google's Tango project be used in Qt Apps for Android?

Is it possible to use the C-API of Google's Tango Library outside Android Studio? I want to build a Qt application for Android (using Qt-Creator) and use the motion tracking of Google's Tango project. How would I have to set up such a project?
coproc
  • 6,027
  • 2
  • 20
  • 31
-1
votes
1 answer

Detect device motion with respect to gravity

I am trying to build an App where I want to detect the motion of device. Basically I need to detect the fall of device. Can anyone help me on how can I do this Using accelerometer with respect to Gravity?
-1
votes
1 answer

Opencv python background substraction and motion tracking

I read about opencv on google and found the following sample code online to play with: import cv2 def diffImg(t0, t1, t2): d1 = cv2.absdiff(t2, t1) d2 = cv2.absdiff(t1, t0) return cv2.bitwise_and(d1, d2) cam =…
Harshit Laddha
  • 2,044
  • 8
  • 34
  • 64
-1
votes
1 answer

TensorFlow with c++, codeblocks

I'm working with c++ for motion recognition, is it possible to use tensorFlow with "codeblocks"?. I have found tutorial with visual studio only. Is there any other library for implementing the Time Delay Neural Network (TDNN). Thank you for your…
azertq
  • 128
  • 1
  • 2
  • 9
-1
votes
1 answer

Python FTP Upload calling variable

I'm uploading a file to the ftp server, the actual settings for the upload are correct but it isn't uploading the correct filename, it is uploading filename as the actual name of the file instead of capture...... #!/usr/bin/python # # …
Nick Doss
  • 21
  • 2
-1
votes
1 answer

What sensor to use to acquire motion if it is steady constant speed (Android)

What sensor except of location sensors in Android to use to detect the device is in motion if it is steady constant speed without accelerations? The motion detection is sufficient to be of boolean type - just detect if the device moves or not.
chainastole
  • 85
  • 1
  • 3
  • 11
-1
votes
1 answer

How to detect motion from already store webm video in c++

I want to detect motion in already existing video, The video is stored in the webm format. I have seen some demo of opencv but those samples is capturing the motion of the live webcam streaming. Is there any library or api which capture the motion…
user3471546
  • 381
  • 1
  • 6
  • 17
-1
votes
1 answer

OpenCV4Android: How to find the movements of head

I'm using Viola-Jones method to detect face, whenever the face is tilted there will be possibility of algorithm won't work properly. I want to detect that movements, when it can not able to detect the face. Can I implement this using motion…
Punith K
  • 656
  • 1
  • 9
  • 26
-1
votes
1 answer

How to overlay audio over one another?

Hello I am building an app which plays a sound when the user shakes it. Here is my code: #import "ViewController.h" #define accelerationThreshold 0.5 @interface ViewController () @property (strong, nonatomic) CMMotionManager…
user3647176
  • 201
  • 1
  • 2
  • 6
-1
votes
1 answer

Dectect motion with RFID without use of sensors

Does anyone know if the use of only one static active RFID tag are able to detect motion(eg. moving human or objects) by itself without any use of other extra tags or sensors?
ActiveUser
  • 39
  • 2
  • 5
-2
votes
1 answer

Syntax error when trying to send message via telegram bot

Syntax Error I'm trying to make a Raspberry Pi Project with Motion sensor which would send me a telegram message via a bot. "Room is Quiet now..." " Motion detected after 4.81 seconds" I found a reference at…
-2
votes
1 answer

Effective motion detection with OpenCV with stream received from IP Camera

I have two questions which I was struggling finding answers on the net for more than a week. I'm writing a Windows service on Visual C++ 2017 which connects to Axis IP Cameras on our network and queries MJPEG streams using regular sockets. It…
-2
votes
1 answer

finding the right direction while moving your finger in android devices

I'm currently processing movement on Android and I used MotionEvent.ACTION_MOVE. I calculate currentx =(int) event.getX()/size and currenty=event.gety()/size, which gives me the integer base on the size of grid which I work on. Howevor, I want a…
-2
votes
1 answer

Extract images from video, change them to grayscale and find the differences

I am writing a function which takes the following actions: extracting from video, convert the frames to grayscale and calculate the difference between first two images that i have extract. I have done the code up to this point. But I have no idea…
newtoCS
  • 113
  • 9
-3
votes
1 answer

Motion detection in iphone/android without using GPS or internet

I am trying to detect motion of iphone/android without using internet or without using gps. Firstly i am not sure as to whether this is possible and if yes how to go about it. Thanks.
user445461
  • 11
  • 2
1 2 3
28
29