-
Notifications
You must be signed in to change notification settings - Fork 807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update DepthAI Integration #1034
Conversation
Great! can't way to try a OAK Pro model in the dark! You said
Should I wait to merge till they are fixed? Are issues from the depthai SDK or the driver in rtabmap? |
You can merge this PR first. For other issues and improvements I need some time to work on.
I also contributed some tuning improvements to depthai-ros a few days ago, and some of them can be used here as well. |
|
After some research and trial and error, I found out that I cannot use cv::stereoRectify() to get the same Projection Matrix as used by the onboard Node. In fact, Project Matrix is determined by how Depth Image is aligned. By default, Depth Image is aligned to DepthAlign::RECTIFIED_RIGHT. At this time, the Projection Matrix of the left and right and depth images is consistent with the Intrinsic Matrix of the right camera. Therefore, a reasonable configuration is to align the Depth Image to DepthAlign::RECTIFIED_LEFT. In this way, the Projection Matrix of the left and right and depth images is consistent with the Intrinsic Matrix of the left camera. The baseline is positive and Tx of right camera is negative, which conforms to the OpenCV convention, and is also compatible with other codes of rtabmap. In addition, dai::CameraBoardSocket::LEFT cannot be used for the alignment setting, otherwise it will cause misalienment of depth and mono images. All of the above have been verified, so that I can use OpenCV to get rectified images consistent with those obtained from the camera. And depth and mono images are perfectly aligned. It is a little regretful that the current rectification configuration loses a certain amount of FOV. For the OAK-D Pro W I use, the HFOV is 127 for raw mono image and 96.4208 for rectified image. I will consider using raw image or change alphaScaling later. |
I added some advanced parameter tuning to optimize depth quality, including:
You can refer to luxonis/depthai-ros#279 for more explanation. |
For night use, I did some preliminary tests. When IrFloodLightBrightness is set to the maximum (1500mA), using 400P stereo images, it seems to work best (with relatively high MatchesRatio and InliersRatio). This is presumably because the high-sensitivity noise of high-resolution images is more likely to affect features. I'm not going to delve into this yet, but it's an interesting point, including the effects of using different features. |
The major plan items are finalized so they can now be merged. |
I tested on my computer with my OAK-D and it works (with this minor change). Thanks for this PR! |
Add option to enable IR laser dot projector (active stereo) and IR illumination LED (for night-vision).
The default value for laser dot projector is 0 (turn off). Because the projected pattern is good for depth estimation but may harm feature extraction.
It looks like there are other issues with DepthAI integration. I'll try to troubleshoot and fix them soon.