|
2 | 2 |
|
3 | 3 | from .compression import PngCompression |
4 | 4 | from .cuda._torch_impl import accumulate |
5 | | -# from .cuda._torch_impl_2dgs import accumulate_2dgs |
| 5 | +from .cuda._torch_impl_2dgs import accumulate_2dgs |
6 | 6 | from .cuda._wrapper import ( |
7 | 7 | RollingShutterType, |
8 | 8 | fully_fused_projection, |
9 | | - # fully_fused_projection_2dgs, |
10 | | - # fully_fused_projection_with_ut, |
| 9 | + fully_fused_projection_2dgs, |
| 10 | + fully_fused_projection_with_ut, |
11 | 11 | isect_offset_encode, |
12 | 12 | isect_tiles, |
13 | 13 | proj, |
14 | 14 | quat_scale_to_covar_preci, |
15 | 15 | rasterize_to_indices_in_range, |
16 | | - # rasterize_to_indices_in_range_2dgs, |
| 16 | + rasterize_to_indices_in_range_2dgs, |
17 | 17 | rasterize_to_pixels, |
18 | | - # rasterize_to_pixels_2dgs, |
19 | | - # rasterize_to_pixels_eval3d, |
| 18 | + rasterize_to_pixels_2dgs, |
| 19 | + rasterize_to_pixels_eval3d, |
20 | 20 | spherical_harmonics, |
21 | 21 | world_to_cam, |
22 | 22 | ) |
23 | 23 | from .exporter import export_splats |
24 | 24 | from .optimizers import SelectiveAdam |
25 | 25 | from .rendering import ( |
26 | 26 | rasterization, |
27 | | - # rasterization_2dgs, |
28 | | - # rasterization_2dgs_inria_wrapper, |
29 | | - # rasterization_inria_wrapper, |
| 27 | + rasterization_2dgs, |
| 28 | + rasterization_2dgs_inria_wrapper, |
| 29 | + rasterization_inria_wrapper, |
30 | 30 | ) |
31 | 31 | from .strategy import DefaultStrategy, MCMCStrategy, Strategy |
32 | 32 | from .version import __version__ |
|
37 | 37 | "MCMCStrategy", |
38 | 38 | "Strategy", |
39 | 39 | "rasterization", |
40 | | - # "rasterization_2dgs", |
41 | | - # "rasterization_inria_wrapper", |
| 40 | + "rasterization_2dgs", |
| 41 | + "rasterization_inria_wrapper", |
42 | 42 | "spherical_harmonics", |
43 | 43 | "isect_offset_encode", |
44 | 44 | "isect_tiles", |
|
49 | 49 | "world_to_cam", |
50 | 50 | "accumulate", |
51 | 51 | "rasterize_to_indices_in_range", |
52 | | - # "fully_fused_projection_2dgs", |
53 | | - # "rasterize_to_pixels_2dgs", |
54 | | - # "rasterize_to_indices_in_range_2dgs", |
55 | | - # "accumulate_2dgs", |
56 | | - # "rasterization_2dgs_inria_wrapper", |
| 52 | + "fully_fused_projection_2dgs", |
| 53 | + "rasterize_to_pixels_2dgs", |
| 54 | + "rasterize_to_indices_in_range_2dgs", |
| 55 | + "accumulate_2dgs", |
| 56 | + "rasterization_2dgs_inria_wrapper", |
57 | 57 | "RollingShutterType", |
58 | | - # "fully_fused_projection_with_ut", |
59 | | - # "rasterize_to_pixels_eval3d", |
| 58 | + "fully_fused_projection_with_ut", |
| 59 | + "rasterize_to_pixels_eval3d", |
60 | 60 | "export_splats", |
61 | 61 | "__version__", |
62 | 62 | ] |
0 commit comments