MartyG
- Total activity 5964
- Last activity
- Member since
- Following 0 users
- Followed by 7 users
- Votes 3
- Subscriptions 1820
Comments
Recent activity by MartyG-
Thanks so much for sharing your C# code! Does this discovery solve your problem, please?
-
This is the 7-port model with a USB-C micro connector that I am using: https://www.amazon.com/AmazonBasics-USB-C-7-Port-Power-Adapter/dp/B076YN9FW4/ref=sr_1_1 If you do not have a USB-C micro size...
-
Thank you for your understanding. I'm very sorry that I wasn't able to find a solution for you in C#. I wish you the very best of luck!
-
It could be relevant. I certainly have not heard of any D435i IMU sample programs for C#. Usually, C# equivalents of the C++ sample programs tend to be created by RealSense community members rath...
-
RealSense T265 cases are now handled on the RealSense GitHub forum. To post your question there, please visit the site and click the New Issue button. https://github.com/IntelRealSense/librealsens...
-
My research shows that others have encountered this error when enabling the IMU streams. The nature of developing for C# in RealSense is that it is difficult to advise on because there are far few...
-
Apologies for the delay in responding further, as I was carefully researching your problem. I was reminded that I had a C# case a couple of months ago where the person was getting the 'frames didn'...
-
Please try adding these C# cfg definitions for accel and gyro and see what happens: cfg.EnableStream(Stream.Gyro, Format.MotionXyz32f);cfg.EnableStream(Stream.Accel, Format.MotionXyz32f);
-
I understood the question. I wanted to ensure that the cfg instructions and the pipeline were set up correctly in C#, as it is the foundation for the functioning of all the code that comes after t...
-
If you define cfg statements and use pipeline.Start(cfg); then the cfg statement inside the brackets instructs the SDK to start the pipeline with the configuration that you defined in the cfg state...