Questions tagged [3d]

3D computer graphics are graphics that use a three-dimensional representation of geometric data stored in the computer for the purposes of performing calculations and rendering 2D images.

3D could mean 3D graphics. 3D graphics usually involve a lot of matrix manipulation and vector mathematics. These matrices will be both affine transformations for manipulating the objects in 3D space (translation, rotation and scaling) and perspective transformations for generating the 2D image required for display. More information about 3D graphics at Wikipedia page of 3D graphics

3D could also mean Stereoscopy. Stereoscopy (also called stereoscopics or 3D imaging) is a technique for creating or enhancing the illusion of depth in an image by means of stereopsis for binocular vision. To generate stereo images two normal displays are generated offset from each other by the distance between the eyes. These are then combined on the display in one a variety of ways (LCD shutter glasses, polarised projections etc.) to generate the 3D effect.

More information on Stereoscopy at Wikipedia page of Stereoscopy

17108 questions
4
votes
1 answer

Pandas 3D obj model loading

I have been trying to build a game using pandas3D and I saw the load model function only uses x, bam and egg. files. But I only have obj files. How can I load obj models to pandas? I have tried converting from .obj to .x but pandas gives me an…
j.doe
  • 57
  • 1
  • 3
4
votes
1 answer

2D to 3D Projection with given Z in world

I'm sorry if it has been ask before but I couldn't find the proper answer to my question. For a better understanding, let me briefly explain the context of my problem Context I have two images (A and B) with non planar object on it. I would like to…
geko
  • 51
  • 5
4
votes
2 answers

Rotating body from spherical coordinates

Is it possible to rotate body which has its vertices defined in spherical coordinates. Currently I am doing collage project in VHDL and is about rotating dodecahedron and presenting over VGA. I applied pinhole camera model equations and that…
Luka Rahne
  • 10,336
  • 3
  • 34
  • 56
4
votes
0 answers

ThreeJS UV Mapping on Umbrella model

I have a kind of a specific problem that I was not able to find solution for. I am making a software for applying image to 3D model of umbrella. The umbrella model is dynamically created based on some parameters inserted by administrator of the…
ibrcic
  • 756
  • 1
  • 6
  • 12
4
votes
1 answer

3rd person camera's y axis not properly spherical around player - Logic problem?

I'm making a 3D game in XNA using Ox Engine. There is very little documentation and I have been surviving thus far, but now I've hit a logical road block for a good while and I think it's time to ask for outside help. All movement and mouse look x…
Remm
  • 677
  • 8
  • 24
4
votes
4 answers

3d cloud viewer?

I have a file which contains a bunch of points with their x,y, z locations.I am looking for a simple viewer where in I can load this point data and view it .Rotation is essential for me to check the depth of the cloud being generated .Can someone…
Manish
  • 1,729
  • 5
  • 32
  • 47
4
votes
1 answer

How to get 2D coordinates on window for 3D object in javafx

In javafx if we have 2D HUD (made of Pane and then out of it we create SubScene object for 2D Hud) and 3D SubScene and inside 3D scene we have some object with coordinates (x,y,z) - how can we get 2D coordinates in our HUD of the object if it is in…
4
votes
1 answer

C++ OpenCV 3D Drawing

I have a vector of Point3d that varies in size. X and Y coordinates are always decided by image analysis, whereas Z is always between 0 and 10. Is there any way to show these points in a 3D space while only using OpenCV? I'm very new to graphical…
4
votes
1 answer

IOS CATransform3DMakeRotation need help with vectors

I am trying to do a page flip animation and found this code on the internet. This works perfectly. It annimates a page turn from the right to the left, like a normal book. I want to modify the code to make it go from left to right, but I can not…
Chris Kooken
  • 32,730
  • 15
  • 85
  • 123
4
votes
3 answers

3D Rendering with Blender and Python

I have a project in which I would like to create a 3d animation based on some data. Given specific points, I'd like to create an animation including spheres, lines, some shading, and a moving camera. I was thinking I would use Python and Blender…
codersarepeople
  • 1,971
  • 3
  • 20
  • 25
4
votes
1 answer

c# Point Cloud to Mesh

Is it possible to reconstruct a 2.5D surface from X,Y,Z points (unstructured point cloud) to triangle mesh? Is there a library available that can do this for me that I can use with C#? I can't find anything open source out of the box that has this…
user3478586
  • 307
  • 4
  • 15
4
votes
1 answer

QML load and display .ply mesh with color attributes

I am trying to load a simple cube with per-vertex color information from a Stanford PLY file using QML. My entity looks like this: Entity { id: circle property Material materialPoint: Material { effect: Effect { …
teodron
  • 1,410
  • 1
  • 20
  • 41
4
votes
2 answers

OpenGL 3D-raypicking with high poly meshes

How to implement 3d raypicking in an 3d scene with models that contain high poly meshes? It takes too much time to iterate over all triangles to perform a triangle-line-intersection test. I know that there exist methods like octree etc. and it…
Lemonbonbon
  • 686
  • 5
  • 25
4
votes
1 answer

How to view arobject extension format exported from Apple ARKit 2.0 Scanning 3D objects App?

I am getting my hands dirty with the new ARKit2 object scanning and recognition tool that was part of WWDC 2018 Demos. All details can be found here. https://developer.apple.com/documentation/arkit/scanning_and_detecting_3d_objects Once the scanning…
Ahmad Al-Baqawi
  • 189
  • 1
  • 7
4
votes
1 answer

How to get the position of the point in Vispy 3d plot?

I am beginner of the VisPy. All I want to do is: Click the point then this point will change color and print the position (x,y,z) of this point. But I can't find how to do this. Here is my code. import numpy as np import sys from vispy import app,…
Nina
  • 156
  • 1
  • 7