Coloring issue on real-time point cloud streaming #3824
-
Greetings, I have been using Intel RealSense D455 for real-time point cloud streaming which I intend to use later on for other purposes. So far, I have been successful in creating the live stream as well as in adding coordinate axes to it. The output's color, however, appears to be muted/unsaturated: Does anyone know how to fix this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Can you share the code that you are using for this, or at least the camera and image processing portions? Also the RGB image as a reference? |
Beta Was this translation helpful? Give feedback.
-
So, I solved the issue by changing the format in the "config.enable_stream()" function, that is, I changed
to
|
Beta Was this translation helpful? Give feedback.
-
@whizbuzzer Hi, I am trying to do the same : visualize streaming from my camera D415. I use Do I miss something ? Could you share a minimal working code ? Thank you 👍 |
Beta Was this translation helpful? Give feedback.
So, I solved the issue by changing the format in the "config.enable_stream()" function, that is,
I changed
config.enable_stream(rs.stream.color, 960, 540, rs.format.bgr8, 30)
to
config.enable_stream(rs.stream.color, 960, 540, rs.format.rgb8, 30)