MartyX Grover
- Total activity 2288
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 1
- Subscriptions 713
Comments
Recent activity by MartyX Grover-
What you are aiming for is technically possible. For example, the link below has a Python script for saving depth and color separately as .avi format video files using the OpenCV VideoWriter instr...
-
I am not involved in RealSense documentation activities. There is some starter information at the link below though. https://dev.intelrealsense.com/docs/python2 There is also a starter program he...
-
In regard to your first question: the RealSense Viewer applies a range of post-processing filters and depth colorization settings by default. When creating your own script, these are not included ...
-
There is a script shared by a RealSense user for saving the color data as a PNG and the depth data as an array of scaled matrices saved as an npy file. https://github.com/IntelRealSense/librealsens...
-
Using append with a Python array can cause the program to fail after 15 frames unless frames are saved into memory using the RealSense SDK's Keep() instruction. The discussion in the link below pr...
-
If a custom configuration is defined then its name should be added inside the brackets of the pipe start instruction, otherwise the custom configuration is ignored. You should not need to use an in...
-
Yes, you can use depth on its own without also using RGB. The link below has a simple C# example script for displaying the distance to an observed object / surface as a numeric value in meters. ht...
-
The new RealSense SDK version 2.50.0 has added a C++ example program for multiple camera pointcloud stitching that may be of interest to you. https://github.com/IntelRealSense/librealsense/tree/mas...
-
Hi Kamyar The links below highlight two past cases of the issue that you encountered with the 848x480 resolution being unsupported but the other resolutions being unaffected. In the first link, t...
-
If you are only using RGB then distance from the object should not be so much of an issue. To demonstrate this I used a D435i to capture keyboard keys at 1, 2 and 3 cm height from the keyboard res...