Question regarding viewer_point_cloud.py
See original GitHub issueHi I was looking at the viewer_point_cloud.py script is there a reason you use :
while True:
capture = k4a.get_capture()
if np.any(capture.depth) and np.any(capture.color):
break
instead of just : capture = k4a.get_capture()
It seems you want to make sure the depth and color cameras are both synchronized but I think I read they are synchronized via the hardware ?
also is there a reason for having two while loops ?
thank you
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
Different 3D-Coordinates between RealSense Viewer Point ...
Dear Community, I have a strange problem. I need the position of points in 3D. So I use rs2_deproject_pixel_to_point(intr, [x, y], dist).
Read more >3D point cloud visualization is different - python - Stack Overflow
I'm trying to do some post processing on a point cloud, When I try to plot the point cloud using Axis3D I get...
Read more >Show Posts - ppant - Agisoft Metashape
The works when using the GUI version. ... I am trying to work on the python script to mosaic 10 band camera. but...
Read more >TDA2SX: I have some questions about yocto compilation
4, but there are several errors, it seems These git URLs can't be opened, how can I solve them if I want to...
Read more >How You Can Improve Your Next Facility Construction Project
Designing, surveying, and implementing facility construction changes comes with challenges. This blog shows how 3D scanning and JPIV can ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think I have to send the
calibration
tocolor_image_to_depth_camera
? and it is a private variable ofcapture
I think.No.
In the point cloud example, directly replace the following:
Replace depth_point_cloud with transformed_depth_point_cloud
Replace color with segmentation mask.
On Thu., Oct. 15, 2020, 03:56 KiyarashFarivar, notifications@github.com wrote: