Recall & Review
beginner
What is the basic idea behind motion detection using a camera on Raspberry Pi?
It involves capturing images or video frames and comparing them over time to find changes that indicate movement.
Click to reveal answer
beginner
Which Python library is commonly used for image processing in Raspberry Pi motion detection projects?
OpenCV (cv2) is widely used because it provides tools to capture video and detect changes between frames.
Click to reveal answer
beginner
Why do we convert images to grayscale in motion detection?
Grayscale simplifies the image data by removing color, making it easier and faster to compare frames for changes.
Click to reveal answer
intermediate
What role does thresholding play in motion detection?
Thresholding helps to highlight significant differences between frames by turning small changes into black or white pixels, making motion easier to detect.
Click to reveal answer
intermediate
How can Raspberry Pi notify you when motion is detected?
It can send alerts like emails, sound alarms, or save images/videos when motion is detected.
Click to reveal answer
What is the first step in motion detection using a camera on Raspberry Pi?
✗ Incorrect
Motion detection starts by capturing video frames to analyze changes.
Why do we compare consecutive frames in motion detection?
✗ Incorrect
Comparing frames helps detect changes that indicate motion.
Which format simplifies image data for faster processing in motion detection?
✗ Incorrect
Grayscale removes color, making it easier to detect changes.
What does thresholding do in motion detection?
✗ Incorrect
Thresholding turns small differences into clear black or white areas.
How can Raspberry Pi alert you when motion is detected?
✗ Incorrect
Alerts like emails or alarms notify you about detected motion.
Explain the main steps involved in detecting motion with a Raspberry Pi camera.
Think about how images are processed and how changes are found.
You got /6 concepts.
Describe how thresholding helps in motion detection and why it is important.
Consider how small changes become easier to spot.
You got /4 concepts.
