File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ def populate_modules(self):
118
118
self .config .render_step_size = ((self .scene_aabb [3 :] - self .scene_aabb [:3 ]) ** 2 ).sum ().sqrt ().item () / 1000
119
119
# Occupancy Grid.
120
120
self .occupancy_grid = nerfacc .OccGridEstimator (
121
- roi_aabb = self .scene_aabb ,
121
+ roi_aabb = self .scene_aabb * 2 ** - ( levels - 1 ) ,
122
122
resolution = self .config .grid_resolution ,
123
123
levels = self .config .grid_levels ,
124
124
)
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ def convert_video_to_images(
140
140
verbose: If True, logs the output of the command.
141
141
image_prefix: Prefix to use for the image filenames.
142
142
keep_image_dir: If True, don't delete the output directory if it already exists.
143
- random_seed: If set, the seed used to choose the frames t commit of the video
143
+ random_seed: If set, the seed used to choose the frames of the video
144
144
Returns:
145
145
A tuple containing summary of the conversion and the number of extracted frames.
146
146
"""
You can’t perform that action at this time.
0 commit comments