Difference between revisions of "Video Input from a Raspberry Pi B+ Camera Module"

From ESE205 Wiki
Jump to navigation Jump to search
Line 1: Line 1:
Although the steps I've outlined below might seem trivial, there are a number of conflicting sources on how to access the video feed from the Raspberry Pi B+ using OpenCV, many of which ''do not work''.  The following guide is designed to help you quickly and efficiently work recording video into your project.
+
Although the steps I've outlined below might seem trivial, there are a number of conflicting sources on how to access the video feed from the Raspberry Pi B+ using OpenCV, many of which ''do not work''.  The following guide is designed to help you quickly and efficiently work recording video into your project.  Please note that my instructions were tested using Python 2 with OpenCV.
  
 
==Step 1: Import OpenCV into your Python File
 
==Step 1: Import OpenCV into your Python File
Assuming that you've successfully installed OpenCV on your Raspberry Pi B+, you need to include <code>import cv2</code><br>
+
Assuming that you've successfully installed OpenCV on your Raspberry Pi B+, you need to include <code>import cv2</code><br> at the top of your .py project file.  This will allow you to use the OpenCV methods.
  
 +
==Step 2: Specify Location, Length, and FPS==
 +
Next, I would suggest creating global variables for:
 +
1. The location on the Raspberry Pi where you would like to save your video clip, which will include the clip's name (it's usually best to use an absolute path in case you end up moving your project file)
 +
2. The intended duration (in milliseconds) of your video clip
 +
3. The number of frames per second in your video (I successfully tested values up to 90 FPS)
 +
 +
For example, under the previously described import statement: <code>[vid_loc,vid_len,vid_fps]=['/home/pi/Desktop/v2a.h264','5000','90']</code>
  
  

Revision as of 06:32, 4 May 2016

Although the steps I've outlined below might seem trivial, there are a number of conflicting sources on how to access the video feed from the Raspberry Pi B+ using OpenCV, many of which do not work. The following guide is designed to help you quickly and efficiently work recording video into your project. Please note that my instructions were tested using Python 2 with OpenCV.

==Step 1: Import OpenCV into your Python File Assuming that you've successfully installed OpenCV on your Raspberry Pi B+, you need to include import cv2
at the top of your .py project file. This will allow you to use the OpenCV methods.

Step 2: Specify Location, Length, and FPS

Next, I would suggest creating global variables for: 1. The location on the Raspberry Pi where you would like to save your video clip, which will include the clip's name (it's usually best to use an absolute path in case you end up moving your project file) 2. The intended duration (in milliseconds) of your video clip 3. The number of frames per second in your video (I successfully tested values up to 90 FPS)

For example, under the previously described import statement: [vid_loc,vid_len,vid_fps]=['/home/pi/Desktop/v2a.h264','5000','90']