The projection tag has no wiki summary.
24
votes
5answers
11k views
correcting fisheye distortion programmatically
BOUNTY STATUS UPDATE:
I discovered how to map a linear lens, from destination coordinates to source coordinates.
I actually struggle to reverse it, and to map source coordinates to destination ...
18
votes
7answers
18k views
Calculating a LookAt matrix
I'm in the midst of writing a 3d engine and I've come across the LookAt algorithm described in the DirectX documentation:
zaxis = normal(At - Eye)
xaxis = normal(cross(Up, zaxis))
yaxis = ...
13
votes
5answers
16k views
How to call fromLatLngToDivPixel in Google Maps API V3?
I know that method exists and is documented, but I don't know how to get an MapCanvasProjection object.
13
votes
8answers
61k views
Hibernate Query By Example and Projections
To make it short: hibernate doesn't support projections and query by example? I found this post:
The code is this:
User usr = new User();
usr.setCity = 'TEST';
...
12
votes
8answers
5k views
Basic render 3D perspective projection onto 2D screen with camera (without opengl)
Let's say I have a data structure like the following:
Camera {
double x, y, z
/** ideally the camera angle is positioned to aim at the 0,0,0 point */
double angleX, angleY, angleZ;
}
...
12
votes
4answers
3k views
2d outline algorithm for projected 3d mesh
Given: A 3d mesh defined with a set of vertices and triangles building up the mesh with these points.
Problem: Find the 2d outline of the projected arbitrarily rotated mesh on an arbitrary plane.
...
12
votes
2answers
713 views
How can some LatLng be used to place markers on a Google map, but not to draw a Polygon?
Roughly a week ago, I ran into a problem: on a custom google-powered map, my Polygons would not show up, while Markers for the same coordinates are totally ok. Despite my efforts with the Google Maps ...
11
votes
4answers
12k views
3d to 2d Projection Matrix
I have 3 points in 3d space. I know the exact locations of them. Suppose they are (x0,y0,z0) (x1,y1,z1) (x2,y2,z2)
Also i have a camera that are looking at these 3 points and i know the 2d locations ...
9
votes
2answers
3k views
What is a Projection in NHibernate?
I have a project where I'm using NHibernate to handle bindings to the database. So far I have mostly been using the basics when it comes to queries. Now I'm struggling with a more difficult query, and ...
8
votes
3answers
8k views
true isometric projection with opengl
I am a newbie in OpenGL programming with C++ and not very good at mathematics. Is there a simple way to have isometric projection?
I mean the true isometric projection, not the general orthogonal ...
8
votes
4answers
6k views
How to apply a transformation matrix?
I am trying to get the 2D screen coordinates of a point in 3D space, i.e. I know the location of the camera its pan, tilt and roll and I have the 3D x,y,z coordinates of a point I wish to project.
I ...
8
votes
1answer
584 views
Orchard Query List Rendering - Remove ul li
I am using the latest version of Orchard and have created a projection widget of three articles. I would like to display them in source terms directly after eachother:
...
7
votes
1answer
4k views
nhibernate queryOver projection syntax
I am trying some code out from a NH 3.0 Cookbook, and wondering why I can't get the code below to compile. I think the QueryProjectionBuilder that should make this work is in ...
7
votes
5answers
101 views
How to modify only one or two field(s) in LINQ projections?
I have this LINQ query:
List<Customers> customers = customerManager.GetCustomers();
return customers.Select(i => new Customer {
FullName = i.FullName,
Birthday = i.Birthday,
...
7
votes
6answers
2k views
Adding a projection to an NHibernate criteria stops it from performing default entity selection
I'm writing an NHibernate criteria that selects data supporting paging. I'm using the COUNT(*) OVER() expression from SQL Server 2005(+) to get hold of the total number of available rows, as suggested ...
6
votes
5answers
2k views
C#: Altering values for every item in an array
I'm wondering if there is built-in .NET functionality to change each value in an array based on the result of a provided delegate. For example, if I had an array {1,2,3} and a delegate that returns ...
6
votes
3answers
667 views
Given an array of records, how can I get an array representing a field from each one?
I have to translate some Fortran 90 code and found an interesting language feature.
As an example, they define the following type and dynamic-array variable:
TYPE WallInfo
CHARACTER(len=40) :: ...
6
votes
1answer
6k views
OpenLayers Google Maps Projection Problem w/ KML
This is my first time on stackoverflow and working with Openlayers & Google Maps.
I've been browsing different forums & sites, including OpenLayers.org, to solve my issue. I've done searches ...
6
votes
3answers
430 views
Full object projection with additional values in LINQ
Is it possible to project every property of an object and add more, without specifically listing them all. For instance, instead of doing this:
var projection = from e in context.entities
...
6
votes
2answers
561 views
Projection Problem in Kalman Filter for Navigation
I am currently working on a simple and small Kalman-Filter for GPS-Navigation. I am getting from my GPS-Sensor the current location, course angle and speed. So the Kalman-Filter should fuse the ...
6
votes
2answers
6k views
How to use NHibernate Projections to retrieve a collection
I am lazy loading the collections, and also because there are so many fields within the person table, I am writing a projection function to retrieve only certain properties. It works with properties, ...
6
votes
1answer
328 views
Does type projection have an opposite, or is it still projection (or just mapping)?
This is based on my assumption that taking an object of type:
public class Fruit : IBasicFruit, IFruitDetails
{
// IBasicFruit implementation
public string name { get; set; }
public ...
5
votes
2answers
821 views
opengl oblique projection
I want to create a oblique (cavalier) projection in OpenGL. I know this operation is not default supported and instead I need a Shear Matrix and then make an Orthogonal Projection.
Can you tell me ...
5
votes
5answers
5k views
Mercator longitude and latitude calculations to x and y on a cropped map (of the UK)
I have this image: http://imgur.com/99tSz.png. A map of the UK (not including Southern Ireland).
I have successfully managed to get a latitude and longitude and plot it onto this map by taking the ...
5
votes
2answers
3k views
Grails Criteria projections on joined table
I have an issue with grails criteria builder, I want to do a projection on a column that is on a table that is in one-to-many relation to parent table example:
Car.createCriteria() {
projections ...
5
votes
4answers
4k views
Perspective Projection - Help a Noob
I wish to determine the 2D screen coordinates (x,y) of points in 3D space (x,y,z).
The points I wish to project are real-world points represented by GPS coordinates and elevation above sea level.
...
5
votes
3answers
2k views
Fisheye projection matrix in Xna/OpenGL - 3D
I'm looking for a projection matrix I can use in 3D that will give me the effect of a fisheye. I'm not looking for a pixelshader or anything like that, that will manipulate pixels - but the actual ...
5
votes
3answers
206 views
Subsonic 3 LINQ Projection issue, fixed or no?
I'm currently experiencing the issue mentioned here (and several other places): http://stackoverflow.com/questions/1105052/subsonic-3-linq-projection-issue
This is occurring using the 3.0.0.4 release ...
5
votes
3answers
981 views
Mapping from 2D projection back to 3D point cloud
I have a 3D model consisting of point vertices (XYZ) and eventually triangular faces.
Using OpenGL or camera-view-matrix-projection I can project the 3D model to a 2D plane, i.e. a view window or an ...
5
votes
3answers
1k views
Why does sign matter in opengl projection matrix
I'm working on a computer vision problem which requires rendering a 3d model using a calibrated camera. I'm writing a function that breaks the calibrated camera matrix into a modelview matrix and a ...
5
votes
5answers
2k views
Inverse 3D (triangle) projection
I have a 3D math problem which I just can't seem to solve.
I have data of 3 points. The data is a (2D) coordinate on a plane, floating somewhere in 3D space. I also know the (2D) coordinate of the ...
5
votes
3answers
281 views
project a sphere to a plane using matlab
This is probably very basic matlab, so forgive me.
I use the command sphere to create a 3D sphere and have the x,y,z matrices that will produce it using surf. For example:
[x,y,z]=sphere(64);
I'd ...
4
votes
1answer
6k views
Projections in NHibernate
suppose in an entity there are attributes id, username, age, address. Now I just want id and username and I use this code for it.
Projections enable the returning of something other than a list of ...
4
votes
1answer
2k views
Howto project a planar polygon on a plane in 3d-space
I want to project my Polygon along a vector to a plane in 3d Space. I would preferably use a single transformation matrix to do this, but I don't know how to build a matrix of this kind.
Given
the ...
4
votes
3answers
722 views
“sphere in a bag” plane to sphere projection
I'm looking for the mathematical transformation to transform points on a 2D plane [0,1]x[0,1] onto the unitsphere.
The most common projection would latitude-longitude mapping by interpreting u and v ...
4
votes
3answers
2k views
How do I methodically choose the near clip plane distance for a perspective projection?
I have a 3D scene and a camera defined using gluPerspective. I have a fixed FOV, and I know the minimum distance of any geometry to the camera (it is a first-person view, so that is the minimum ...
4
votes
1answer
2k views
3D effects in a 2D game using OpenGL
I am working on a 2D game using OpenGL ES. I am using the orthographic projection, since it makes the 2D stuff easy. Now I would like to create a simple 3D effect, say rotate a sprite around the Y ...
4
votes
1answer
167 views
Are path-dependent types type projections?
I'm reading Scala in depth now. Here is an excerpt from the book:
All path-dependent types are type projections. A path-dependent type foo.Bar is rewritten
as foo.type#Bar by the compiler...
...
4
votes
1answer
952 views
3D points projection to 2D XY plane
I have a 3 Dimentional point set (x,y,z).I need to project these points into 2 dimentional XY plane using orthogonal projection. so my question is, how to convert these points into 2D? is it correct ...
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.
...
4
votes
1answer
2k views
Hibernate criteria with projection not performing query for @OneToMany mapping
I have a domain object, Expense, that has a field called initialFields.
It's annotated as so:
@OneToMany(fetch = FetchType.EAGER, cascade = { CascadeType.ALL }, orphanRemoval = true)
@JoinTable(blah ...
4
votes
1answer
531 views
How can I use a Mapnik-Backgroundlayer with lat-lon layers in one map with OpenLayers?
I have an application with a map-client using OpenLayers. I want to use Mapnik-data as background-layer, as provided with the class OpenLayers.Layer.OSM.Mapnik. For that I have to switch to the ...
4
votes
1answer
826 views
Image correction for projection on surface with OpenCV
What is the best way in OpenCV to apply correction on an image projected to a 3D surface like in my examples or shown in Projection on 3D surface?
My first tests with OpenCV checkerboard corner ...
4
votes
1answer
163 views
How can i pass a Lazy<T> into my projection?
My Vehicle type:
public class Vehicle : EntityObject
{
private Lazy<string> _nameFromDelegate = null;
private Lazy<IList<Component>> _components = null;
public ...
4
votes
1answer
3k 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 ...
4
votes
2answers
593 views
Z Value after Perspective Divide is always less than -1
So I'm writing my own custom 3D transformation pipeline in order to gain a better understanding of how it all works. I can get everything rendering to the screen properly and I'm now about to go back ...
4
votes
3answers
936 views
Lens correction projection
What is the simplest way to un-warp a photo made using fisheye or wide-angle lens? I'm looking a pixel projection formula that has few parameters. Camera and lens parameters will not be known, so user ...
4
votes
1answer
3k views
NHibernate projection help
Im having a problem creating a projection for my nhibernate detachedcriteria object.
I have a class Spa which is linked to table Address.
Address has a field called City which is a string.
public ...
3
votes
3answers
2k views
IQueryable Lambda Projection Syntax
I have an IQueryable whose Entity Framework 4 objects I would like to project to their DTO equivalents. One such object 'Person' is an EF4 class, and the corresponding POCO PersonP is a class I've ...
3
votes
2answers
730 views
c++ opengl: how can i combine 2 different projection types for 3d graphics and 2d menus?
I would like to use Oblique projection for menus and perspective projection for the 3d-scene. is there a way to combine between this two projections ?
In general I'm asking how can I create menus in ...

