I am testing an OAK 1 camera. OAK-1-POE-MAX-AF-C41
https://shop.luxonis.com/products/oak-1-poe?variant=46470038520031
As per the technical specification, this camera supports 10 FPS at 5312x6000 resolution
While I am able to get the frames at this resolution, I am getting them at ~1.5 FPS
I am getting a bandwidth of 550-600mbps, measured using the luxonis/oak-examplesblob/master/random-scripts/oak_bandwidth_test.py
for this reason I wanted to convert the frames into an MJPEG stream
I am able to stream from this camera at 4000x3000 at 30fps, by setting type=dai.ImgFrame.Type.NV12
but at 5312x6000 I get the following error
[Camera(0)] [error] Output image width is bigger (5312 pixels) than maximum output frame width supported by ImageManip (4056 pixels) - skipping frame
according to this, it would not be possible to stream MJPEG at this resolution, and H26X does not support >4096 anyway
Q1. I have seen in the forums that OAK4 supports MJPEG stream at 30fps at 8000x6000 resolution, why does that not encounter the same issue?
Q2. In case I want to get 10fps at 5312x6000, what requirements would I have to make, as in bandwidth, etc. ?