PS5520 5MP HDR 相機

PS5520 是一款 5MP HDR 感測器,搭載 PixArt 的 FinePixel 與 HDR 處理管線,專為動態範圍嚴苛的場景所設計。

PS5520 5MP HDR 相機

完整資料手冊、照片與訂購資訊請參閱 PS5520 5MP HDR 相機產品頁面

備註

僅支援 OpenMV N6。

重點特色

  • 在 HDR 模式下以 30 FPS 提供 5MP(2592x1944)

  • 單次拍攝 HDR,具備 85 dB 動態範圍與 39 dB SNR

用法

在 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())