MartyG
- Total activity 5964
- Last activity
- Member since
- Following 0 users
- Followed by 7 users
- Votes 3
- Subscriptions 1820
Comments
Recent activity by MartyG-
That level of RealSense programming is outside of my coding experience, unfortunately. The best place to get expert coding advice on this subject will be back at the GitHub forum. You can post a ...
-
I do not know of plans to add the T261 module to the CAD page. I could not find any unofficial CAD models on CAD library sites either. In the dedicated data sheet document for the T261 though, the...
-
As the post-processing guide mentions, the Decimation Filter does sub-sampling, and Intel have a sample program tutorial in the link below. https://github.com/IntelRealSense/librealsense/tree/maste...
-
I wonder if using sub-sampling post processing might help. A quote of documentation is below. **************** We usually recommend doing a non-zero mean for a pixel and its neighbors. All stereo ...
-
With a cfg definition, the only streams that get defined are the ones you specify. If there is no cfg defined then the camera automatically uses the default settings for that particular RealSense ...
-
You can override the default configuration of the camera and define your own, with only a depth stream, by placing 'cfg' (config) instructions directly before the pipe.start instruction. The link b...
-
My understanding is that deprojection is of use when converting 2D to 3D (such as a 2D image to a 3D point cloud) but may be unnecessary if measuring the distance from camera to object in a 3D real...
-
1. Yes, you can sync RealSense cameras with non-RealSense cameras. An example is combining RealSense depth data with high-definition RGB from a non-RealSense camera. The two links below describe...
-
As far as I know there is not an official equivalent of the C++ "Measure" example for measuring between two points with Python. A RealSense community member called Soarwing52 did convert "Measure"...
-
A reply has been posted on the RealSense GitHub forum's version of this question. https://github.com/IntelRealSense/librealsense/issues/5865 As well as the Python-related response on the GitHub, a...