Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 887 Bytes

File metadata and controls

11 lines (6 loc) · 887 Bytes

Motion-Detection-with-Python-and-OpenCV

A motion detector built using Python and OpenCV documentation.Through the program, we can access our webcam and detect any motion in front of it and we can record the intervals where motion was observed in the webcam in a CSV file via pandas. The motion is detected using OpenCV where we calculate the absolute difference between frames captured by webcam at each instance(delta_frame) and build a binary threshold_frame to better classify our moving objects. Using the Bokeh plotting library, we can plot the csv file containing the start and end intervals of motion for better visualization.

Screenshot (74)

Screenshot (78)