-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Depth image seems to be bad #3704
Comments
Yes, the depth frame is bad. |
Okay, it seems it needs some time to stabilize, but it's a problem. |
You could try |
Hello, Thanks for the trail, but is here any documentation for python, all I found is for C++.... |
@SamConti Could you please shed more details about what kind of python document you need? For python, we have some examples in https://github.com/IntelRealSense/librealsense/tree/v2.21.0/wrappers/python/examples Maybe you can find more information there. Thanks! |
@SamConti Any other questions for this ticket? Looking forward to your update. Thanks! |
@SamConti If no other questions, will close this ticket accordingly. Please feel free to create new ticket if have other questions. Thanks! |
@dorodnic @RealSenseCustomerSupport |
Before opening a new issue, we wanted to provide you with some useful suggestions (Click "Preview" above for a better view):
All users are welcomed to report bugs, ask questions, suggest or request enhancements and generally feel free to open new issue, even if they haven't followed any of the suggestions above :)
Issue Description
Hello,
I try to retrieve image from D435 camera in python but I think my depth image is not good and I don't know why.
Here the image :
And the depth image :
My code is
import pyrealsense2 as rs
pipeline = rs.pipeline()
config=rs.config
config.enable_stream(rs.stream.depth, 1280, 720, rs.format.z16,6)
config.enable_stream(rs.stream.color, 1280, 720, rs.format.rgb8,6)
config.enable_record_to_file("bagfiletest.bag")
pipeline.start()
pipeline.wait_for_frames()
pipeline.stop()
The text was updated successfully, but these errors were encountered: