MartyG
- Total activity 5964
- Last activity
- Member since
- Following 0 users
- Followed by 7 users
- Votes 3
- Subscriptions 1820
Comments
Recent activity by MartyG-
This error can occur if the target platform has been set to 'Any CPU' instead of x86 or x64. https://github.com/IntelRealSense/librealsense/issues/2125
-
If you are using manual RGB exposure then setting RGB exposure to 78 and FPS to 6 (yes, 6, not 60) should reduce RGB blurring from fast motion on a D435i camera.
-
Hi Manuel Báez The significant increase in the number of gaps and holes looks as though it could be due to a reduction in Laser Power. This could result from the value of the 'Laser Power' settin...
-
Great to hear, Luke, thanks again for the updates!
-
You are very welcome, Luke :)
-
Sync between depth and RGB on the D435 / D435i camera models can be a little more complex than D415 because the RGB sensor is not on the same PCB circuit board as the depth sensor, and instead is m...
-
Assuming then that the problem is not with the cif configuration lines, I recall a D405 case from October 2022 where a RealSense user of C# had a crash error with D405 that did not occur with D435....
-
Let's test whether it really is a stream configuration issue by removing cif from the brackets of the pipeline start line. The program should then ignore the cif lines and launch the D405 with its...
-
Does the code below work? var pipeline = new Pipeline();var cfg = new Config();cif.EnableStream(Stream.Depth, 640, 480, Format.Z16, 60);cif.EnableStream(Stream.Infrared, 640, 480, Format.Y8, 60);...
-
Hi Redyoung A key difference between D405 and D435 / D455 is that the D405 model does not have a separate RGB sensor, as RGB is instead provided by the depth sensor. So a program may fail on D40...