A perspective defines the initial set and layout of views in the Workbench window.
0
votes
1answer
352 views
Where is perspectiveM method in android.opengl.Matrix?
How can i call perspectiveM static method in Matrix class?
As said here:
http://developer.android.com/reference/android/opengl/Matrix.html
Сode completion suggests me frustumM, invertM, length, ...
0
votes
2answers
1k views
Image transformation matrix in opencv
I'm currently working on this [opencv sample]
The interesting part is at line 89 warpPerspectiveRand method. I want to set the rotation angle, translation, scaling and other transformation values ...
1
vote
1answer
261 views
Add perspective to image in web
I have a squared formed image. I need to add perspective view to it and then make an animation that will restore image back to square view. This actions must work at least in all newest versions of ...
1
vote
1answer
2k 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 ...
0
votes
2answers
262 views
AS3 Perspective View
I'm doing a football game which is now seen from above, I would like to know the easiest way to transform it into a perspective view.
0
votes
1answer
119 views
Curve turning into right angle
I'm drawing a 3D solar system and have successfully plotted lines for the orbits. However when I am positioned close to the planet the nearest points of the orbit form a right angle making the orbit ...
1
vote
1answer
514 views
How vanishing points can help in restoring proper camera perspective?
I'm trying to insert 3D object into a photo, that was not taken by me. Meta info is erased, so I can only guess camera parameters and dimensions of the objects in the scene. How can I set proper ...
16
votes
3answers
6k 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.
...
0
votes
1answer
187 views
mobile webkit perspective issue
A 3d rotating div cuts through another div with a higher z-index, no matter z-index Δ or perspective difference.
This works fine in safari, safari mobile on iOS 4 but on iOS 5 i can see the issue
...
4
votes
1answer
1k 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 ...
2
votes
1answer
3k 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 ...
0
votes
1answer
225 views
Determine the visual size of an object at a given distance from origin (using perspective)
Let's say we have a square, 50 pixels wide. And the -webkit-perspective is 1000px*.
What is the formula to determine how big the square will appear to be at a given distance from the viewer (the ...
3
votes
2answers
346 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 ...
4
votes
1answer
728 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 ...
1
vote
2answers
2k views
Basics of 3d to draw Rubik's Cube
I'd like to draw a Rubik's Cube on html canvas element with some perspective, but I've never had any experience with 3d graphics, perspective etc. so I'm looking for all helpful resources to achieve ...
0
votes
1answer
103 views
How to minimize an IFolder in the ICustomPerspectiveLayout
I have created a new folder in my perspective by calling
IFolderLayout folderStat = IPageLayout.createFolder(...);
I added multiple views in these folder by calling
...
0
votes
2answers
229 views
Rename a Perspective in Eclipse
Is there a way to Rename the Perspective in Eclipse? I want to open multiple instances of eclipse for the same project & this will help me since i can know exactly which one I am using by looking ...
0
votes
2answers
1k views
How do you do a 3D transform (perspective) in C# or VB.Net?
What I am looking to do sounds really simple, but no where on the Internet so far have I found a way to do this in DotNet nor found a 3rd party component that does this either (without spending ...
3
votes
1answer
218 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, ...
0
votes
1answer
83 views
Pb with ImageMagick command
I'm trying to apply this code in my ".bat" file and my ASP.net projet:
convert checks.png -matte -virtual-pixel transparent -distort Perspective '0,0,0,0 0,90,0,90 90,0,90,25 90,90,90,65' ...
1
vote
3answers
516 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, ...
0
votes
1answer
323 views
OpenGL perspective and lighting not working?
EDIT: A few people have said to use glNormal3f() to solve my lighting problem, but I researched and implemented that just now and it didn't change anything at all.
I'm kind of new to OpenGL so I ...
1
vote
0answers
60 views
different editors for different perspectives in Eclipse [duplicate]
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 ...
2
votes
2answers
951 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 ...
0
votes
1answer
505 views
Cocoa: is a “perspective transform” available?
is a "perspective transform" available in Cocoa (iOS, OS X) like that I see in Silverlight,JavaFX and so on? Other related thread was not enough clarifying to me so I created this one.
like this: ...
0
votes
1answer
412 views
Cocos2d: Perspective effect with mutli-layers
I want to use in my game effect of perspective view by using few layers, scrolling with different speed. I have three layers. My background is bottom layer, it scrolls very slowly, so it can be in a ...
1
vote
1answer
344 views
Perspective projection of an object on a plane in 3D
Imagine there is plane in between a virtual person and an object. The object is a box with a certain xyz scaling and rotation. The plane is like a glass window. The person is looking at the object ...
1
vote
1answer
464 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. ...
2
votes
1answer
767 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
500 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
238 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.
...
0
votes
1answer
201 views
Image jaggerred edges while applying perspective, C#
Facing some issues with image warping. My application (C#, VS2010) takes as input an image and tiles it and applies perspective using a homography matrix. All that works fine and I get a tiled output ...
4
votes
2answers
1k 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
137 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
1answer
861 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 ...
0
votes
1answer
116 views
Marker Support Extension Point enabled only for a concrete Perspective
We have developed our own perspective, and we want to limit all shown markers so they fit our own Project Explorer content provider, which contains a subset of all project files and folders.
We have ...
1
vote
1answer
582 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 ...
3
votes
4answers
997 views
STS - Grails perspective broken. Can not see services
I am using STS for grails development and i don't know what I did, (most probably dragged a folder somewhere by mistake) but now I can't see my services in the perspective. They do exists under ...
1
vote
1answer
717 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 Java EE perspective so that it will be easy to develop data centric applications.I know we can ...
0
votes
2answers
413 views
How to remove popup menus in a perspective
I am working with Eclipse. I am developing a new perspective. I need to remove some Eclipse platform contributions (defined via org.eclipse.ui.popupMenus) in this perspective. Some of these popup menu ...
1
vote
1answer
751 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
474 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 ...
4
votes
1answer
557 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 ...
1
vote
5answers
1k views
Mapping a 3D rectangle to a 2D screen
I've searched SO but I just can't figure this out. The other questions didn't help or I didn't understand them.
The problem is, I have a bunch of points in a 3D image. The points are for a rectangle, ...
2
votes
2answers
2k 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 ...
0
votes
1answer
579 views
imagick::distortimage
I'm going to set image perspective. I have image of laptop with blank polygon
Another image needs to be pulled on a blank area. Like this:
So, I have this code for dynamical distortion:
...
1
vote
3answers
2k views
C# Perspective Image Distortion
The application I am working on currently requires functionality for Perspective Image Distortion. Basically what I want to do is to allow users to load an image into the application and adjust its ...
2
votes
2answers
178 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 ...
1
vote
1answer
2k views
Perspective 3D Projection in Java
I'm working on creating a simple 3D rendering engine in Java. I've messed about and found a few different ways of doing perspective projection, but the only one I got partly working had weird ...
0
votes
1answer
245 views
Twisted PerspectiveBroker/ServerFactory Questions
I'm trying to play with twisted. I've already try to create a server and a client using the appropriate Factory. It's a fantastic framework but only strings can be sent :(
I'd like to send some list ...