[D405] Is it possible to stream IR and depth images with different resolutions? #11689
-
Hello, I have an Intel Realsense D405. I want to have different resolutions for IR stream and depth stream. But with the code snipped below I get an error. There is no error, if the depth and IR stream have the same resolution.
When using the Intel Realsense viewer, the depth stream has always half the resolution of the IR stream. best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @HanzDieter 1280x720 resolution at 30 FPS is supported as a configuration for the depth stream. The RealSense Viewer's 'i' information overlay just always shows depth as half the defined resolution. For the D405 model, all stream types (depth, infrared, RGB) should be set to the same resolution and FPS. So you could either have depth, Infrared 1 and Infrared 2 set to 1280x720 / 30 FPS, or depth and RGB set to 1280x720 / 30 FPS. Either configuration should work. |
Beta Was this translation helpful? Give feedback.
-
It is possible to reduce Resolution of the depth stream by using the decimation filter! For more information: https://dev.intelrealsense.com/docs/post-processing-filters |
Beta Was this translation helpful? Give feedback.
-
The Decimation filter is certainly a way to have the same resolution in the config instructions but downsample the depth stream to a lower resolution. So it is a good workaround for your situation Thanks very much for the update! |
Beta Was this translation helpful? Give feedback.
Hi @HanzDieter 1280x720 resolution at 30 FPS is supported as a configuration for the depth stream. The RealSense Viewer's 'i' information overlay just always shows depth as half the defined resolution.
For the D405 model, all stream types (depth, infrared, RGB) should be set to the same resolution and FPS. So you could either have depth, Infrared 1 and Infrared 2 set to 1280x720 / 30 FPS, or depth and RGB set to 1280x720 / 30 FPS. Either configuration should work.