A perspective defines the initial set and layout of views in the Workbench window.

learn more… | top users | synonyms

0
votes
1answer
19 views

Eclipse 4.2(juno) did not call saveState method of ViewPart when workspace is closing

I have a eclipse-plugin that have two perspectives. There is a view which extends ViewPart in one of the two perspectives. In this view, I overrided saveState method of ViewPart to save my data. ...
0
votes
0answers
37 views
+100

Transform GPS-Points to Screen-Points with Perspective Projection in Android

Currently I'm writing an augmented reality app and I have some problems to get the objects on my screen. It's very frustrating for me that I'm not able to transform gps-points to the correspending ...
1
vote
1answer
49 views

gluPerspective parameters- what do they mean?

I wonder about the gluPerspective parameters. In all examples I see fovy is set to around 45-60degrees I've tried to set it to different values and the object just disappears what's the explanation ...
0
votes
0answers
47 views

Perspective image-upload C# method

I'm currently working on an Upload function in my ASP.NET Web Application which I need to perspective the picture before I save it. Ex. http://i.stack.imgur.com/YAM2s.png I know I can do it with ...
-1
votes
0answers
26 views

How to get a 2D map from picture (perspective transformation)

I have a camera looking a room from a height "h" and with an angle (angle between camera orientation and the ground) "angle". According to h and angle I have to tranform a camera view into a "2D ...
0
votes
1answer
34 views

Eclipse plugin: How to extend perspective with View, that is implemented by external plugin

There is an Eclipse plugin, that defines Node perspective in plugin.xml file. I'd like to add default View to this perspective, that is implemented by Markdown Editor. Namely Markdown HTML preview. ...
1
vote
2answers
85 views

Bird's Eye Projection Error in OpenCV

I'm using OpenCV to try to get a bird's eye projection of this image: I first find all the inner corners of the chessboard and draw them, as shown here I then use warpPerspective() on it but it ...
-1
votes
0answers
24 views

how to close Blender perspectives [closed]

I accidentally created lots of Blender perspectives. How do I close them again? Pulling the arrows right doesn't show those arrow windows I saw in video tutorials. Split and Join Area doesn't do ...
1
vote
1answer
38 views

Open Perspective in background from Eclipse Plugin

I hava a piece of Code, that can only be executed, when a given perspective is already loaded/open. I can use ...
1
vote
0answers
172 views

How to build lookup table for inverse perspective mapping? OpenCV

I want to build a lookup table to use with inverse perspective mapping. Instead of applying warpPerspective() with the transform matrix on each frame, I want to use a lookup table (LUT). Right now I ...
0
votes
1answer
31 views

can i compute the exact visual dimensions of a perpective frustum in Open GL ES 2.0

I'd like to randomly create objects at different translations from the origin, but i want to guarantee that they're always visible, meaning i don't want to just discard objects they aren't visible. ...
0
votes
0answers
14 views

Finding Distances in Perspective

Imagine that we have an image like below in the link : http://www.dublincity.ie/dublintraffic/Site16Camera31.jpg I want to put some marks on the image which are placed 1 meter away from each other ...
0
votes
0answers
29 views

Notepad++ with perspectives like eclipse [closed]

I work a lot with Notepad + + and want to know if there is a plugin which allows you to store different perspectives. This should be similar to eclipse.
3
votes
2answers
246 views

CSS perspective not working in Internet Explorer 10 or Firefox

I've got a jQuery image scroller that simulates depth using the perpective and transform: translateZ CSS properties. It renders correctly in Chrome, but not in IE10 or Firefox. Here is the full ...
0
votes
1answer
107 views

-ms-perspective not working in internet explorer 10

I'm trying to position divs with depth using the 'perspective:' and 'transform: translateZ' css properties. I have it working in Chrome, but not in IE10 or Firefox20. You can see the test here, on the ...
0
votes
0answers
67 views

Drawing an Isometric image split into layers

I've seen quite a bit of questions regarding how to draw isometric tiles, and most all point at being drawn back to front, top down. However I'm trying to find a way to prevent clipping with a single ...
1
vote
1answer
67 views

Why does my perspective trasform come out affine?

