Tagged Questions
The perspective tag has no wiki summary.
11
votes
1answer
167 views
Calculate absolute dimensions of a div rotated in perspective with css3
lets say we have a div with 500x500px size and we rotate it on the x axis via css 45 degrees considering a webkit-perspective value of 1600px.
How would you calculate the absolute dimensions of the ...
9
votes
3answers
61 views
Opengl perspective distortion
I'm having this weird issue and I'm hoping someone could clear this up for me so I can understand what's wrong and act accordingly. In OpenGL (fixed-function) I'm rendering a tube with inner faces in ...
8
votes
2answers
2k views
Mode7-like perspective transform in canvas?
I'm making a canvas-based game engine and am wondering if anyone has any good info on how to achieve an overhead view perspective. What I'm looking for is somewhere halfway between the traditional ...
6
votes
2answers
1k views
Perspective transformation with GD
How could you distort an image with PHP GD from this...
To this...
using only the PHP GD library.
I don't want to use a function someone else made I want to UNDERSTAND what's going on
5
votes
4answers
1k views
Move camera to fit 3D scene
I'm looking for an algorithm to fit a bounding box inside a viewport (in my case a DirectX scene). I know about algorithms for centering a bounding sphere in a orthographic camera but would need the ...
4
votes
1answer
306 views
WP7 Perspective Transforming (3D Matrix vs PlaneProjection)
I was taking a look at this app: http://www.ztitch.com/index.html and was wondering how they did all of the 3D stuff... It doesn't look like he is using the built in 3D rotations (PlaneProjection) in ...
4
votes
3answers
1k views
How to open multiple consoles in multiple tabs in eclipse?
I am using Eclipse Version: Helios Release for a java application. I need to run multiple instances of same application and want easy visibility of multiple consoles.
can it be done? If yes, how?
...
3
votes
2answers
367 views
Executing cv::warpPerspective for a fake deskewing on a set of cv::Point
I'm trying to do a perspective transformation of a set of points in order to achieve a deskewing effect:
I'm using the image below for tests, and the green rectangle display the area of interest.
...
3
votes
2answers
130 views
how to transform 4 points to an xna matrix
I want to develop my own AR-Library in C#. My problem is: I have the 4 corner points of my marker and want to show 3D cubes on the marker (its a multi-marker lib), but i dont know how to get the ...
3
votes
2answers
126 views
How should support for alternate credential types in twisted.pb be implemented?
My project has been trying to implement a credential checker using scrypt. We've tried implementing our own credentials and checker objects, but we've had a lot of trouble getting pb to use them.
Pb ...
3
votes
1answer
351 views
Calculating diminishing size in perspective
I'm trying to figure out a formula on how to calculate the size of a distant object at a viewing pane closer to me. I'm sure I had this in high school, but I couldn't find any resources on what the ...
3
votes
1answer
1k views
Projecting a 3D point to 2D screen space using a perspective camera matrix
I am attempting to project a series of 3D points onto the screen using a perspective camera matrix. I do not have world space (or consider it being an identity matrix) and my camera does not have ...
2
votes
1answer
95 views
Weird Perspective With CATransform3DMakeRotation
I'm having an odd problem with CATransform3DMakeRotation. When the rotated view is in the center of the superview, it looks like this:
This is how it's supposed to look. However, when it's ...
2
votes
0answers
47 views
Check square in perspective projection
I'm writing an application which detect squares. I wrote algorithm of quad detection and now I must select squares of this quads list. How can I do this in perspective projection? Can I transform this ...
2
votes
1answer
164 views
Viewport boundaries on any resolution with OpenGL ES
I'm having difficulties understanding about the OpenGL perspective view. I've read tons of information however it didn't help me trying to achieve what I'm after. Which is making sure my 3d scene is ...
2
votes
0answers
98 views
Perspective on 3D objects
I am updating one of our older apps from vb6 to c# and in the process have to recreate a custom control that the original programmer designed. The control simply took the dimensions of an object, ...
2
votes
2answers
155 views
Orthographic to perspective adjustment calculation
I was wondering how I might adjust a perspective projection to make it look like it was orthographic. For example, say I had a 10x10 grid of points, each with different z values, which under an ...
2
votes
1answer
232 views
Dynamically create Eclipse Perspective with views
I can create an Eclipse perspective and add viewparts to it using plugin.xml and the declarative definitions.
However, I need to programatically create a perspective, set its name/title and add two ...
2
votes
2answers
148 views
How to convert from one co-ordinate system to another (graphics)
I've been having issues with this for a little while now. I feel like I should know this but I can't for the life of me remember.
How can I map the screen pixels to their respective 'graphical' x,y ...
2
votes
1answer
118 views
How can I create a corner pin effect in XNA 4.0?
I am trying to write a strategy game using XNA 4.0, with a dynamically generating map, and it's really difficult to create all the ground textures, having to distort them individually in photoshop.
...
2
votes
2answers
421 views
Perspective Image Transformation with tiling
On the hunt of a good image processing library which can be used for a new application I plan to create. I will be using C#.NET (VS 2008)
My application needs to do the following:
Load an image at ...
2
votes
2answers
97 views
How do I offset an openGL object while still keeping the projection like I'm looking straight at it?
My brain has melted as I've spent forever on this problem.
I need to offset a cube from the origin by two in both the x and y direction however keep the one point perspective like I'm looking ...
2
votes
2answers
3k views
Can you do an isometric perspective with HTML5 <canvas>?
It is possible to do an isometric perspective with HTML5 <canvas>? It is with setTransform? Or does it exist another way?
Example:
ctxt.setTransform (1, -0.2, 0, 1, 0, 0);
Something like the ...
2
votes
1answer
159 views
OpenGL: perspective view centered not in the middle of the view?
I have a main scene centered on the center of the viewport
in addition to that I want another small object to be displayed on the corner of the viewport.
The trouble is that when I draw the small ...
2
votes
1answer
282 views
Applying the same perspective and rotation to all CALayer elements (unlike Coverflow)
I'm trying to simulate the look of CDs in a shelf. Each CD should be visible from an angle very much like books when you look at a book shelf. I use core animation transformations. The problem is that ...
2
votes
2answers
358 views
Calculating object position from image processing
I am looking for an efficient way to calculate the position of an oject on a surface based on an image taken from a certain perspective.
Let me explain a little further.
There is an object on a ...
2
votes
2answers
172 views
Practical method of putting circular shapes into perspective?
Not entirely sure if this should belong on Stack Overflow, but here goes.
I'm creating a simple version of tic-tac-toe in 3D using the HTML5 <canvas> object. The first player uses the cross ...
2
votes
1answer
304 views
Finding OpenGL image plane coordinates
I am trying to implement a raytracer that uses an arbitrary camera position and perspective projection. I have the camera position, the look at position, the angle of field of view, but I cannot ...
2
votes
2answers
237 views
OpenGl box fullscreen
I'd like to draw the inside of a box fullscreen (i.e. it should completely fill the viewport) using OpenGL. The box should have perspective.
I presume I'll have to change the dimensions of the box ...
2
votes
1answer
261 views
Export single Eclipse Perspective and Settings
I customized my Eclipse for a special Latex Perspective and saved this perspective as "MyLatex". I even added shortcuts in my texlipse preferences, so that I can type "tab"+strg+space to insert a ...
2
votes
0answers
270 views
Perspective skew
I am planing to create a 3D anaglyph image for a give 2D image.
For this I will consider given 2D image as left eye view and now I have to create right eye view.
I came to know that the perspective ...
2
votes
2answers
1k views
Calculating 2D angles for 3D objects in perspective
Imagine a photo, with the face of a building marked out.
Its given that the face of the building is a rectangle, with 90 degree corners. However, because its a photo, perspective will be involved ...
2
votes
1answer
435 views
Simulating 3D 'cards' with just orthographic rendering
I am rendering textured quads from an orthographic perspective and would like to simulate 'depth' by modifying UVs and the vertex positions of the quads four points (top left, top right, bottom left, ...
2
votes
2answers
736 views
How to determine 3D position of an object from perspective?
I have a situation as shown in image, where I need to determine x,y of red and blue square in rectangular space but under perspective. Length and width of the rectangle are know.
The rectangles are ...
1
vote
2answers
43 views
Eclipse: Force project to be Java?
Is it possible to force an already existing project to be a "java" project? For example, I have imported an existing maven project that does not have any associated eclipse files, but the project is ...
1
vote
1answer
21 views
Assigning a perspective for each project on Eclipse
I'm using SVN (Subversive) for some projects and git (EGit) for others, so I've configured two different perspectives for each type of project. I'd like to know if there's a way to associate a ...
1
vote
2answers
40 views
Setting up an OpenGL ES renderer for 2D?
I'm trying to set up the renderer so that regardless of device, the view is a simple 2D field with the top of the screen at 1.0f and the bottom at -1.0f. I can't seem to get it quite right, I've been ...
1
vote
1answer
191 views
Implementation of gluLookAt and gluPerspective
I've written a small 2D engine in opengl in the process of making a game. I'm using OpenGL ES 2 and the code compiles and runs on iOS and Mac OSX.
Now I'm extending it to support 3D and I'm having a ...
1
vote
1answer
164 views
I can't see Aptana Perspective in Eclipse
I can't see Aptana perspective after install Aptana Studio 3 plug-in version in Eclipse 13.7 (Indigo). The plug-in is installed but i can't choose aptana perspective in Eclipse... When I'm installig ...
1
vote
1answer
386 views
OpenGL ES 2.0: Why does this perspective projection matrix not give the right result?
About 2 days ago I decided to write code to explicitly calculate the Model-View-Projection ("MVP") matrix to understand how it worked. Since then I've had nothing but trouble, seemingly because of the ...
1
vote
3answers
126 views
How to use gluPerspective only once?
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
//set viewpoint
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(VIEW_ANGLE,Screen_Ratio,NEAR_CLIP,FAR_CLIP);
gluLookAt(0,5,5, 0,0,0, ...
1
vote
0answers
48 views
different editors for different perspectives in Eclipse [closed]
Possible Duplicate:
Eclipse plugin - Editor associated to file extension and perspective
I have two perspective that manages the same files. I would like to make an association between file ...
1
vote
1answer
119 views
Perspective and Flipping an UIImageView At The Same Time
I am trying to flip and give perspective rotate an uiimageview, in order to obtain an effect like reflection. first i give perspective using CATransform3D and then flip using CGAffineTransformMake. ...
1
vote
1answer
257 views
square to trapezoid
I know that transforming a square into a trapezoid is a linear transformation, and can be done using the projective matrix, but I'm having a little trouble figuring out how to construct the matrix.
...
1
vote
1answer
77 views
Ray trigonometry in Opengl
I am quite new to this, and iv'e heard that i need to get my inversed projection matrix and so on to create a ray from a 2D point to a 3D world point, however since im using OpenglES and there are not ...
1
vote
0answers
175 views
Is this a correct perspective FOV matrix?
I have a perspective FOV, but when rotating, it doesn't "look" correct - Farther objects traverse faster than closer objects, passing them in the middle of the screen.
So: Is this correct? Using ...
1
vote
1answer
439 views
Calculating lat/long on sphere from X,Y coordinates?
I want to get the latitude and longitude on a 3D sphere, depending on Mouse X,Y.
Iv'e understood that i have to use trigonometry. The problem is that the sphere is put into a perspective, at least ...
1
vote
1answer
295 views
JavaEE perspective in Flash Builder 4.5
As you all know Adobe has introduced Adobe Flash builder 4.5 with Java Perspective.Is there a way to add JEE perspective so that it will be easy to develop data centric applications.I know we can have ...
1
vote
1answer
151 views
3D Projection Issue: Z Value doesn't lie in [1,-1] after Perspective Divide
I'm trying to do a simple perspective projection in the process of rasterizing a 3D point. Here are all the matrices and other info. All Matrices are row major. The coordinate system is Right Handed.
...
1
vote
1answer
226 views
Depth interpolation for surface removal with perspective projection
This seems like a question for which an answer should readily available on the web or books but my quest for an answer has led me so far only to blind alleys that turned out to be dead ends.
I'm ...