2
votes
2answers
130 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 ...
2
votes
1answer
319 views

Rotate UIView to give perspective

I want to change the perspective of a UIView that is in my Viewcontroller. I think that I have to transform this UIView layer, but I don't know how. I've tried the following code but it is not ...
0
votes
1answer
204 views

opencv rvec to spherical coordinates

I am using opencv solvePnP to get the rotation and translation vectors for an image. I am not sure how to use the rotation vector. I would like to convert the rotational vector to two angles, the ...
0
votes
1answer
240 views

The Projection Of The CALayer Rotation

A Layer, with frame {0,0,w,h}, backgroundColor red,anchorPoint at {0,0.5}, transform.m34 = -1.0/1800, and set the position at {0,0}, then rotate it with a angle along the y , ...
-1
votes
1answer
275 views

Augmented reality - Changing marker's screen coordinate according to phone rotation

I've managed to understand how to project 3d point to 2d screen. Now, I would like to ask some guidelines on how to integrate phone rotation according to accelerometar data to change marker's screen ...
2
votes
1answer
672 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
459 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. ...