Tagged Questions
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 ...
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 ...
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 ...
1
vote
0answers
157 views
Transform position of point form one perspective into another
I'm trying to convert the position of a point which was filmed with a freely moving camera (local space) into the position in a image of the same scene (global space). The position of the point is ...
1
vote
1answer
166 views
Why can't I hide a div by CSS “-webkit-transform: rotateY(90deg);”?
<!DOCTYPE html>
<meta charset="utf-8">
<title>An HTML Document</title>
<style>
#container {
-webkit-perspective: 300px;
-moz-perspective: 300px;
}
...
3
votes
2answers
305 views
Perspective Transformation
I am given the X, Y, Z locations of 4 corners in a rectangle, and their X, Y locations on a picture. I would like to use these locations to find the camera's angle with the rectangle. For instance, if ...
1
vote
1answer
148 views
Applying perspective that is always relative to the screen
I want to ask a question about the perspective that is achieved through CATransform3D.
I know that if you have a view that is 320x480 and then apply this:
CATransform3D perspective = ...
3
votes
2answers
4k views
OpenCV Homography, Transform a point, what is this code doing?
I'm working with a homography calculated by OpenCV. I currently use this homography to transform points using the function below. This function performs the task I require however I have no clue how ...
0
votes
1answer
297 views
MonoTouch: Transform image perspective
I have this image...
I would like to transform it perspective like this via code...
Is that possible in MonoTouch?
2
votes
1answer
603 views
Position fixed within parent that has -webkit-perspective
I am implementing a 3D interface using jQuery Isotope and Infinite Scrolling. The Loading message for the infinite scrolling should be position: fixed. However, because its parent has a ...
2
votes
1answer
675 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 ...
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 ...
0
votes
2answers
261 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
185 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
...
0
votes
1answer
504 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: ...
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
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 ...
4
votes
3answers
3k views
Skewing an image using Perspective Transforms
I'm trying to perform a skew on an image, like one shown here
.
I have an array of pixels representing my image and am unsure of what to do with them.