You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for your excellent work and repo. Question for you -- how are you defining your spherical coordinate system? From the code below, it seems you have a reflection about the y axis, since u is not negated in get_uni_sphere_xyz() (image unwraps from left to right clockwise, but theta unwraps right to left counterclockwise).
A more traditional spherical coordinate system is the one below:
where:
I noted that you were using r = \rho cos(\phi), if \phi=v and \rho=1, which you call c = np.cos(v). But this doesn't match the traditional spherical coordinate system. Could you explain a bit more about your derivation? Thanks.
Hi, thanks for your excellent work and repo. Question for you -- how are you defining your spherical coordinate system? From the code below, it seems you have a reflection about the y axis, since u is not negated in
get_uni_sphere_xyz()
(image unwraps from left to right clockwise, but theta unwraps right to left counterclockwise).A more traditional spherical coordinate system is the one below:
where:
I noted that you were using
r = \rho cos(\phi)
, if \phi=v and \rho=1, which you callc = np.cos(v)
. But this doesn't match the traditional spherical coordinate system. Could you explain a bit more about your derivation? Thanks.https://github.com/sunset1995/HoHoNet/blob/master/vis_depth.py#L7
The text was updated successfully, but these errors were encountered: