-
Notifications
You must be signed in to change notification settings - Fork 25
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
Object Detection Overlay on Both Camera Images #40
Comments
@Myzhar Hi there! Is there a fast way that I could get this to work on my own? |
Hi @keli95566 You can recontruct the 2D points from skeleton or object detection by calculating the 2D points in the right image from the 2D point in the left image + the disparity (can be extracted from the depth map). If you have a 2D point in the left image (uL,vL), and the 3D coordinate of this point (X,Y,Z) the 2D point in the right image (uR,vR) will be :
focale can be extracted from zed.getCameraInformation().calibration_parameters.left_cam.fx ( basically disparity = focale x Baseline / Depth. ) |
Hi there! Just some update, the following pipeline using
|
The maximum framerate for 720p is 60 Hz. |
I am wondering what is the object detection based on? Is it YOLO? is there any way we could customize the model/label based on gstreamer? Thank you very much! |
The Object Detection module uses internal models optimized to take advantage of the depth information. |
I see, thank you! However, I see that there is also a ZED Plugin for Yolo ( both c++ and Python) : https://www.stereolabs.com/docs/yolo/ |
Preliminary Checks
Proposal
Having the object detection or skeleton overlay on both camera image streams. The current version only supports overlay on a single image.
Use-Case
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: