projecting Tango 3D point to screen Google Project Tango
Ptoject Tango provides a point cloud, how can you get the position in pixels of a 3D point in the point cloud in meters? I tried using the projection matrix but I get very small values (0.5,1.3 etc) instead of say 1234,324 (in pixels). I include the code I have tried //Get the current rotation matrix Matrix4 projMatrix = mRenderer.getCurrentCamera().getProjectionMatrix(); //Get all the points in the pointcloud and store them as 3D points FloatBuffer pointsBuffer = mPointCloudManager.updateAndGetLatestPointCloudRenderBuffer().floatBuffer; Vector3[] points3D = new Vector3[pointsBuffer.capacity()