PS5520 5MP HDR Camera

De PS5520 is een 5MP HDR-sensor met PixArt’s FinePixel- en HDR-pijplijnen, ontworpen voor scènes met een uitdagend dynamisch bereik.

PS5520 5MP HDR Camera

Voor de volledige datasheet, foto’s en bestelinformatie, zie de PS5520 5MP HDR Camera-productpagina.

Notitie

Alleen ondersteund op de OpenMV N6.

Hoogtepunten

  • 5MP (2592x1944) op 30 FPS in HDR-modus

  • Single-shot HDR met 85 dB dynamisch bereik, 39 dB SNR

Gebruik

Op de N6 wordt de framesnelheid bepaald door de MJPEG VENC-encoder.

Stream een 30 FPS HDR-kleurvideo op 1280x720 (HD) in RGB565:

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

Stream een 15 FPS HDR-kleurvideo op 1920x1080 (FHD) in RGB565:

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

Stream een 5 FPS HDR-kleurvideo op volle 5MP — 2592x1944 (WQXGA2) — in RGB565:

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