라즈베리 파이 CSI 인터페이스 카메라 5 백만 픽셀 15cm 유연한 케이블 지원 3 세대 B/2 세대스토어 가기

라즈베리 파이 CSI 인터페이스 카메라 5 백만 픽셀 15cm 유연한 케이블 지원 3 세대 B/2 세대

₩ 2,201 ¥ 11.2

색상:

  • 종이 상자가 있는 녹색 보드

크기:

수량:
- +
재고:

최소 주문 수량: 1

알리타플은 고객님께서 주문한 물건을 그대로 구매대행 해드립니다.
궁금한 사항이 있으시면 언제든 고객센터로 연락주세요.

1688온라인 사이트에서 검색된 상품입니다. 알리타플에서는 상품검색/현지구매(구매대행)/국제배송 업무만 제공해드립니다. 해당 상품의 품질 및 상태에 대해서는 확인해 드릴 수 없고 해당 물건이 입고가 된 후에 검수과정을 거쳐야 확인이 가능합니다.

상세페이지

没有技术支持,会用再买,谢谢。

 

连接方式:连接器的位置:90度垂直连接器,HDMI口旁边那个。连接时触点一侧朝向HDMI接口

 

软件使用:
1. RPi固件和raspi-config已经为了摄像头更新,请执行一次apt-get update; apt-get upgrade;
2. raspi-config中选择camera,启动RPi固件中的摄像头驱动,然后重启
3. 使用命令行程序raspivid和raspistill操作摄像头,捕捉视频片段或图像
4. 捕捉到的视频片段需要用mplayer播放

如何将摄像头的数据通过网络直播播发出去:
通过nc命令(ncat - Concatenate and redirect sockets)将摄像头的输入数据,直接重定向到网络端口实现输出

 


以下是详细说明

参数:

镜头1/4   5M

光圈:2.9

焦距:3.29

视场角:72.4度

硬件连接:

1. 软排线,90度垂直连接器,HDMI口旁边那个。连接时触点一侧朝向HDMI接口。
2. 使用前撕掉镜头上的保护膜
3. 裸板,注意ESD伤害,谨防静电!

软件使用:
1. RPi固件和raspi-config已经为了摄像头更新,请执行一次apt-get update; apt-get upgrade;
2. raspi-config中选择camera,启动RPi固件中的摄像头驱动,然后重启
3. 使用命令行程序raspivid和raspistill操作摄像头,捕捉视频片段或图像
4. 捕捉到的视频片段需要用mplayer播放


如何将摄像头的数据通过网络直播播发出去:
通过nc命令(ncat - Concatenate and redirect sockets)将摄像头的输入数据,直接重定向到网络端口实现输出.

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

Click to enlarge

sudo apt-get upgrade

Click to enlarge

Access the configuration settings for the Pi by running the following command:

sudo raspi-config

Navigate to camera” and select enable.

Click to enlarge

Click to enlarge

Select Finish” and reboot.

Click to enlarge

How to use the Raspberry Pi camera software

raspivid is a command line application that allows you to capture video with the camera module, while the applicationraspistill allows you to capture images.

-o or output specifies the output filename and -t or timeout specifies the amount of time that the preview will be displayed in milliseconds. Note that this set to 5s by default and that raspistill will capture the final frame of the preview period.

-d or demo runs the demo mode that will cycle through the various image effects that are available.

Example commands

Capture an image in jpeg format:

raspistill -o image.jpg

Capture a 5s video in h264 format:

raspivid -o video.h264

Capture a 10s video:

raspivid -o video.h264 -t 10000

Capture a 10s video in demo mode:

raspivid -o video.h264 -t 10000 -d

To see a list of possible options for running raspivid or raspistill, you can run:

raspivid   less

raspistill   less

Use the arrow keys to scroll and type q to exit.

Extended documentation is available.

Note that we recommend that you change SSH password if you are using a camera, in order to prevent unwanted access.

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.

상호: 주식회사 와이지넷코리아 (YOUNG GROUP NET KOREA CO., LTD.)    대표: 주용규    사업자등록번호: 223-81-14426    통신판매업신고번호: 제 2015-서울강남-02499호
우편번호 : 07505    서울시 강서구 하늘길210 김포국제공항 구화물청사 4번GATE 361-4호   
TEL:(배송확인) 070-5001-0885    (업무상담) 070-4337-1714    업무제휴문의:ygnkorea@gmail.com

웨이하이센터상호: 威海韩运国际贸易有限公司 法定代表人: 朱 勇奎 统一社会信用代码: 91371000MA3U6XGW6N 进出口: 37109409C6
(264200) 山东省 / 威海市 / 环翠区 / 西苑街道 / 贝卡尔特路91-2号 / 威广物流园西门 / 韩运国际贸易 TAPL
TEL : +86) 0631- 598 -1400    FAX : +86) 0631- 598 -1144
TAPL Hanyun International Trade , West Gate of Weihai Logistics Park, Bekart Road-91, Xiyuan Street, Huancui District, Weihai City, Shandong Province,CHINA (ZIPCODE 264200)
Copyright© 2023-2024 alitapl.com All Rights Reserved