PS5520 5MP HDR カメラ

PS5520 は PixArt の FinePixel および HDR パイプラインを備えた 5MP HDR センサーで、難しいダイナミックレンジのシーン向けに設計されています。

PS5520 5MP HDR カメラ

完全なデータシート、写真、注文については PS5520 5MP HDR カメラ製品ページ を参照してください。

注釈

OpenMV N6 でのみサポートされます。

ハイライト

  • HDR モードで 5MP (2592x1944) を 30 FPS

  • 85 dB のダイナミックレンジ、39 dB の SNR を備えた単発 HDR

使い方

N6 ではフレームレートは MJPEG VENC エンコーダーによって設定されます。

RGB565 で 1280x720 (HD) の 30 FPS HDR カラービデオをストリーミング:

import csi
import time

csi0 = csi.CSI()
csi0.reset()
csi0.pixformat(csi.RGB565)
csi0.framesize(csi.HD)
clock = time.clock()

while True:
    clock.tick()
    img = csi0.snapshot()
    print(clock.fps())

RGB565 で 1920x1080 (FHD) の 15 FPS HDR カラービデオをストリーミング:

import csi
import time

csi0 = csi.CSI()
csi0.reset()
csi0.pixformat(csi.RGB565)
csi0.framesize(csi.FHD)
clock = time.clock()

while True:
    clock.tick()
    img = csi0.snapshot()
    print(clock.fps())

RGB565 でフル 5MP (2592x1944 (WQXGA2)) の 5 FPS HDR カラービデオをストリーミング:

import csi
import time

csi0 = csi.CSI()
csi0.reset()
csi0.pixformat(csi.RGB565)
csi0.framesize(csi.WQXGA2)
clock = time.clock()

while True:
    clock.tick()
    img = csi0.snapshot()
    print(clock.fps())