You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, 1) the first question is about how to calculate the point x,y,z. What do its coordinate stand for? It is "camera coordinate" or "real word space coordinate"?
And this is what I know about the camera:
And this is equation to transform from the Xc to u,v coordinate (pixel coordinate):
But, In your code provided, you use xmap,ymap are the width & height value(they are not pixel value based on the equation as above) So I am confused as to the point x,y result ,z is from which coordinate system?
2)Second question is why are you using a depth image to create the point cloud and not rgb?
I look forward to your answers and it can help me to understand your code. Thanks a lot!
The text was updated successfully, but these errors were encountered:
Hi! I have some questions about how you create the point!
I saw in your code, the point is created by create_point_cloud_from_depth_image() function as below:
def create_point_cloud_from_depth_image(depth, camera, organized=True):
""" Generate point cloud using depth image only.
So, 1) the first question is about how to calculate the point x,y,z. What do its coordinate stand for? It is "camera coordinate" or "real word space coordinate"?
And this is what I know about the camera:
And this is equation to transform from the Xc to u,v coordinate (pixel coordinate):
But, In your code provided, you use xmap,ymap are the width & height value(they are not pixel value based on the equation as above) So I am confused as to the point x,y result ,z is from which coordinate system?
2)Second question is why are you using a depth image to create the point cloud and not rgb?
I look forward to your answers and it can help me to understand your code. Thanks a lot!
The text was updated successfully, but these errors were encountered: