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
When creating the AlphaGridMask here, the alpha grid that is passed is of shape (size_z, size_y, size_x) instead of (size_x, size_y, size_z) because of the transpose operation here. However, when the alphaMask is sampled to determine whether or not to query a sigma and color of a 3D point here, the coordinates passed are (x,y,z) and not (z,y,x). Wouldn't this cause an error? It will check the alpha of a different point.
The text was updated successfully, but these errors were encountered:
When creating the AlphaGridMask here, the alpha grid that is passed is of shape
(size_z, size_y, size_x)
instead of(size_x, size_y, size_z)
because of the transpose operation here. However, when the alphaMask is sampled to determine whether or not to query a sigma and color of a 3D point here, the coordinates passed are(x,y,z)
and not(z,y,x)
. Wouldn't this cause an error? It will check the alpha of a different point.The text was updated successfully, but these errors were encountered: