📞 客服專線:02-26257937 加入LINE好友
99
  • 商品編號:1-8511271
  • 您當前位置:首頁 >手機.通訊 > 商品詳情
     五百多萬電子元器件,立即加入會員,查看價格規格
    製造公司:
    原 產 地:
    W1035-0113 Raspberry Pi CSI接口攝像頭 500萬像素 15cm軟排線 支持3代b/2代
    • 商品編號:1-8511271
    • 您 的 價:$:99
    • 為 您 省:$:0元(10折)
    我要買:
    (庫存:長期提供)
    $:99 送:1積分

    • 售出:0個
    • 流覽:21人
    • 購買次數: 點擊次數:
    • 收藏:0
    • 總評價: 0條評價
    • 加入LINE好友 LINE QR Code
      掃碼加入好友
      享優惠、技術支援與客服協助,加入官網會員及加入客服的LINE可領取1000元購物券可在本站銷費
    • 商品說明
    • 商品參數
    • 運送方式
    • 售後服務
    • 商品評價
    • 問與答

    鏈接 /s/1lYWFFPGkJJ-hXRyF8RUdNg 

    提取碼:1234 

    復制這段內容后打開百度網盤手機App,操作更方便哦

     

    連接方式:連接器的位置: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   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 c

    所需時間: 3-4天天就能到達(注)
    計費方式: 按訂單計費(基本費:$:55元) 
    基本運費: $:55元
    免費範圍: 購物滿$:3000元免此配送運費 
    配送範圍: 所有地區 
    所需時間: 3-4天天就能到達(注)
    計費方式: 按訂單計費(基本費:$:150元) 
    基本運費: $:150元
    免費範圍: 購物滿$:5000元免此配送運費 
    配送範圍: 所有地區 
    所需時間: 3-4天天就能到達(注)
    計費方式: 按訂單計費(基本費:$:100元) 
    基本運費: $:100元
    免費範圍: 購物滿$:5000元免此配送運費 
    配送範圍: 所有地區 
    所需時間: 3-9天就能到達(注)
    計費方式: 按訂單計費(基本費:$:0元) 
    基本運費: $:0元
    免費範圍: 購物滿$:0元免此配送運費 
    配送範圍: 所有地區 

     *退貨/退款權益說明:

    1. 根據消保法規定,消費者均享有商品到貨七天猶豫期(非試用期)之權利
    2. 但特別標定說明、特殊包裝商品不得拆封,否則恕不接受退貨。
    3. 受理消費者的退換貨,從商品收訖起7天內為退換貨保證期,若超過此期間視同驗收完成不得退換貨。並請所有消費者注意以下事項:
      (1)不良品退還經檢查與測試後,若發現商品本身並無瑕疵,消費者必須支付所有發生之相關費用。
       (2)在您收到貨品後如因非人為因素之商品損毀、刮傷、或運輸過程造成包裝破損不完整者,請您儘速通知本公司客服人員,我們會進行商品瑕疵或損壞鑑定,並儘速將新品寄給您。
       (3)所有要辦理退貨或換貨的客戶皆需E-mail或來電至客服中心,並提供:訂單號碼,退、換貨原因,您的姓名及聯絡電話,E-mail地址。
       (4)若您所訂購之商品無問題而您欲退貨,運費需自付,退回的商品必須是全新狀態(不可拆封),包括主要商品、使用手冊、、週邊零件,否則賣家有權拒絕接受退貨。
       (5)若商品因消費者個人不當使用拆卸產生人為因素造成故障、損毀、磨損、擦傷、刮傷、髒污、包裝破損不完整者,或是發票、附配件不齊者,恕不接受退貨。

    用戶評價 總評價: 共有0條評價
    目前還沒有用戶評分、評價
    用戶名稱:
    電子郵箱:
    用戶評級:
    評價內容:
    驗 證 碼:
    商品諮詢 共有0條諮詢
    電子郵件:
    諮詢內容:
    驗 證 碼:
    新手指南
    注冊新用戶
    會員等級
    網上訂購商品流程
    客戶簽收流程
    付款方式
    7-11取貨付款
    支付寶付款
    銀行轉帳付款
    貨到付款
    配送辦法
    配送費收取標準
    售後服務
    售後服務說明
    維修/退換貨
    退款說明
    交換連結
    交換連結中心
    |關於我們|聯系我們|人才招聘|新聞資訊|合作夥伴|有情連結|快遞查詢|我要留言|網站聯盟|幫助中心

    Buy360-IC版權所有,轉載必究‧Copyright© buy360 Co., Ltd. 

     

    加入好友
    网店系统 支付宝接口 购物系统 支付宝接口申请 商城系统 在线支付接口 网上购物系统 网站在线支付接口企业建站 网上商城系统 网上开店系统网站制作 在线支付接口申请 微信商城系统 购物网站系统 平潭新闻 平潭 平潭岛 平潭天气 平潭人才网网站建设网店模板

    本商城由 Lodoeshop™ 提供系统支持