Skip to content

Commit

Permalink
fix type annot (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
liruilong940607 authored Jan 17, 2024
1 parent 0c305ab commit 5020ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gsplat/project_gaussians.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ def project_gaussians(
clip_thresh (float): minimum z depth threshold.
Returns:
A tuple of {Tensor, Tensor, Tensor, Tensor, int, Tensor}:
A tuple of {Tensor, Tensor, Tensor, Tensor, Tensor, Tensor}:
- **xys** (Tensor): x,y locations of 2D gaussian projections.
- **depths** (Tensor): z depth of gaussians.
- **radii** (Tensor): radii of 2D gaussian projections.
- **conics** (Tensor): conic parameters for 2D gaussian.
- **num_tiles_hit** (int): number of tiles hit.
- **num_tiles_hit** (Tensor): number of tiles hit per gaussian.
- **cov3d** (Tensor): 3D covariances.
"""
return _ProjectGaussians.apply(
Expand Down

0 comments on commit 5020ed6

Please sign in to comment.