Kvuong
- Total activity 29
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Comments
Recent activity by Kvuong-
Can you provide an example implementation for the three filters please? Thanks, Kenneth
-
Hi Marty, thank you for the response. I already use a decimation filter, but i didn't input the "decimated = df.process(frame).as_frameset()" line. Can you explain what this does? Are there any oth...
-
For a 1:1 comparison, here is the head in the same position and sensed through my code in the API. And here is my code: import pyrealsense2 as rsimport cv2import numpy as npimport library as li...
-
Can you provide an example of how to build from source code on Python windows?
-
Hi Marty, trying that approach didn't change the results. I suspect that the calculate and map to functions are just taking too much processing time, is there a way to retrieve the XYZ coordinates ...
-
Rather, narrowing it down some more it seems like the root of the cause is found at. pts = pc.calculate(aligned_depth_frame) pc.map_to(aligned_color_frame)
-
Hi Marty, I've found a workaround that lets me record videos for an extended period of time by writing the output out to a separate .txt file. However, I've found a different problem in the code in...
-
Hi Marty, I think I might've figured out the alignment, but now I run into a separate issue. I've read implementation on Keep(), mainly the ones below: Saving pyrealsense2.pyrealsense2.depth_frame ...
-
1. I see, I've set the power to 360 and I'll do some tests to determine if it's better. 2. To explain my setup. I will be passed a pixel coordinate (u,w) from a model which analyzes the rgb image. ...
-
Finding this previous github ticket, it seems that they used align_to and map_to for pc.calculate. Can you please explain why it's alright to bypass the align_to method then? Pointcloud: comparing ...