I am trying to transform a unit square to an arbitrary quad. Here is the code that gives me the perspective transformation matrix: bool Math::GetProjectiveMapping(const FPoint& p0, const ...
2
votes
1answer
44 views

How can I change custom perspective's icon in eclipse?

I want to change my custom perspective's icon in eclipse. I have searched a lot but I didn't find any solution.
0
votes
1answer
68 views

How to manage the perspective transformation?

How to convert (x,y,z) coordinates from inside the perspective pyramid, to (x',y',z') coordinates inside the perspective cube? (in a right hand coordinate system) I tried to multiply this perspective ...
1
vote
1answer
22 views

Naming exceptions in code

I am writing a compiler. And as you know there can be tons of different errors one may need to handle. For e.g. if you are inserting a value in the symbol table that already exists, you would throw an ...
1
vote
1answer
89 views

Ways to “invert Z-axis” in shader-based core-profile OpenGL?

In my hobbyist shader-based (non-FFP) GL (3.2+ core) "engine", everything in world-space and model-space is by design "left-handed" (and to stay that way), so X-axis goes from -1 ("left") to 1 ...
0
votes
0answers
55 views

CATransform3D on a layer, and UIView interaction

I have a UIView, and am applying a CATransform3D to it's layer to achieve a coverflow-like perspective view (using the .m34 thing, and a rotation). Visually, this works as expected. I also want to ...
0
votes
1answer
96 views

XNA - How to draw lines in world space?

I'm working on an A* algorithm, and I'd like to be able to draw lines between the nodes in the path-finding graph, especially those leading to the exit. The environment I'm working in is 3D. I just ...
1
vote
1answer
65 views

adding distort with vanishing point projection to CAlayer

I would like to transform a UIView in way that adds a perspective (with two vanishing points) to it (see below). The reason why I want to do this with a view is because I want the contents of the ...
1
vote
1answer
276 views

Transform Rectangle to trapezoid for perspective

I have picture from front-view. and I want to turn this into bird's eye view. Now I want to calculate for each point in the rectangle (x,y) what will be transformed x,y in the trapezoid. there must ...
0
votes
1answer
207 views

In OpenGL, what effect does creating a perspective projection matrix have on the coordinates of an object?

I've recently begun learning OpenGL and as far as the communication with the GL and shaders go, I've gained a good competence, but I'm a little unclear regarding the coordinate system. I'm using ...
1
vote
1answer
100 views

Multiple editor areas in custom Eclipse perspective

For a custom Eclipse plugin, I've been looking into creating a perspective that will help organize views in a way that makes work easier for the editors, with the main requirement that we would like ...
0
votes
0answers
39 views

Getting parameters for perspective function on opengl

I`m trying to use a GetPerspevtive function to check if the Perspective function returns the expected answer. My Perspective is that: Mat4<Real> Perspective(Real fovy, Real aspect, Real zNear, ...
0
votes
1answer
243 views

C++ OpenGL: Calling gluPerspective throws an undefined reference error?

I am using FreeGLUT to try and create my first cube in C++ with OpenGL. I have an issue that whenever I call "gluPerspective", the compiler throws this error: build/Debug/MinGW-Windows/main.o: In ...
1
vote
0answers
229 views

Can't view source in eclipse debug perspective

I was moving around the arrangement of windows in the debug perspective. Afterwards, no matter which .java files I had open in the Java perspective, only the source file with the main method would be ...
0
votes
1answer
140 views

How to do perspective projection “parallax” but without changing the scale or offset of objects?

The problem: I am making a 2D game with parallax effect but I am using 3d space so am not simulating the parallax but letting the perspective projection take care of it for me. now the problem i have ...
1
vote
1answer
138 views

Perspective Issue with 3D coordinate system in OpenGL

I'm currently facing some perspective issues when trying to render the axes of a coordinate system into my scene. For these axes I draw three orthogonal lines that go through the center of my 3D cube. ...
0
votes
1answer
169 views

3D points projected to form an image

I want your intellectual suggestions for a problem i have. I have 3D points data along with intensity field (x,y,z,I) which represent the 3D scene. I want this 3D data converted into an image (2D ...
2
votes
2answers
315 views

Converting OpenCV's findHomography perspective matrix to iOS' CATransform3D

I'd like to take the perspective transform matrix returned from OpenCV's findHomography function and convert it (either in C++ or Objective-C) to iOS' CATransform3D. I'd like them to be as close as ...
1
vote
1answer
281 views

How to make PerspectiveTransform work?

I just want to reproduce the result as posted here. I rewrite the source to EmguCV form. Image<Bgr, byte> image = new Image<Bgr, byte>(@"B:\perspective.png"); ...
0
votes
1answer
362 views

Change perpective angle/origin 3d-css on mouse move

I'm trying to get the perspective view-angle with the following, of a cube: http://jsfiddle.net/TrySpace/JvFSQ/5/ But I doesn't do what I expected, I want the actual view-angle to be changed. So ...
2
votes
2answers
651 views

OpenCV image transformation and perspective change

I'm trying to achieve the following effect, shown here using the perspective tool in GIMP. original image (620x466 pixels) transforming the image What I have is a fixed webcam and would like to ...
3
votes
1answer
366 views

How does perspective transformation work in PIL?

PIL's transform-function has a perspective-mode which requires an 8-tupel of data but I can't figure out how to convert let's say a right tilt of 30 degrees to that tupel. Can anyone explain it? ...
2
votes
1answer
177 views

Core Animation: moving a layer along a plane

I am working on a card game where cards are shown lying on a table with perspective. The table and cards both have the same x rotation (45°). As the cards get farther away from the player (move "up" ...
1
vote
0answers
61 views

Img change while mouse move inside div containing it

I have prerender image sequance 3d scene, so i want to create something like in Flash, i want my picture changes then mouse move, if i moving left, image number goes up, if i moving right image number ...
1
vote
0answers
357 views

How Can I Perform a Perspective Transform Using a Homography Matrix (3x3) in JavaCV?

I have been trying for some time now to take an image of a pool table from an arbitrary angle, locate four coordinate pairs (x,y) of the corners, and rotate/warp the image such that the resulting ...
1
vote
0answers
75 views

Rendering a textured square OK. Moving my object makes it warp and appear as if it was rotated

Is there any obvious mistakes in this? My square renders ok, but when I try to move 9it left/right/up/down/ its edges get streched out into infinity, as if some super high FOV was used.. Which is ...
2
votes
2answers
133 views

Perspective projection and rotation in python

I've tried searching but none of the other questions seem to be like mine. I'm more or less experimenting with perspective projection and rotation in python, and have run into a snag. I'm sure my ...
1
vote
1answer
117 views

Matrix of several perspective transformations

I am writing some image processing program using OpenCV. I need to transform the image using several perspective transformations. Perspective transformation is defined by the matrix. I know, that we ...
0
votes
0answers
232 views

birds eye opencv

camera: iphone 4S back camera platform: win7 32bit compiler: VS10 lib: opencv 2.2 I have: an undistorted image of type iplImage* with 9x6 chessboard. intrinsics matrix distortion matrix How to ...
1
vote
1answer
70 views

Ogre: simulating perspective view scaling object

For my project Ogre in c++, I want to create an animation of an object using SimpleSpline of Ogre.   Everything works perfectly, the object is animated along the sequence of points in the path ...
0
votes
1answer
121 views

Camera distance for 3D object

Assuming I have a 3D object. I have no detailed information about the form of the object, the only information I have is the ranges of the 3 axis coordinates (the min/max x-coordinate etc.). Given a ...
0
votes
2answers
190 views

android, Project does not appear in the File Explorer

I would like to know if anyone of you knows the reason for project folder with Preferences, Database and libs, do not appear in the DDMS perspective when project is run on a real device.
1
vote
1answer
46 views

Eclipse with 2 monitors loss perspectives

I use Windows 8 x64 and last eclipse: eclipse-java-juno-SR1. At second monitor I move console and some android tools (logcat, devices). All worked ok. But I do not need see second monitor all time. ...
0
votes
0answers
114 views

CIPerspectiveTransform's behaviour

I'm currently working on CIPerspectiveTransform, and I can't seem to find it's exact behaviour. At least I've got an idea but I'm not pretty sure of it. I'll expose what I found out here. As we can ...

1 2 3 4 5 6