Open cesarpgouveia opened 3 months ago
It seems this issue is explained here: https://discuss.luxonis.com/d/3548-fatal-error-with-1200-p-resolution/2
However, I'm now encountering a new error using THE_720_P for both color and depth:
[1944301041DF982E00] [1.13] [0.788] [ColorCamera(0)] [warning] Unsupported resolution set for detected camera IMX378/214, needs 1080_P / 4_K / 12_MP. Defaulting to 1080_P
I really need to use the same resolution for both streams (depth and color).
CC @jakaskerl
@cesarpgouveia you may use IspScaling to downscale center camera to 720p, same as left/right & depth (+ setDepthAlign to then be able to do RGBD. Example can be found here: examples\StereoDepth\rgb_depth_aligned.py
Hey @themarpe thanks for the response!
Do you have an example in C++? I am unable to access certain methods, such as camRgb.setMeshSource(dai.CameraProperties.WarpMeshSource.CALIBRATION)
or camRgb.setCalibrationAlpha(alpha)
Thanks, César.
@cesarpgouveia make sure you are using the latest DepthAI - also that same example should be present under cpp examples
I'm using DepthAI version 2.24.0, which is from Dec 14, 2023. Have so many changes been made in such a short time, especially to such essential functions?
On the Depth-AI core, we have this example: depth_align.cpp. It appears to have many differences compared to the Python version. Is this the one I should use as a reference?
Hi,
I'm relatively new to the DepthAI OAK-D camera, so I developed a simple C++ script that opens both RGB and depth streams and displays them on the screen using OpenCV. You can see the code below.
The issue I'm encountering is that when I try to open both depth and color streams with THE_1200_P resolution for both, I receive the following error message:
[1944301041DF982E00] [1.13] [0.871] [system] [critical] Fatal error. Please report to developers. Log: 'OsDrvOV9282' '1320'
However, if I use other resolutions (such as THE_720_P for both), the program works fine. Can you help me with this?
Thanks, César
Code: