Tagged Questions
1
vote
1answer
83 views
Determining camera orientation (possibly using calibration images).
I need to generate a camera calibration pattern. Cameras are expected to be placed at an average height of 15 to 30 feet above ground pointing downwards at roughly 30 degrees. These cameras are ...
3
votes
1answer
360 views
Explanation of this image warping (bulge filter) algorithm
I've been researching image warping algorithms lately and haven't found many comprehensive references. That said, there are of course code snippets from GIMP, jhlabs.com, and imagemagick.org but none ...
0
votes
0answers
167 views
Distance between two objects in a picture
lets say I have a photo that has a picture on a wall and a book upright on the desk. now i know the size of both of these objects. I want to find the distance between two of them on the photo, I was ...
4
votes
0answers
166 views
Reprojecting/converting an orthographic image/grid into a cartesian grid
I'm trying to dewarp a fisheye image into a simple rectilinear image of a subset of the fisheye. As part of this, I'm trying to map the azimuth/altitude values into a point on the image.
The points ...
0
votes
0answers
54 views
How can I convert lines intersecting a plane into a focused image?
I am writing a particle transport code. I would like to be able to obtain an image of my geometry when transporting photons given the following information:
The photons are incident on a plane.
For ...
2
votes
1answer
189 views
Given a point and a set of triangles, what's would be a fast way to find which triangle the point belongs to?
I'm trying to do a piece-wise affine transform in Python.
I have one image with a set of points hand marked and another set of points where I wish to "move" my current points and the texture between.
...