Closed shreyask3107 closed 2 years ago
Hi,
You can always subdivide further the icosahedron. One way is to find the barycentric coordinates for each face, and form new smaller faces by joining every vertex of a face with the barycentric center. This will create 3 smaller faces per initial face of the icosahedron ending up with a finer subdivision with 60 faces. If you want even more, you can subdivide further or I found that the Fibonacci sphere algorithm is a good way for defining a regular grid over a sphere.
As long as the function for creating more images returns the same kind of data as get_icosahedron_parameters
, there should not be any problem.
Hi @manurare , Thank You very much. I will try to implement this👍
I will keep this issue open for a couple of days if I face any issues in implementing Fibonacci Sphere algorithm.
Hi @manurare , even with the Fibonacci Sphere Algorithm, I shall only get the tangent points. How would you recommend me to generate the triangle tangent points? Than You.
Right, now you don't have a regular polygon anymore nor exact knowledge of where each vertex of the triangle falls. What I'd do is, in each tangent point sample a tangent image using gnomonic projection. You can control how big/small your tangent plane is using padding
or coord_gnom_xy_range
in gnomonic2pixel
function.
Hi @manurare, currently the model takes 20 images from the faces of an icosahedron. Could you recommend me ways in which I can increase the number of images (close to 100 or 200) and the code to do the same?
I am aware that project_icosahedron.py implements the required projections. More details will be super helpful. Thanks!