Panoramic Camera Module

From Geekworm Wiki
Revision as of 16:52, 1 September 2018 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Raspberry Pi Panoramic Camera Module sku:444391

Raspberry Pi Panoramic Camera Module sku:444391
Raspberry Pi Panoramic Camera Module sku:444391
Raspberry Pi Panoramic Camera Module sku:444391

Overview

Panoramic Camera Module

Features

  • Raspberry Pi Camera, supports all versions of the Pi.
  • 5 megapixel
  • Resolutions: 2952 x 1944
  • CMOS: 1/4 ;
  • Focal Length : adjustable
  • Diagonal: 222 degrees (while other cameras are only 72 degree).
  • Sensor resolution: 1080p
  • 4 screw holes, you can fix the LED Boards;

How to connect the hardware

Plumb to connect the FFC with the connector(the one right beside the HDMI interface). The contact face to the HDMI interface when connection.

Remove the protective film before using the lens.

Beware of ESD damage and static electricity when use the bare board.

How to use the software

RPi raspi-config and firmware have been updated to the camera. Execute apt-get update and apt-get upgrade

Select camera in raspi-config, start up camera driver in RPI, and then boost

Perform the command-line procedure raspivid and raspistill to operate the camera, capture video clips or images

Play via mplayer about the captured video clips

How to send out the webcam data via internet broadcast

Input the webcam data via nc order(ncat-Concatenate and redirect sockets),and then redirected to network port for output.

How to enable camera support in Raspbian

  • Boot up the Pi and log in. The default username is pi, and the default password is raspberry. (Note: if you have changed these from the default then you will need to supply your own user/password details).
  • Run the following commands in a terminal to upgrade the Raspberry Pi firmware to the latest version:
sudo apt-get update 

Fisheye1.png

sudo apt-get upgrade

Fisheye1.png

  • Access the configuration settings for the Pi by running the following command:
sudo raspi-config
  • Navigate to “camera” and select “enable”.

Fisheye3.png

Fisheye4.png

  • Select “Finish” and reboot.

Fisheye5.png

How to stream video from the Raspberry Pi camera over a network

To view the feed on Linux

Install the dependencies by running the following in a terminal:

sudo apt-get install mplayer netcat

Find your IP address by running ifconfig. (Your IP address will be listed in the console output and will probably be of the form 192.168.1.XXX).

Run the following command in a terminal to view the feed using MPlayer:

nc -l -p 5001 | mplayer -fps 31 -cache 1024 -

To view the feed on Windows

Install and run Linux instead.

Find your IP address by running ipconfig. (Your IP address will be listed in the console output and will probably be of the form 192.168.1.XXX).

Download MPlayer.

Download Netcat.

Note that your browser may complain that these files are malicious, as they are unsigned executables.

Press the Windows key and the ‘r’ key simultaneously to bring up the “Run” dialog. Enter cmd.exe into the dialog and press enter/return to open a DOS prompt.

Enter the following command at the prompt to view the feed using MPlayer:

[Path to nc.exe]\nc.exe -L -p 5001 | [Path to mplayer.exe]\mplayer.exe -fps 31 -cache 1024 -

To view the feed on OS X

Download MPlayer.

Alternatively, you can download mplayer using Brew, which we recommend.

Find your IP address by running ifconfig. (Your IP address will be listed in the console output and will probably be of the form 192.168.1.XXX).

Run the following command in Terminal to view the feed using MPlayer:

nc -l -p 5001 | mplayer -fps 31 -cache 1024 -

To view the feed on a Raspberry Pi:

Find your IP address by running ifconfig. (Your IP address will be listed in the console output and will probably be of the form 192.168.1.XXX).

Run the following commands in a terminal on the receiving Pi:

mkfifo buffer
nc -p 5001 -l > buffer | /opt/vc/src/hello_pi/hello_video/hello_video.bin buffer

To transmit the feed from the Pi with camera module attached

After setting up the “receiving” machine as per the instructions above, run the following commands in a terminal on the “transmitting” Pi:

raspivid -t 999999 -o – | nc [insert the IP address of the client] 5001

You can then use the commands listed in the “How to use the Raspberry Pi camera software” section above to change the capture time or to add a video effect.

Document & Dowmload

http://www.raspberrypi.org/camera

http://www.raspberrypi.org/archives/tag/camera-board

http://www.raspberrypi.org/archives/3890

Packing List

  • 1 x Camera Module (FFC Cable length:about 15cm)
Add your comment
Geekworm Wiki welcomes all comments. If you do not want to be anonymous, register or log in. It is free.