OAK-1 MAX¶

Overview¶
OAK-1 MAX supports up to 32MP color camera resolution (IMX582) on a tiny, yet performant, device.
OAK-1 Max isn’t a standard USB camera. It’s a 4-trillion-operations-per-second AI powerhouse that performs your AI models on-board, so that your host is free to do whatever you need it to do.
Hardware specifications¶
Camera module specifications¶
Camera Specs |
Color camera |
---|---|
Sensor |
IMX582 (PY080) |
DFOV / HFOV / VFOV |
82° / 68° / 55° |
Resolution |
32MP (5312x6000) |
Focus |
Auto-Focus: 20cm - ∞ |
Max Framerate |
42 FPS |
F-number |
1.79±5% |
Lens size |
1/2 inch |
Effective Focal Length |
4.74mm |
Distortion |
< 1.5% |
Pixel size |
0.8µm x 0.8µm |
RVC2 inside¶
This OAK device is built on top of the RVC2. Main features:
4 TOPS of processing power (1.4 TOPS for AI - RVC2 NN Performance)
Run any AI model, even custom architectured/built ones - models need to be converted.
Encoding: H.264, H.265, MJPEG - 4K/30FPS, 1080P/60FPS
Computer vision: warp/dewarp, resize, crop via ImageManip node, edge detection, feature tracking. You can also run custom CV functions
Object tracking: 2D tracking with ObjectTracker node
IMX582 RAM consumption¶
At highest resolution, the IMX582 image sensor produces 32MP frames, which can consume a lot of RAM. As OAK cameras are embedded devices, they don’t have a lot of RAM to begin with. In most pipelines, even just the ColorCamera node with default pool sizes will be too large, so you need to be very cautious when it comes to RAM and we suggest reading the RAM usage documentation. For ColorCamera node, you’d likely need to change pool sizes, example here:
cam = pipeline.create(dai.node.ColorCamera)
cam.setResolution(dai.ColorCameraProperties.SensorResolution.THE_5312X6000) # 32MP
# Decrease pool sizes for all outputs (raw, isp, preview, video, still):
cam.setNumFramesPool(2,2,1,1,1)
3D models¶
Compared to OAK-1 Lite, OAK-1 Max only has a different camera sensors, otherwise PCBA/enclosure is the same.
Got questions?
We’re always happy to help with code or other questions you might have.