About 219,000 results
Open links in new tab
  1. computer vision - How to convert 2d (x,y) cooridinates into 3d …

    Dec 5, 2022 · By having a 2D depth image and camera's intrinsic matrix, you can convert each pixel to 3D point cloud as: z = d x = (u - cx) * z / f y = (v - cy) * z / f // where (cx, cy) is the …

  2. ffmpeg - How to convert a 2D video to 3D/180°? - Stack Overflow

    Dec 9, 2022 · I am trying to create a 3D side by side video from a 2D video. Apparently, there are some paid software under Windows that are able to do this and I would like to do the same …

  3. How to copy a 2D array into a 3rd dimension, N times?

    38 Introduced in NumPy 1.10.0, we can leverage numpy.broadcast_to to simply generate a 3D view into the 2D input array. The benefit would be no extra memory overhead and virtually free …

  4. python - How can I make a two-dimensional NumPy array a three ...

    Apr 27, 2024 · I have a two-dimensional array with shape (x, y) which I want to convert to a three-dimensional array with shape (x, y, 1). Is there a nice Pythonic way to do this?

  5. How to convert a 3D point into 2D perspective projection?

    My question is, how does one take the 3D xyz vertex returned from the 'world to camera' function, and convert this into a 2D coordinate. I am wanting to use the projection plane at z=0, and …

  6. How do I reverse-project 2D points into 3D? - Stack Overflow

    May 7, 2017 · 83 I have 4 2D points in screen-space, and I need to reverse-project them back into 3D space. I know that each of the 4 points is a corner of a 3D-rotated rigid rectangle, and I …

  7. Convert points on a 3d Plane to 2d Coordinates - Stack Overflow

    Apr 11, 2018 · I have a point cloud, all the points lie on a plane in 3D Space. I need to convert each point to 2D Coordinates and vice versa. (x,y,z) in Coordinate System A => …

  8. math - How To Convert a 2D Viewport Point to a 3D World Space ...

    Jun 13, 2024 · How To Convert a 2D Viewport Point to a 3D World Space Coordinate in Unreal Engine 4.27 Asked 1 year, 5 months ago Modified 1 year, 4 months ago Viewed 659 times

  9. How to create a 3D image with series of 2D Image [closed]

    Mar 18, 2021 · I have a series of 2D tiff images of a sample; I want to create or reproduce a 3D image/volume((volume rendering) using the 2D image for 3D visualization. I found that this link …

  10. How can I convert 3D space coordinates to 2D space coordinates?

    Apr 8, 2015 · I'm using a Lua API. I'm trying to transform 3D space coordinates to 2D space coordinates. I've asked google but I can't find anything apart from snippets using OpenGL …