I'm creating a 3D map with 2D depth images in Processing. I have captured the images using saveFrame(), however I am having difficulty in converting those saved frames into 3D. Is there any website or code I could look through for help? Any help would be much appreciated.
Creating a 3D map with 2D depth images in PROCESSING
5.7k Views Asked by user3532819 At
1
There are 1 best solutions below
Related Questions in PROCESSING
- Processing Live Coding. Emulating Ruby Processing watch with Sublime Text build system
- .jpg out of .cgi with java (IP Webcam)
- How to print an ArrayList in processing and how to update the background
- Mouse press event called twice
- Processing in Java Serial object Null Pointer Exception
- How to acces previous element in an ArrayList using "this"
- How to adjust the position of an .OBJ model in processing(python)
- Processing - Shutdown a computer
- Java Atan2() Sort violates general contract?
- Disable close button in Processing
- Processing sketch not working on web
- analyze the subtracted histogram of two images using matlab to find the difference at each point in amplitude
- Instantiating a SoundFile object within a class in Processing
- Creating an object's movement based on velocity in processing.js
- camera-projector calibration for processing
Related Questions in 3D-RECONSTRUCTION
- opencv sgbm produces outliers on object edges
- Serialization error during parfor
- 3D reconstruction using the projection matrices from the trifocal tensor
- Surface Reconstruction from Cocone algorithms
- Detecting/correcting Photo Warping via Point Correspondences
- Calculating essential matrix using rotation, translation and camera parameters
- How to find the 3D point for 2 images
- Rotating image from orientation sensor data
- Specifications of Checkerboard (Calibration) for obtaining maximum accuracy in stereo reconstruction
- Human height estimation using one mono calibrated camera
- dense 3D reconstruction having camera matrix
- Python: solvePnP( ) not enough values to unpack?
- How do ARCore or ARKit produce real-time augmentations of live video?
- What makes object representation and recognition hard?
- Android camera calibration without chessboard
Related Questions in IMAGE-STITCHING
- Opencv stitching planar images
- Opencv Images Orthorectification
- ffmpeg concat with video using image background
- Opencv Image stitching blending (Multiband blending)
- Image stitching not working with more than 3 images
- Matlab: Image stitching and blending
- GPUImage multiple video inputs with offset x and y
- How to detect image location before stitching with OpenCV / C++
- Creating walkable N-E-S-W world from photos
- stitching microscope images of a microchip
- Is there software to stitch together a high number of small digital images without rotating or stretching them?
- OpenCV stitching with georeferencing
- Image stitching Python
- Stitching images of documents - using OpenCV's SURF
- How to properly combine image using OpenCV
Related Questions in 3D-RENDERING
- Trilinear Interpolation on Voxels at specific angle
- Render polygon in three.js
- Rasterization using barycentric coordinates doesn't draw to half of the screen
- How to add 3d view in this Clock design?
- Unable to understand a piece of code for 3D model deform
- Nested cuboids using pre3d
- binding multiple texture in OpenGL does not work correctly
- What are the pros and cons of using a heightmap vs a model in 3D games
- Orthographic 3D Backface Culling using Surface Normals
- In which software this 3D volume has been visualized?
- The character is rendered differently between Unity and Blender
- Creating a 3d rendering in python with a camera. objects get progressively deformed toward the edge of the screen
- Unity+ARToolKit: rendering error in windows application
- Does a 3D engine needs to analyse all the map objects before rendering
- OpenGL Camera Orientation
Related Questions in 2D-3D-CONVERSION
- Convert 2D to 3D with dimension
- Multiview Stereo 3D construction in Blender
- Mapping 2D image onto 3D Scan Data
- Searching library for a 3D fft based convolution
- 2D convolution along three orthogonals (axis) for 3D volumetric image
- Calculating 3D world point from 2D image point using OpenCV
- Converting 2D point to 3D location
- Calculating which line is in front at the point where two line projections intersect
- How to do the correspondance 2D-3D points
- convert a single 2D image into 3D model
- Translation of (x, y) coordinates into (x, y, z) for move robot arm
- MFC with Opengl get 3d coordinate from 2d coordinate of mouse
- Convert 2d images to 3d model
- Creating a 3D map with 2D depth images in PROCESSING
- Height of a slope at a point's position (3D collision)?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Before i'm going to go in-depth into your question, i want to mention that instead of saveFrame() you can use the standard dfx library to export 3d models instead of 2d images using Processing if you simply want to store a scene: https://processing.org/reference/libraries/dxf/
Now back to your question. First of all what are depth images? Are those simply saveFrames from a 3D Scene in Processing (P3D) or are these special images, because depth is quite a general term. If they are 3D Scenes and you would know the coordinates of the camera and their viewangle the task gets quite easier, but it is technically impossible to create a 3D object using only 2D images without XRay. Imagine looking at a fork. Your eyes are making 2 pictures of that fork, however you have no idea what might be inscribed on the back of that fork. No matter how many pictures you might have of your 3D scene, you won't be able to convert it into 3D perfectly. That said, this is indeed a general problem in computer science and there are various methods to solve this. Wikipedia has an article on it: http://en.wikipedia.org/wiki/3D_reconstruction_from_multiple_images http://en.wikipedia.org/wiki/2D_to_3D_conversion
Here are a few stackoverflow topics which might help you get started:
3d model construction using multiple images from multiple points (kinect)
How to create 3D model from 2D image
Converting several 2D images into 3D model