The perspectivecamera tag has no wiki summary.
4
votes
2answers
398 views
OpenCV extrinsic camera from feature points
How do I retrieve the rotation matrix, the translation vector and maybe some scaling factors of each camera using OpenCV when I have pictures of an object from the view of each of these cameras? For ...
3
votes
2answers
793 views
Switching OpenGL to perspective mode on top of a half rendered orthographic scene?
We have a mostly 2D game that runs in orthographic mode, but one part shows a 3d model that is rendered in between the other 2D objects. How can I switch to perspective mode, render that model, then ...
2
votes
4answers
485 views
WPF flickering during animation in Viewport3D
I'm having some strange behaviour inside a WPF app I'm writing. When I run an animation on the camera position (a Point3DAnimation on PerspectiveCamera.PositionProperty), I get really bad flickering ...
2
votes
1answer
499 views
Rotation of camera used for perspective projection
I am trying to perform a simple perspective projection of various 3D structures, defined as a plurality of 3D polygons (different z's), each comprising a plurality of points. The structure will be ...
1
vote
3answers
450 views
OpenGL - gluPerspective / glFrustum - zNear & zFar problems
I'm writing a space exploration application. I've decided on light years being the units and have accurately modeled the distances between stars. After tinkering and a lot of arduous work (mostly ...
1
vote
2answers
453 views
Confused Regarding World View Projection Matrix question for Ray Tracing using XNA
So I've decided to rewrite an old ray tracer I had which was written in C++ and to do it in C#, leveraging the XNA framework.
I still have my old book and can follow the notes however I am confused ...
1
vote
0answers
511 views
Android Augmented reality Cameraview convert to screen coordinates
I'm currently developing my own augmented reality app. I'm trying to write my own AR Engine, since all frameworks I've seen so far are just usable with GPS data.
It's going to be used indoors, I'm ...
1
vote
3answers
591 views
Is gluLookAt together with glFrustum distorting the rendering?
I am wondering if gluLookAt together with glFrustum is distorting the rendered picture.
This is how a scene is rendered:
And here's the code that rendered it.
InitCamera is called once and ...
1
vote
1answer
594 views
Textured Primitives in XNA with a first person camera
So I have a XNA application set up. The camera is in first person mode, and the user can move around using the keyboard and reposition the camera target with the mouse. I have been able to load 3D ...
1
vote
1answer
632 views
Flash CS4 Rotating Around Z Axis Without Distorting For Stage Center, Is It Possible?
I've got three boxes rotating around their Z axis respectively. What I'm trying to do is keep them rotating around their respective Z axis without distorting if I move them away from the center of ...
0
votes
1answer
48 views
Cube mesh with libgdx android
I've done a mesh with libgdx and I'm trying to fill the mesh with some color.
create(){
if (bigMesh == null) {
bigMesh = new Mesh(true, 8, 8,
new ...
0
votes
1answer
151 views
gluLookAt() makes blank screen
I don't have much OpenGL experience. I am trying to draw a teapot and move a camera around the teapot. To this end I am using the gluLookAt function. The problem is that when I call gluLookAt the ...
0
votes
0answers
123 views
Calculating borders of a PerspectiveCamera in WPF3D
I have a mathematical problem.
I have a picture mesh in 3D space. I'm using a PerspectiveCamera to let the user pan and zoom around (like a virtual newspaper). But I need to set "borders" to the ...
0
votes
1answer
1k views
WPF 3D - Fit ModelVisual3D into the camera's field of view?
I have a cuboid who's dimensions are imported from XML so i need to be sure that no matter what the size of the model, the camera can always see all of it. This is for preview purposes. I'll likely ...
-1
votes
1answer
268 views
C# XNA - Matrix.CreatePerspectiveFieldOfView - Extend how far camera can see
i am using the following code to setup my camera. I can see the elements in a range of some 100 fs. I want the camera to see farther.
projection = ...